summaryrefslogtreecommitdiff
path: root/src/debug.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/debug.h')
-rw-r--r--src/debug.h9
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