usr.c 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. #include "usr.h"
  2. #include "system.h"
  3. #include "bsp_time.h"
  4. #include "nrf_delay.h"
  5. //Add your code here...
  6. #include "twi_master.h"
  7. #include "hal_ble_client.h"
  8. #include "hal_ble_host.h"
  9. #include "hal_mt.h"
  10. #include "hal_battery.h"
  11. #include "hal_led.h"
  12. #include "app_overturn.h"
  13. #include "app_charge.h"
  14. #include "app_power.h"
  15. #include "app_client.h"
  16. #include "app_host.h"
  17. #include "app_game.h"
  18. #include "app_config.h"
  19. #include "app_ota.h"
  20. #include "app_connect_manage.h"
  21. #include "app_organ.h"
  22. #include "ble_comm.h"
  23. #include "ble_gap.h"
  24. #include "exception.h"
  25. #include "bsp_pwm.h"
  26. #include "bsp_wdt.h"
  27. #include "bsp_adc.h"
  28. #include "tool.h"
  29. #include "app_ImuCalibration.h"
  30. #include "hal_wearshoes.h"
  31. #include "app_math.h"
  32. #include "app_losspack.h"
  33. #include "app_pair_chargerpin.h"
  34. #include "app_switchimu.h"
  35. #include "app_self_checking.h"
  36. #include "exception.h"
  37. #include "tool.h"
  38. #include "app_data_transfer.h"
  39. #include "hal_scan_manage.h"
  40. #include "app_safe.h"
  41. #include "bll_imu.h"
  42. #include "app_flash.h"
  43. #include "app_step.h"
  44. #include "hal_qma.h"
  45. #include "app_detectIsHost.h"
  46. #include "hal_charge.h"
  47. #include "MahonyAHRS.h"
  48. __weak void usr1_Init(void)
  49. {
  50. slave_init(BLE_Client_Push);
  51. host_init(BLE_Host_Push);
  52. }
  53. void PRE_Init(void)
  54. {
  55. usr1_Init();
  56. TIME_Init();
  57. ADC_Initialize();
  58. Flash_Initialize();//应该做成类似于文件系统的内核组成部分,而不是应用层,待定。
  59. Exception_Init();
  60. }
  61. void USR_Init(void)
  62. {
  63. //Add your code here...
  64. PWR_Init();
  65. LED_Init();
  66. MT_Init();
  67. hal_battery_init();
  68. BLE_Client_Initialize();
  69. BLE_Host_Initialize();
  70. hal_wearshoes_Init();
  71. hal_ble_scan_Init();
  72. hal_qma_Init();
  73. hal_charge_init();
  74. bll_imu_Init();
  75. //APP
  76. app_detect_Init();
  77. app_client_Initialize();
  78. app_host_Initialize();
  79. app_overturn_Init();
  80. app_charge_Init();
  81. app_step_Init();
  82. app_game_Init();
  83. app_math_Init();
  84. app_ota_Init();
  85. app_connect_manage_Init();
  86. app_switchimu_Init();
  87. app_data_transfer_Init();
  88. app_safe_Init();
  89. #if LOSSPACK_ENANBLE
  90. app_losspack_Init();
  91. #endif
  92. #if !BleNameHoldOn_ENANBLE
  93. app_pair_chargerpin_Init();
  94. #endif
  95. watchdog_init();
  96. feed_watchdog();
  97. }