24 lines
404 B
C
24 lines
404 B
C
/*
|
|
* globals.h
|
|
*
|
|
* Created on: Aug 29, 2019
|
|
* Author: abody
|
|
*/
|
|
|
|
#ifndef GLOBALS_H_
|
|
#define GLOBALS_H_
|
|
|
|
#include <inttypes.h>
|
|
#include "config.h"
|
|
#include "usart_handler.h"
|
|
#include "dma_helper.h"
|
|
#include "crc_handler.h"
|
|
|
|
extern USARTSTATUS g_uartStatuses[USARTCOUNT];
|
|
|
|
extern CRCSTATUS g_crcStatus;
|
|
|
|
extern DMAINFO g_ConsoleTxDmaInfo;
|
|
extern uint8_t g_statsBuf[256];
|
|
|
|
#endif /* GLOBALS_H_ */
|