boot.h 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. #ifndef __BOOT_H
  2. #define __BOOT_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. #ifdef __BOOT_H_GLOBAL
  7. #define __BOOT_H_EXTERN
  8. #else
  9. #define __BOOT_H_EXTERN extern
  10. #endif
  11. /************************************************************************************************
  12. * Version *
  13. ************************************************************************************************/
  14. /************************************************************************************************
  15. * How to use *
  16. ************************************************************************************************/
  17. /************************************************************************************************
  18. * Enable config *
  19. ************************************************************************************************/
  20. /************************************************************************************************
  21. * Includes *
  22. ************************************************************************************************/
  23. #include <stdint.h>
  24. /************************************************************************************************
  25. * Defines *
  26. ************************************************************************************************/
  27. /************************************************************************************************
  28. * Typedefs *
  29. ************************************************************************************************/
  30. typedef enum
  31. {
  32. INVALID = 0,
  33. VALID = !INVALID
  34. } validity_status;
  35. typedef void (*pFunction)(void);
  36. /************************************************************************************************
  37. * Interfaces *
  38. ************************************************************************************************/
  39. void run_app(void);
  40. uint8_t check_addr_sp(uint32_t addr);
  41. uint8_t check_addr_pc(uint32_t addr);
  42. #ifdef __cplusplus
  43. };
  44. #endif
  45. #endif // __BOOT_H