work on Qt GUI, still not working properly

This commit is contained in:
Jeff Wang
2019-04-04 00:33:42 -04:00
parent 8f39958679
commit fc6d8efc5f
17 changed files with 328 additions and 33 deletions

View File

@ -9,6 +9,10 @@
#include <stdint.h>
#ifdef __cplusplus
extern "C" {
#endif
void _delay_ms(uint8_t ms);
#define ACCURATE_DELAY_US
@ -44,5 +48,10 @@ char* u32str(uint32_t x, char* buf, uint8_t base);
#define TURN_OFF() P3_2 = 0
#endif
#ifdef __cplusplus
}
#endif
#endif /* SRC_UTILS_H_ */