人生境界:明智、中庸、诚信、谦逊
发布时间:2013-09-27 13:12:48
在第一部分中,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).........【阅读全文】
发布时间:2013-09-27 13:12:43
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.........【阅读全文】
发布时间:2013-09-27 13:12:40
本文的RTC使用I2C接口操作pcf8563,这里针对pcf8563对Linux的RTC框架进行分析。 Linux常见的驱动在driver目录下都有一个文件夹,进入kernel主目录下的drivers/rtc,发现下面包含了许多芯片的RTC驱动,我们这里是以pcf8563.........【阅读全文】
发布时间:2013-09-27 13:12:24
一、数据成员 termios 函数族提供了一个常规的终端接口,用于控制非同步通信端口。 这个结 &nb.........【阅读全文】
发布时间:2013-09-27 13:12:19
串口操作需要的头文件#include #include #include #include #include #include #include #include 1.打开串口 在前面已经提到linux下的.........【阅读全文】