b15f/firmware/global_vars.h

19 lines
328 B
C
Raw Normal View History

2019-03-26 07:44:30 +00:00
#ifndef GLOBAL_VARS_H
#define GLOBAL_VARS_H
2019-03-25 15:15:00 +00:00
#include "mcp23s17.h"
#include "tlc5615.h"
#include "adu.h"
2019-03-26 10:35:41 +00:00
#include "usart.h"
2019-03-25 15:15:00 +00:00
extern SPI spi;
extern MCP23S17 beba0;
extern MCP23S17 beba1;
extern MCP23S17 sw;
extern TLC5615 dac0;
extern TLC5615 dac1;
extern ADU adu;
2019-03-26 10:35:41 +00:00
extern USART usart;
2019-03-25 15:15:00 +00:00
2019-03-26 07:44:30 +00:00
#endif // GLOBAL_VARS_H