decls.h 779 B

12345678910111213141516171819202122232425262728293031323334353637
  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 "stm32/common_regs.h"
  18. #include "stm32/f1_regs.h"
  19. #include "stm32/common.h"
  20. #include "intrinsics.h"
  21. #include "time.h"
  22. #include "timer.h"
  23. #include "usb.h"
  24. #include "cdc_acm_protocol.h"
  25. /*
  26. * Local variables:
  27. * mode: C
  28. * c-file-style: "Linux"
  29. * c-basic-offset: 4
  30. * tab-width: 4
  31. * indent-tabs-mode: nil
  32. * End:
  33. */