This commit is contained in:
2026-08-31 23:12:28 -04:00
parent 2152b8f727
commit 089be9564b
13 changed files with 147 additions and 39 deletions
+2
View File
@@ -8,6 +8,7 @@
#include "defines.h"
#include <avr/io.h>
#include <avr/pgmspace.h>
#include <stdbool.h>
#include <stdint.h>
#include <stdio.h>
@@ -26,6 +27,7 @@ extern "C" {
void uart_init(void);
void uart_sendChar(char c);
void uart_sendString(const char* str);
void uart_sendString_P(const char* progmem_str); // For strings kept in flash (PSTR)
void uart_sendStringArray(unsigned char str[], uint8_t len);
void uart_print_uint16(uint16_t meas, const char* buf);
void uart_print_hex(unsigned char vin, const char* buf);