fork download
  1. #define STM32F10X_LD
  2.  
  3. #include <stm32f10x.h>
  4.  
  5. int i = 0;
  6. int off = 5;
  7.  
  8. void inc(void)
  9. {
  10. i += off;
  11. }
  12.  
  13. int main(void)
  14. {
  15. while (1) inc();
  16. }
  17.  
  18.  
  19.  
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.c:3:23: fatal error: stm32f10x.h: No such file or directory
 #include <stm32f10x.h>
                       ^
compilation terminated.
stdout
Standard output is empty