Code compiles

This commit is contained in:
Attila Body 2019-09-29 17:51:32 +02:00
parent 7a74273ca7
commit 2aa08f20a0
118 changed files with 119250 additions and 34 deletions

26
app/globals.h Normal file
View file

@ -0,0 +1,26 @@
/*
* 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 uint32_t g_tickCount;
extern UARTSTATUS g_uartStatuses[UARTCOUNT];
extern struct crcstatus_t g_crcStatus;
extern DMAINFO g_ConsoleTxDmaInfo;
extern uint8_t g_statsBuf[128];
#endif /* GLOBALS_H_ */