Subversion Repositories Projects

Rev

Go to most recent revision | Blame | Last modification | View Log | RSS feed

#ifndef _TOOLS_H_
#define _TOOLS_H_

#include <avr/io.h>

//char *my_itoa(int32_t value, uint8_t sign, uint8_t len, uint8_t fixedPoint, uint8_t afterPoint);
char *my_itoa(int32_t value, uint8_t len, uint8_t fixedPoint, uint8_t afterPoint);
int32_t floatStrToInt(const char *s, int32_t power1);

void delay_ms100x(uint8_t delay);

void Displ_TimeMS(int32_t time);
void Displ_TimeHMS(uint32_t time);

#endif