initial stc rpn calculator project

This commit is contained in:
Jeff Wang
2019-03-20 00:34:51 -04:00
commit f4f70853c1
10 changed files with 1314 additions and 0 deletions

21
src/utils.h Normal file
View File

@ -0,0 +1,21 @@
/*
* utils.h
*
* Created on: Mar 10, 2019
*/
#ifndef SRC_UTILS_H_
#define SRC_UTILS_H_
#include <stdint.h>
void _delay_ms(uint8_t ms);
//TODO
#define _delay_us(x) _delay_ms(1)
char* u32str(uint32_t x, char* buf, uint8_t base);
#endif /* SRC_UTILS_H_ */