diff options
author | Christian Cunningham <cc@localhost> | 2022-03-24 09:38:08 -0700 |
---|---|---|
committer | Christian Cunningham <cc@localhost> | 2022-03-24 09:38:08 -0700 |
commit | 93bf62580a68533dc8252b9a2a055c02f34ecb67 (patch) | |
tree | 1b1ca92ebbe107a998136a1442c0dba5be885e13 /include | |
parent | 3e64dda5d5c350cc325650133f7e64967f1efe84 (diff) |
Modularized
Diffstat (limited to 'include')
-rw-r--r-- | include/usr/main.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/usr/main.h b/include/usr/main.h index 9d0b76b..5fd29f9 100644 --- a/include/usr/main.h +++ b/include/usr/main.h @@ -1,6 +1,12 @@ #ifndef USR_MAIN_H #define USR_MAIN_H +#ifdef RPI_BUILD + #define USR_TIME 40 +#else + #define USR_TIME 2000 +#endif + void main(void); #endif |