summaryrefslogtreecommitdiff
path: root/prototype/fw/include/global.h
blob: 138cbc995748db3746462839ab8e583f7ab20ea6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef __GLOBAL_H__
#define __GLOBAL_H__

#include <stdbool.h>
#include <stdint.h>
#include <assert.h>
#include <string.h>

/* The IRQ header must be included before stm32_device.h since ST defines a bunch of messy macros there. */
#include <generated/stm32_irqs.h> /* Header generated from stm32***_startup.s in Makefile */

#include <generated/stm32_device.h>

#endif /* __GLOBAL_H__ */