Embedded Linux Driver Development

时间:2016-04-12 16:10:26
【文件属性】:

文件名称:Embedded Linux Driver Development

文件大小:1.56MB

文件格式:PDF

更新时间:2016-04-12 16:10:26

嵌入式 Linux 驱动开发

嵌入式Linux驱动开发,英文版,极好的slides。例子精简,条理分明,对于Linux驱动开发者十分受用。 Headers specific to the Linux kernel: No access to the usual C library, we're doing kernel programming An initialization function Called when the module is loaded, returns an error code (0 on success, negative value on failure) Declared by the module_init() macro: the name of the function doesn't matter, even though modulename_init() is a convention. A cleanup function Called when the module is unloaded Declared by the module_exit() macro. Metadata informations declared using MODULE_LICENSE(), MODULE_DESCRIPTION() and MODULE_AUTHOR()


网友评论

  • 个人认为对理解driver开发比较有用。