SolarLader_Firmware/src/debug.h
Thomas Kolb 1b81f70df3 Initial commit
What already works:

- ADC-reading with DMA
- Display
- UART debugging
2016-07-28 02:14:03 +02:00

15 lines
237 B
C

#ifndef DEBUG_H
#define DEBUG_H
#include <stdint.h>
/*
* Internal initialization for the debugging module.
* This does NOT initialize the hardware!
*/
void debug_init( void );
void debug_send_string(char *str);
#endif // DEBUG_H