main.h 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. #ifndef __main_h__
  2. #define __main_h__
  3. /**************************** 系统头文件 ********************************/
  4. #include <stdbool.h>
  5. #include <stdint.h>
  6. #include <string.h>
  7. #include "sdk_common.h"
  8. #include "nrf.h"
  9. #include "nrf_esb.h"
  10. #include "nrf_error.h"
  11. #include "nrf_esb_error_codes.h"
  12. #include "nrf_delay.h"
  13. #include "nrf_gpio.h"
  14. #include "boards.h"
  15. #include "nrf_delay.h"
  16. #include "nrf_drv_timer.h"
  17. #include "app_util.h"
  18. #include "twi_master.h"
  19. #include "nrf_log.h"
  20. #include "nrf_log_ctrl.h"
  21. #include "nrf_log_default_backends.h"
  22. #include "nrf_drv_saadc.h"
  23. #include "nrf_temp.h"
  24. /**************************** 自定义头文件 ********************************/
  25. #include "bsp_interface.h"
  26. #include "bsp_protocol.h"
  27. #include "bsp_esb.h"
  28. #include "bsp_uart.h"
  29. #include "bsp_gpio.h"
  30. #include "bsp_time.h"
  31. #include "mpu9250.h"
  32. #include "MSE5611.h"
  33. #include "nrf_pwr_mgmt.h"
  34. #include "nrf_drv_clock.h"
  35. #include "app_timer.h"
  36. #include "User_low_power.h"
  37. #include "User_Battery.h"
  38. #include "User_Wdt.h"
  39. #include "User_task.h"
  40. #include "User_temperature.h"
  41. #include "User_flash.h"
  42. #ifdef USR_CONFIG
  43. #include "usr_config.h"
  44. #endif
  45. /**************************** 全局变量 ************************************/
  46. #endif