Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
每个 Atmel UC3 显然都有一个唯一的序列号。有谁知道我如何在软件中检索它?
http://www.avrfreaks.net/index.php?name=PNphpBB2&file=viewtopic&p=922774&sid=8ce72b4a3a0697eaafed1ec7413c3bd3#922774
更好的是:我写信给 Atmel 技术支持(我一开始就应该这样做?)并得到以下回复:
对于 UC3A,序列号由位于地址 0x80800204-0x80800212 的 120 位数据定义。对于每个芯片,序列号都是唯一的。
这是一个例子:
volatile unsigned int* id_data = 0x80800204; unsigned int ID_get[4]; for(int i=0;i<4;i++) ID_get[i] = *id_data++;