#include<stdint.h>#include"oddebug.h"#include"sendchar.h"#if DEBUG_LEVEL > 0/* from oddebug.c */int8_tsendchar(uint8_tc){while(!(ODDBG_USR&(1<<ODDBG_UDRE)));/* wait for data register empty */ODDBG_UDR=c;return1;}#elseint8_tsendchar(uint8_tc){return1;}#endif