GEX port to STM32F072. This is currently the main port.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
gex-f072/GexUnits/units_manifest.h

57 lines
986 B

// This is a GEX units manifest file
// For a unit to be included in the firmware, its uppercase name
// must be included in the GEX_UNITS list in build.mk, and it must have
// an entry here.
#ifdef ENABLE_UNIT_1WIRE
#include "1wire/unit_1wire.h"
#endif
#ifdef ENABLE_UNIT_ADC
#include "adc/unit_adc.h"
#endif
#ifdef ENABLE_UNIT_DAC
#include "dac/unit_dac.h"
#endif
#ifdef ENABLE_UNIT_DIN
#include "din/unit_din.h"
#endif
#ifdef ENABLE_UNIT_DOUT
#include "dout/unit_dout.h"
#endif
#ifdef ENABLE_UNIT_FCAP
#include "fcap/unit_fcap.h"
#endif
#ifdef ENABLE_UNIT_I2C
#include "i2c/unit_i2c.h"
#endif
#ifdef ENABLE_UNIT_NEOPIXEL
#include "neopixel/unit_neopixel.h"
#endif
#ifdef ENABLE_UNIT_PWMDIM
#include "pwmdim/unit_pwmdim.h"
#endif
#ifdef ENABLE_UNIT_SIPO
#include "sipo/unit_sipo.h"
#endif
#ifdef ENABLE_UNIT_SPI
#include "spi/unit_spi.h"
#endif
#ifdef ENABLE_UNIT_TOUCH
#include "touch/unit_touch.h"
#endif
#ifdef ENABLE_UNIT_USART
#include "usart/unit_usart.h"
#endif