Updated to Rev 04b

This commit is contained in:
adrcs 2025-02-10 13:04:21 -07:00 committed by GitHub
parent 3b7d1e5993
commit b144634601
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 4 additions and 0 deletions

View file

@ -57,5 +57,6 @@ void USART_Print_string(char *format, ...);
void LPUART_RxBuffer_reset(void);
size_t gpsbuffer_bytesInBuffer(void);
DATA_ELEMENT gpsbuffer_get(UART_TIMEOUT_T timeout);
void LPUART_Send_String(char *str, uint16_t len);
#endif /* INC_USART_H_ */

View file

@ -29,6 +29,9 @@ int ascii2Dec(char *dec);
// and its double counterpart...
double ascii2double(char *val);
// hex to ascii
void hex2ascii(uint8_t hex, char *buf);
// check an entry for floating point
BOOL isfloat(char *val);