initial commit

This commit is contained in:
Attila Body 2019-11-20 21:22:42 +01:00
commit 9f225a2c9d
113 changed files with 116214 additions and 0 deletions

24
application/globals.h Normal file
View file

@ -0,0 +1,24 @@
/*
* globals.h
*
* Created on: Aug 29, 2019
* Author: abody
*/
#ifndef GLOBALS_H_
#define GLOBALS_H_
#include <f4ll_c/crcscheduler.h>
#include <f4ll_c/dmahelper.h>
#include <f4ll_c/packetusart.h>
#include <inttypes.h>
#include "config.h"
extern struct usartstatus_t g_uartStatuses[USARTCOUNT];
extern struct crcstatus_t g_crcStatus;
extern DMAINFO g_ConsoleTxDmaInfo;
extern uint8_t g_statsBuf[256];
#endif /* GLOBALS_H_ */