Initial commit

This commit is contained in:
jaseg 2020-10-12 20:15:41 +02:00
commit e16ec19e3a
51 changed files with 4909 additions and 0 deletions

19
include/fe_global.h Normal file
View file

@ -0,0 +1,19 @@
#ifndef __FE_GLOBAL_H__
#define __FE_GLOBAL_H__
#include <stdint.h>
#include <stdbool.h>
#include <assert.h>
#include <sys/types.h>
#include <stm32f302x8.h>
#define UNUSED(x) ((void) x)
#define ARRAY_LENGTH(x) (sizeof(x) / sizeof(x[0]))
#define unused_a __attribute__((unused))
extern uint64_t sys_time_millis;
void __libc_init_array(void);
#endif /* __FE_GLOBAL_H__ */