decls.h 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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 "thread.h"
  32. #include "time.h"
  33. #include "timer.h"
  34. #include "usb.h"
  35. #include "cdc_acm_protocol.h"
  36. /*
  37. * Local variables:
  38. * mode: C
  39. * c-file-style: "Linux"
  40. * c-basic-offset: 4
  41. * tab-width: 4
  42. * indent-tabs-mode: nil
  43. * End:
  44. */