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.
 
 

17 lines
241 B

#ifndef INC_DEFINES_H_
#define INC_DEFINES_H_
#define ENABLE_FX25
//guess hardware based on the selected MCU
#if defined(STM32F103xB) || defined(STM32F103x8)
#define BLUE_PILL 1
#elif defined(STM32F302xC)
#define AIOC 1
#endif
#endif