Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
1687 | - | 1 | #ifndef _TOOLS_H_ |
2 | #define _TOOLS_H_ |
||
3 | |||
4 | #include <avr/io.h> |
||
5 | |||
6 | //char *my_itoa(int32_t value, uint8_t sign, uint8_t len, uint8_t fixedPoint, uint8_t afterPoint); |
||
7 | char *my_itoa(int32_t value, uint8_t len, uint8_t fixedPoint, uint8_t afterPoint); |
||
8 | int32_t floatStrToInt(const char *s, int32_t power1); |
||
9 | |||
10 | void delay_ms100x(uint8_t delay); |
||
11 | |||
12 | void Displ_TimeMS(int32_t time); |
||
13 | void Displ_TimeHMS(uint32_t time); |
||
14 | |||
15 | #endif |