NXP_examples/debugTools.h
2021-07-01 14:34:34 +02:00

19 lines
288 B
C

/*
* debugTools.h
*
* Created on: 12. 10. 2020
* Author: Adcis
*/
#ifndef DEBUGTOOLS_H_
#define DEBUGTOOLS_H_
#include "chip.h"
void DebugInit(LPC_USART_T *pUART);
void dbg_nl();
void dbg(unsigned long n);
void dbg_ASCII(uint8_t *arr, int size);
#endif /* DEBUGTOOLS_H_ */