Remove uniqueSerialNumber debug log to reduce footprint (#134)

This commit is contained in:
etrinh
2021-04-17 11:12:19 +02:00
committed by GitHub
parent 14162fb1a4
commit a4e74ebae5
4 changed files with 4 additions and 20 deletions

View File

@@ -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()