aem_adapter_dev.c 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391
  1. /**
  2. * @FileName : aem_adapter_dev.c
  3. * @Author : AEM Team
  4. * @CreateDate : 2024/04/01 17:57:10
  5. * @Description :
  6. **/
  7. #include <string.h>
  8. #include <property_manager.h>
  9. #ifndef CONFIG_SIMULATOR
  10. #include <acts_bluetooth/host_interface.h>
  11. #include <bt_manager_ble.h>
  12. #endif
  13. #include "aem_adapter_dev.h"
  14. #include "aem_adapter_motor.h"
  15. #include "aem_log.h"
  16. #include "power_manager.h"
  17. #include "aem_app_err_if.h"
  18. #include "device_info_cfg.h"
  19. #ifdef CONFIG_SIMULATOR
  20. #include <time.h>
  21. #include <windows.h>
  22. #endif
  23. #ifdef CONFIG_RTC_ACTS
  24. #include <drivers/rtc.h>
  25. #endif
  26. #ifndef CONFIG_SIMULATOR
  27. #include <drivers/power_supply.h>
  28. #include <drivers/hrtimer.h>
  29. #endif
  30. static uint8_t s_brightness_value = 0;
  31. static void aem_disp_set_brightness(uint8_t value)
  32. {
  33. #ifndef CONFIG_SIMULATOR
  34. extern int aem_lv_display_set_brightness(uint8_t brightness);
  35. aem_lv_display_set_brightness(value);
  36. AEM_LOG_I("%s %d", __func__, value);
  37. #endif
  38. s_brightness_value = value;
  39. }
  40. static uint8_t aem_disp_get_brightness(void)
  41. {
  42. return s_brightness_value;
  43. }
  44. static int get_ble_mac_addr(uint8_t *mac, uint8_t len)
  45. {
  46. int ret;
  47. #ifndef CONFIG_SIMULATOR
  48. bt_addr_le_t addr_le;
  49. if (len != 6)
  50. {
  51. return -EINVAL;
  52. }
  53. bt_manager_get_ble_mac(&addr_le);
  54. for (int i = 0; i < 6; i++)
  55. {
  56. mac[i] = addr_le.a.val[5 - i];
  57. }
  58. #endif
  59. return 0;
  60. }
  61. static int get_sn_str(uint8_t *sn, uint8_t len)
  62. {
  63. int ret;
  64. #ifndef CONFIG_SIMULATOR
  65. if (len != 16 || NULL == sn)
  66. {
  67. return -EINVAL;
  68. }
  69. sn = "123456789abcde";
  70. #endif
  71. return 0;
  72. }
  73. #define MAC_STR_LEN (12 + 1)
  74. static int get_bt_mac_addr(uint8_t *mac, uint8_t len)
  75. {
  76. int ret = 0;
  77. char mac_str[MAC_STR_LEN];
  78. #ifndef CONFIG_SIMULATOR
  79. if (len != 6)
  80. {
  81. return -EINVAL;
  82. }
  83. ret = property_get(CFG_BT_MAC, mac_str, (MAC_STR_LEN - 1));
  84. if (ret > 0)
  85. {
  86. hex2bin(mac_str, 12, mac, len);
  87. }
  88. #endif
  89. return ret;
  90. }
  91. #ifndef CONFIG_SIMULATOR
  92. extern float f_Power[2];
  93. #endif
  94. static uint8_t get_battery_percentage(void)
  95. {
  96. int percentage = 0;
  97. #ifndef CONFIG_SIMULATOR
  98. //取大的功率来显示,功率范围为0~60W,显示范围0~100%,按比例转换
  99. if (f_Power[0] >= f_Power[1])
  100. {
  101. percentage = (int)f_Power[0];
  102. }
  103. else
  104. {
  105. percentage = (int)f_Power[1];
  106. }
  107. if (percentage > 100)
  108. {
  109. percentage = 100;
  110. }
  111. if (percentage < 0)
  112. {
  113. percentage = 0;
  114. }
  115. #endif
  116. return percentage;
  117. }
  118. static uint16_t get_battery_vol(void)
  119. {
  120. uint16_t value = 0;
  121. int vol = 0;
  122. #ifndef CONFIG_SIMULATOR
  123. vol = power_manager_get_battery_vol();
  124. if (vol < 0)
  125. {
  126. value = 0;
  127. }
  128. else
  129. {
  130. value = vol / 1000;
  131. }
  132. #endif
  133. return value;
  134. }
  135. static uint8_t get_charge_status(void)
  136. {
  137. int status = 0;
  138. #ifndef CONFIG_SIMULATOR
  139. status = power_manager_get_dc5v_status();
  140. if (status < 0)
  141. {
  142. status = 0;
  143. }
  144. #endif
  145. return status;
  146. }
  147. static uint8_t cnt_1s = 0;
  148. #ifndef CONFIG_SIMULATOR
  149. static struct hrtimer g_wait_for_set_time;
  150. static void htimer_fun(struct hrtimer *ttimer, void *expiry_fn_arg)
  151. {
  152. if (cnt_1s > 0)
  153. {
  154. cnt_1s--;
  155. }
  156. }
  157. static void htimer_wait_for_set_time(unsigned int ms)
  158. {
  159. hrtimer_init(&g_wait_for_set_time, htimer_fun, NULL);
  160. hrtimer_start(&g_wait_for_set_time, 1000*ms, 1000*ms);
  161. }
  162. #endif
  163. extern uint8_t bySetHour;
  164. extern uint16_t wSetYear;
  165. extern uint8_t bySetTimeStep;
  166. extern uint8_t read_time_data[7];
  167. static uint8_t get_rtc_time(aem_time_t *time)
  168. {
  169. uint8_t ret = AEM_OK;
  170. if (time == NULL)
  171. {
  172. return AEM_ERR_INVALID_PARAM;
  173. }
  174. #ifdef CONFIG_RTC_ACTS
  175. struct rtc_time rtc_time;
  176. const struct device *rtc = device_get_binding(CONFIG_RTC_0_NAME);
  177. if (rtc)
  178. {
  179. //rtc_get_time(rtc, &rtc_time);
  180. //time->year = rtc_time.tm_year + 1900;
  181. //time->month = rtc_time.tm_mon + 1;
  182. //time->day = rtc_time.tm_mday;
  183. //time->wday = rtc_time.tm_wday;
  184. //time->hour = rtc_time.tm_hour;
  185. //time->min = rtc_time.tm_min;
  186. //time->second = rtc_time.tm_sec;
  187. //time->ms = rtc_time.tm_ms;
  188. #ifndef CONFIG_SIMULATOR
  189. if (bySetTimeStep == 1)
  190. {
  191. cnt_1s = 255;
  192. //k_msleep(3000); //延时1.5s跳转画面,保证时间或日期能够更新
  193. bySetTimeStep = 2;
  194. }
  195. else if (bySetTimeStep == 3)
  196. {
  197. if (cnt_1s == 255)
  198. {
  199. cnt_1s = 2;
  200. //k_msleep(2000); //延时1.5s跳转画面,保证时间或日期能够更新
  201. if (hrtimer_is_running(&g_wait_for_set_time))
  202. {
  203. hrtimer_restart(&g_wait_for_set_time);
  204. }
  205. else
  206. htimer_wait_for_set_time(750);
  207. }
  208. if (cnt_1s == 0)
  209. {
  210. hrtimer_stop(&g_wait_for_set_time);
  211. if (bySetTimeStep == 3) //防止bySetTimeStep在其他地方被修改
  212. bySetTimeStep = 0;
  213. }
  214. }
  215. #endif
  216. if (bySetTimeStep == 0)
  217. {
  218. time->year = read_time_data[6] + 2000;
  219. time->month = read_time_data[5];
  220. time->wday = read_time_data[4];
  221. time->day = read_time_data[3];
  222. time->hour = read_time_data[2];
  223. time->min = read_time_data[1];
  224. time->second = read_time_data[0];
  225. }
  226. }
  227. #elif defined(CONFIG_SIMULATOR)
  228. SYSTEMTIME lt;
  229. GetLocalTime(&lt);
  230. time->year = lt.wYear;
  231. time->month = lt.wMonth;
  232. time->day = lt.wDay;
  233. time->wday = lt.wDayOfWeek;
  234. time->hour = lt.wHour;
  235. time->min = lt.wMinute;
  236. time->second = lt.wSecond;
  237. time->ms = lt.wMilliseconds;
  238. #endif /* CONFIG_RTC_ACTS */
  239. return ret;
  240. }
  241. static int set_rtc_time(aem_time_t *time)
  242. {
  243. int ret = 0;
  244. if (time == NULL)
  245. {
  246. return AEM_ERR_INVALID_PARAM;
  247. }
  248. #ifdef CONFIG_RTC_ACTS
  249. struct rtc_time rtc_time;
  250. const struct device *rtc = device_get_binding(CONFIG_RTC_0_NAME);
  251. if (rtc)
  252. {
  253. rtc_time.tm_year = time->year;
  254. rtc_time.tm_mon = time->month;
  255. rtc_time.tm_mday = time->day;
  256. rtc_time.tm_wday = time->wday;
  257. rtc_time.tm_hour = time->hour;
  258. rtc_time.tm_min = time->min;
  259. rtc_time.tm_sec = time->second;
  260. rtc_time.tm_ms = time->ms;
  261. rtc_time.tm_year -= 1900;
  262. rtc_time.tm_mon -= 1;
  263. ret = rtc_set_time(rtc, &rtc_time);
  264. if (ret)
  265. {
  266. AEM_LOG_E("set time error ret=%d", ret);
  267. }
  268. }
  269. #endif /* CONFIG_RTC_ACTS */
  270. return ret;
  271. }
  272. aem_dev_info_t get_device_info(void)
  273. {
  274. aem_dev_info_t info = { 0 };
  275. //info.device_id = DEVICE_ID;
  276. sprintf(info.device_id, "%s", DEVICE_ID);
  277. info.major_v = MAJOR_VERSION;
  278. info.minor_v = MINOR_VERSION;
  279. info.micro_v = MICRO_VERSION;
  280. sprintf(info.device_name, "%s", DEVICE_NAME);
  281. return info;
  282. }
  283. static aem_bat_charge_upate_evt_api_t s_bat_charge_upate_evt_cb = NULL;
  284. uint8_t aem_bat_charge_upate_evt_cb_register(aem_bat_charge_upate_evt_api_t cb)
  285. {
  286. s_bat_charge_upate_evt_cb = cb;
  287. return 0;
  288. }
  289. void aem_adapter_dev_update_bat_charge_event(uint16_t cmd)
  290. {
  291. AEM_LOG_I("update_bat_charge_event %d \r\n", cmd);
  292. #ifndef CONFIG_SIMULATOR
  293. switch (cmd)
  294. {
  295. case BAT_CHG_EVENT_CHARGE_START:
  296. case BAT_CHG_EVENT_CHARGE_STOP:
  297. case BAT_CHG_EVENT_CHARGE_FULL:
  298. case BAT_CHG_EVENT_VOLTAGE_CHANGE:
  299. if (s_bat_charge_upate_evt_cb != NULL)
  300. {
  301. s_bat_charge_upate_evt_cb(cmd);
  302. }
  303. break;
  304. default:
  305. break;
  306. }
  307. #endif // !CONFIG_SIMULATOR
  308. }
  309. static bool check_bat_is_lowpower(void)
  310. {
  311. #ifndef CONFIG_SIMULATOR
  312. return power_manager_check_bat_is_lowpower();
  313. #else
  314. return 0;
  315. #endif // !CONFIG_SIMULATOR
  316. }
  317. static const aem_device_ops_t s_device_ops = {
  318. .disp_set_brightness = aem_disp_set_brightness,
  319. .disp_get_brightness = aem_disp_get_brightness,
  320. .get_bt_mac_addr = get_ble_mac_addr,
  321. .get_ble_mac_addr = get_ble_mac_addr,
  322. .get_sn_str = get_sn_str,
  323. .get_battery_percentage = get_battery_percentage,
  324. .get_battery_vol = get_battery_vol,
  325. .get_charge_status = get_charge_status,
  326. .get_rtc_time = get_rtc_time,
  327. .set_rtc_time = set_rtc_time,
  328. #ifndef CONFIG_SIMULATOR
  329. .motor_get_level = aem_dev_motor_get_level,
  330. .motor_set_level = aem_dev_motor_set_level,
  331. .motor_start = aem_dev_motor_start,
  332. .motor_stop = aem_dev_motor_stop,
  333. .motor_control = aem_dev_motor_control,
  334. .motor_set_freq = aem_dev_motor_set_freq,
  335. #endif
  336. .get_device_info = get_device_info,
  337. .check_bat_is_lowpower = check_bat_is_lowpower,
  338. };
  339. const aem_device_ops_t *aem_get_device_ops(void)
  340. {
  341. #ifndef CONFIG_SIMULATOR
  342. aem_motor_ctx_init();
  343. #endif
  344. return &s_device_ops;
  345. }