initial stc rpn calculator project
This commit is contained in:
21
src/utils.h
Normal file
21
src/utils.h
Normal 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_ */
|
||||
|
Reference in New Issue
Block a user