Initial commit
This commit is contained in:
commit
e16ec19e3a
51 changed files with 4909 additions and 0 deletions
19
include/fe_global.h
Normal file
19
include/fe_global.h
Normal 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__ */
|
||||
Loading…
Add table
Add a link
Reference in a new issue