main.c 191 B

12345678910111213
  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. #endif
  8. int main(void)
  9. {
  10. for (;;);
  11. return 0;
  12. }