1
0
Fork 0
mirror of https://github.com/opentx/opentx.git synced 2025-07-23 00:05:17 +03:00

Compilation fix

This commit is contained in:
Bertrand Songis 2016-03-19 18:20:48 +01:00
parent 0a7d0119fe
commit defef14018

View file

@ -42,7 +42,7 @@ void watchdogInit(unsigned int duration)
void getCPUUniqueID(char * s)
{
#if defined(SIMU)
uint32_t cpu_uid[3] = { 0x12345678, 0xAA55AA55AA, 0x87654321};
uint32_t cpu_uid[3] = { 0x12345678, 0x55AA55AA, 0x87654321};
#else
uint32_t * cpu_uid = (uint32_t *)0x1FFF7A10;
#endif