青春无悔
发布时间:2014-11-10 16:38:32
1.[Error li1021] The following symbols referenced in processor 'p0' could not be resolved: 'RespAlgoInit [_RespAlgoInit]' referenced from '.\Debug\RESPAlgorithm.doj' 'RespAlgoRun [_RespAlgoRun]' referenced .........【阅读全文】
发布时间:2014-11-10 16:37:52
系统配置:include/bf518f-ezbrd.h启动顺序如下:cpu/blackfin/initcode.c (first if booting from LDR, second otherwise)cpu/blackfin/start.S cpu/blackfin/cpu.c lib_blackfin/board.c.........【阅读全文】
发布时间:2014-11-10 16:11:00
本文的RTC使用I2C接口操作pcf8563,这里针对pcf8563对Linux的RTC框架进行分析。 Linux常见的驱动在driver目录下都有一个文件夹,进入kernel主目录下的drivers/rtc,发现下面包含了许多芯片的RTC驱动,我们这里是以pcf8563.........【阅读全文】
发布时间:2014-11-10 16:10:55
rtc-sysfs.c这个部分主要是有关sysfs的操作。在rtc_device_register函数中,rtc_sysfs_add_device(rtc);完成sys的操作。 void rtc_sysfs_add_device(struct rtc_device *rtc){ int err; /* not all RTCs support both alarms an.........【阅读全文】
发布时间:2014-11-10 16:10:51
在第一部分中,rtc_device_register函数调用了rtc-dev.c中的rtc_dev_prepare。 void rtc_dev_prepare(struct rtc_device *rtc) { if (!rtc_devt) return; if (rtc->id >= RTC_DEV_MAX).........【阅读全文】