BLDC control on ATAVRMC303 with ATxMega128A1
ascii.h
Go to the documentation of this file.
1 
11 #ifndef _ASCII_H_
12 #define _ASCII_H_
13 
14 //_____ I N C L U D E S ___________________________________________________
15 
16 //#include "config.h"
17 #include "lib_mcu/uart/uart_lib.h"
18 #include <stdio.h>
19 
20 
21 
22 U8 ascii_to_bin (U8 c);
23 U8 bin_to_ascii (U8 c);
24 
25 
26 #endif
U8 bin_to_ascii(U8 c)
This function returns the ascii value of a quartet.
Definition: ascii.c:47
U8 ascii_to_bin(U8 c)
This function returns the binary value of an ascii digit.
Definition: ascii.c:32