main.c 237 B

123456789101112131415
  1. #if defined STM32F1
  2. # include <stm32f1xx.h>
  3. #elif defined STM32F2
  4. # include <stm32f2xx.h>
  5. #elif defined STM32F4
  6. # include <stm32f4xx.h>
  7. #elif defined STM32G0
  8. # include <stm32g0xx.h>
  9. #endif
  10. int main(void)
  11. {
  12. for (;;);
  13. return 0;
  14. }