diff options
author | Brett Weiland <brett_weiland@bpcsapce.com> | 2022-09-27 16:14:28 -0500 |
---|---|---|
committer | Brett Weiland <brett_weiland@bpcsapce.com> | 2022-09-27 16:14:28 -0500 |
commit | 94304b11e7220f060dbc345de5fa1952d0465016 (patch) | |
tree | f16e84c54b27f67e089ded1175fbf8b561896b42 /src/debug.h | |
parent | 7b006d6f2032ac46074d693ae59a971bee327ace (diff) |
working on serial syncronization for programming eeprom
Diffstat (limited to 'src/debug.h')
-rw-r--r-- | src/debug.h | 9 |
1 files changed, 9 insertions, 0 deletions
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 <stdio.h> #include <avr/io.h> #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 |