cleaned up function definitions for serial and print modules and added a comment about the deeply flawed printFloat method
This commit is contained in:
parent
5eea9f4c7c
commit
9488cb329c
3 changed files with 12 additions and 3 deletions
8
serial.h
8
serial.h
|
|
@ -24,8 +24,10 @@
|
|||
#ifndef serial_h
|
||||
#define serial_h
|
||||
|
||||
void serial_init(long);
|
||||
void serial_write(uint8_t);
|
||||
uint8_t serial_read(void);
|
||||
void serial_init(long baud);
|
||||
|
||||
void serial_write(uint8_t data);
|
||||
|
||||
uint8_t serial_read();
|
||||
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue