eddiewwm 发表于 2020-2-27 12:16:55

LGT8F328P GUID 提取

LGT8F328P 的 GUID 分為 GUID0,GUID1,GUID2,GUID3 ,分別放在 $F3,$F4,$F5,$F6。以下是提取程式範例:
void setup() {
// put your setup code here, to run once:
Serial.begin(9600);
uint32_t guid = (uint32_t)&GUID0;
uint32_t *p;
p = guid;
Serial.println(*p, HEX);
}

void loop() {
// put your main code here, to run repeatedly:

}
页: [1]
查看完整版本: LGT8F328P GUID 提取