SDK: simplelink_lowpower_f3_sdk_7_20_00_29
System ID in app_dev_info.c->DevInfo_start, as the code, it's consists with BLE address, set middle bytes with 0xFFFE value.
memcpy( &systemId[0], &devAddr[0], 3 ); // use 6 bytes of device address for 8 bytes of system ID value
memset( &systemId[3], 0xFFFE, 2 ); // set middle bytes to 0xFFFE
memcpy( &systemId[5], &devAddr[3], 3 ); // shift three bytes up
But both systemId[3] and systemId[4] equal 0xFE, not equal to value in 0xFFFE.
That's not make sense, can you explain details about this?