stc_rpncalc/src/utils.h

22 lines
266 B
C
Raw Normal View History

2019-03-20 05:34:51 +01:00
/*
* 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_ */