19 lines
288 B
C
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_ */
|