Add UDID support.

This commit is contained in:
Jonathan Naylor 2020-11-09 10:23:57 +00:00
parent 81518bf74c
commit 99d2a0d822
6 changed files with 74 additions and 4 deletions

View file

@ -275,4 +275,15 @@ void CIO::delayInt(unsigned int dly)
delay(dly);
}
uint8_t CIO::getCPU() const
{
return 1U;
}
void CIO::getUDID(uint8_t* buffer)
{
::memcpy(buffer, (void *)0x4058, 16U);
}
#endif