decls.h 705 B

12345678910111213141516171819202122232425262728293031323334
  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 "util.h"
  16. #include "stm32f10x_regs.h"
  17. #include "stm32f10x.h"
  18. #include "intrinsics.h"
  19. #include "time.h"
  20. #include "cancellation.h"
  21. #include "timer.h"
  22. /*
  23. * Local variables:
  24. * mode: C
  25. * c-file-style: "Linux"
  26. * c-basic-offset: 4
  27. * tab-width: 4
  28. * indent-tabs-mode: nil
  29. * End:
  30. */