Replace byte/word typedefs with uintN_t

This commit is contained in:
Allen Hill
2023-08-20 20:45:22 -04:00
parent c4f67378ae
commit 4fcdf4af36
7 changed files with 277 additions and 281 deletions
+7 -7
View File
@@ -29,17 +29,17 @@
#include "GlobalDef.h"
extern byte RS232_RxCharBuffer[25], RS232_RxCharBegin, RS232_RxCharEnd;
extern byte readkey;
extern uint8_t RS232_RxCharBuffer[25], RS232_RxCharBegin, RS232_RxCharEnd;
extern uint8_t readkey;
void RS232_Init(void);
extern void RS232_Print_P(const char *str_addr);
extern void RS232_SendByte(byte Data);
extern void RS232_SendByte(uint8_t Data);
extern void RS232_Print(const char *pBuf);
extern void RS232_PrintHex4(byte Data);
extern void RS232_PrintHex8(byte Data);
extern void RS232_PrintDec(byte Data);
extern void RS232_PrintDec2(byte Data);
extern void RS232_PrintHex4(uint8_t Data);
extern void RS232_PrintHex8(uint8_t Data);
extern void RS232_PrintDec(uint8_t Data);
extern void RS232_PrintDec2(uint8_t Data);
extern char *itoa(int i, char b[]);
#endif // __COM232_H