decls.h 1015 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /*
  2. * decls.h
  3. *
  4. * Pull in all other header files in an orderly fashion. Source files include
  5. * only this header, and only once.
  6. *
  7. * Written & released by Keir Fraser <keir.xen@gmail.com>
  8. *
  9. * This is free and unencumbered software released into the public domain.
  10. * See the file COPYING for more details, or visit <http://unlicense.org>.
  11. */
  12. #include <stdint.h>
  13. #include <stdarg.h>
  14. #include <stddef.h>
  15. #include <limits.h>
  16. #include "util.h"
  17. #include "mcu/stm32/common_regs.h"
  18. #include "mcu/stm32/common.h"
  19. #if MCU == STM32F1
  20. #include "mcu/stm32/f1_regs.h"
  21. #include "mcu/stm32/f1.h"
  22. #elif MCU == STM32F7
  23. #include "mcu/stm32/f7_regs.h"
  24. #include "mcu/stm32/f7.h"
  25. #elif MCU == AT32F4
  26. #include "mcu/at32/f4_regs.h"
  27. #include "mcu/at32/f4.h"
  28. #endif
  29. #include "intrinsics.h"
  30. #include "board.h"
  31. #include "time.h"
  32. #include "timer.h"
  33. #include "usb.h"
  34. #include "cdc_acm_protocol.h"
  35. /*
  36. * Local variables:
  37. * mode: C
  38. * c-file-style: "Linux"
  39. * c-basic-offset: 4
  40. * tab-width: 4
  41. * indent-tabs-mode: nil
  42. * End:
  43. */