mirror of
https://github.com/thelsing/knx.git
synced 2026-03-13 02:22:13 +01:00
Remove uniqueSerialNumber debug log to reduce footprint (#134)
This commit is contained in:
@@ -22,11 +22,7 @@ Stm32Platform::~Stm32Platform()
|
||||
|
||||
uint32_t Stm32Platform::uniqueSerialNumber()
|
||||
{
|
||||
uint32_t uniqueId = HAL_GetUIDw0() ^ HAL_GetUIDw1() ^ HAL_GetUIDw2();
|
||||
|
||||
printf("uniqueSerialNumber: %0X", uniqueId);
|
||||
|
||||
return uniqueId;
|
||||
return HAL_GetUIDw0() ^ HAL_GetUIDw1() ^ HAL_GetUIDw2();
|
||||
}
|
||||
|
||||
void Stm32Platform::restart()
|
||||
|
||||
Reference in New Issue
Block a user