发布时间:2014-08-27 15:17:27
一,Qt中显示程序启动画面的方法#include <QApplication>#include <QSplashScreen>#include <QDateTime>#include "mainwindow.h"int main(int argc, char *argv[]){ QApplication app(argc, argv); QSplashScreen *splash = new QSplashScreen; splash->setPixmap(Q.........【阅读全文】
发布时间:2014-07-10 16:28:11
一,写驱动函数的步骤1 写出led_open(),led_read()驱动函数。2 怎么把驱动函数告诉内核 a:定义一个file_operations结构,将驱动函数填充进去。 b:把这个结构告诉内核,通过函数register_chrdev(major,"led_drv",&led_drv_fops);函数参数为主设备号,设备名,file_operations结构。在一个内核.........【阅读全文】