initial commit
This commit is contained in:
commit
600ed241d2
123 changed files with 120036 additions and 0 deletions
24
app/globals.h
Normal file
24
app/globals.h
Normal file
|
@ -0,0 +1,24 @@
|
|||
/*
|
||||
* 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 UARTSTATUS g_uartStatuses[UARTCOUNT];
|
||||
|
||||
extern struct crcstatus_t g_crcStatus;
|
||||
|
||||
extern DMAINFO g_ConsoleTxDmaInfo;
|
||||
extern uint8_t g_statsBuf[128];
|
||||
|
||||
#endif /* GLOBALS_H_ */
|
Loading…
Add table
Add a link
Reference in a new issue