From 94304b11e7220f060dbc345de5fa1952d0465016 Mon Sep 17 00:00:00 2001 From: Brett Weiland Date: Tue, 27 Sep 2022 16:14:28 -0500 Subject: working on serial syncronization for programming eeprom --- src/debug.h | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'src/debug.h') diff --git a/src/debug.h b/src/debug.h index 095e87f..fe8e968 100644 --- a/src/debug.h +++ b/src/debug.h @@ -4,11 +4,20 @@ #include #include #include "uart.h" +#include "pins.h" void timer_init(); void test_timer(); +void scroll_test(); +void screen_lowlvl_testdraw(); +void uart_echo(); +void test_clock(); +void eeprom_testbyte(); unsigned int ticks_to_seconds(); +#define DEBUG_LED_ON() LED_DEBUG_PORT |= _BV(LED_DEBUG) +#define DEBUG_LED_OFF() LED_DEBUG_PORT &= ~(_BV(LED_DEBUG)) + #endif -- cgit v1.2.3