diff options
author | Alex Maestas <git@se30.xyz> | 2023-12-17 22:40:04 +0000 |
---|---|---|
committer | Alex Maestas <git@se30.xyz> | 2023-12-17 22:40:04 +0000 |
commit | 93d7f38d6797f3a145b87964f4c6aa522b513037 (patch) | |
tree | 4a2695b01d0ede3ebd5d67edb35e99688d1a0ad1 /watch-library/simulator | |
parent | 68f38652273bd6356e35dfcec0949f6783009dcf (diff) | |
download | Sensor-Watch-93d7f38d6797f3a145b87964f4c6aa522b513037.tar.gz Sensor-Watch-93d7f38d6797f3a145b87964f4c6aa522b513037.tar.bz2 Sensor-Watch-93d7f38d6797f3a145b87964f4c6aa522b513037.zip |
fix simulator build by declaring Trng type as a void pointer
Diffstat (limited to 'watch-library/simulator')
-rw-r--r-- | watch-library/simulator/watch/watch_private.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/watch-library/simulator/watch/watch_private.c b/watch-library/simulator/watch/watch_private.c index 3425341a..509a30b9 100644 --- a/watch-library/simulator/watch/watch_private.c +++ b/watch-library/simulator/watch/watch_private.c @@ -57,6 +57,8 @@ void _watch_disable_tcc(void) {} void _watch_enable_usb(void) {} +void watch_disable_TRNG(Trng* hw) {} + // this function ends up getting called by printf to log stuff to the USB console. int _write(int file, char *ptr, int len) { // TODO: (a2) hook to UI |