空白
发布时间:2017-02-23 16:54:42
STVD编译stm8s工程报如下错误:Running Linkerclnk -l"C:\Program Files (x86)\COSMIC\CXSTM8\Lib" -o Debug\stm8s_sx1276.sm8 -mDebug\stm8s_sx1276.map Debug\stm8s_sx1276.lkf#error clnk Debug\stm8s_sx1276.lkf:1 segment .ubsct size overflow (313) The command: "clnk -l"C:\Program File.........【阅读全文】
发布时间:2017-02-23 16:51:48
编译stm8s程序过程报如下错误:Compiling stm8s_stdperiph_driver\src\stm8s_adc2.c...cxstm8 +mods0 +debug -pxp -no -pp -l -istm8s_stdperiph_driver\inc -i"C:\Program Files (x86)\COSMIC\CXSTM8\Hstm8" -i"C:\Program Files (x86)\STMicroelectronics\st_toolset\include" -clDebug\ -coDebug\ stm8s_st.........【阅读全文】
发布时间:2015-12-01 09:52:57
linux内核:linux-2.6.30.4编译驱动提示如下错误:error: implicit declaration of function 'class_create'error: implicit declaration of function 'class_device_create'error: implicit declaration of function 'class_device_unregister'error: implicit declaration of function 'class_destroy'原因:clas.........【阅读全文】
发布时间:2015-07-14 10:27:34
(2015-07-14)<br />1. 了解操作系统基本概念。如果不会,可以学习《操作系统:设计与实现》Andrew S.Tanenbaum 写的那本。以MINIX为例子讲解操作系统的概念。非常推荐。<br />2. 有了操作系统的基本概念以后,可以了解Linux的机制了。推荐《Linux内核设计与实现》Robert Love 写的。这本书从概念上讲解了Linux有什.........【阅读全文】
发布时间:2014-12-31 16:22:14
int 转换为 short:http://stackoverflow.com/questions/18276225/convert-int-to-short-in-cuint32_t sum=0xFFFF1234;uint16_t *p= (uint16_t *) ∑uint16_t checksum=p[0]; check-sum is 0x1234.Here is another way:union ToShort{ uint32_t sum; uint16_t checksum[2];} toS.........【阅读全文】
发布时间:2014-12-17 11:07:24
原文地址:http://www.xuebuyuan.com/2038843.html图中括号中的数字代表的是当前域所占的空间大小,单位是bit位。黄色的是数据链路层的头部,一共14字节绿色的部分是IP头部,一般是20字节紫色部分是TCP头部,一般是20字节最内部的是数据包内容黄色部分:链路层目的MAC:当前step目的主机的mac.........【阅读全文】