PDO:过程数据对象(Process Data Object),过程数据的发送,实时、速度快,提供对设备应用对象的直接访问通道,它用来传输实时短帧数据,具有较高的优先权。PDO 传输的数据必须少于或等于…
debug时候,经常需要查找函数地址,在gdb中可以用 "info address function_name"
(gdb) info address test
Symbol "test" is a function at address 0x9e250
有时候,也会有知道函数地址,反找函数名的需求&am…
报错信息: 首先,要区分与undefined reference to xxxxx和 "xxxx was not declared in this scope"两种报错信息的差别,前者是因为编译器能找到函数的声明,但是找不到函数的定义,从而报错;而后者是…