cleaned up serial completing support for non blocking tx and refactoring formatting functions into a new module 'print'
This commit is contained in:
parent
8793b555e0
commit
c0b4b8309a
13 changed files with 109 additions and 118 deletions
14
print.h
Normal file
14
print.h
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
#ifndef print_h
|
||||
#define print_h
|
||||
|
||||
void printNewline(void);
|
||||
void printString(const char *s);
|
||||
void printPgmString(const char *s);
|
||||
void printInteger(long n);
|
||||
void printHex(unsigned long n);
|
||||
void printOctal(unsigned long n);
|
||||
void printBinary(unsigned long n);
|
||||
void printIntegerInBase(unsigned long n, unsigned long base);
|
||||
void printFloat(double n);
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue