aem_adapter_dev.c 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319
  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. #endif
  29. static uint8_t s_brightness_value = 0;
  30. static void aem_disp_set_brightness(uint8_t value)
  31. {
  32. #ifndef CONFIG_SIMULATOR
  33. extern int aem_lv_display_set_brightness(uint8_t brightness);
  34. aem_lv_display_set_brightness(value);
  35. AEM_LOG_I("%s %d", __func__, value);
  36. #endif
  37. s_brightness_value = value;
  38. }
  39. static uint8_t aem_disp_get_brightness(void)
  40. {
  41. return s_brightness_value;
  42. }
  43. static int get_ble_mac_addr(uint8_t *mac, uint8_t len)
  44. {
  45. int ret;
  46. #ifndef CONFIG_SIMULATOR
  47. bt_addr_le_t addr_le;
  48. if (len != 6)
  49. {
  50. return -EINVAL;
  51. }
  52. bt_manager_get_ble_mac(&addr_le);
  53. for (int i = 0; i < 6; i++)
  54. {
  55. mac[i] = addr_le.a.val[5 - i];
  56. }
  57. #endif
  58. return 0;
  59. }
  60. static int get_sn_str(uint8_t *sn, uint8_t len)
  61. {
  62. int ret;
  63. #ifndef CONFIG_SIMULATOR
  64. if (len != 16 || NULL == sn)
  65. {
  66. return -EINVAL;
  67. }
  68. sn = "123456789abcde";
  69. #endif
  70. return 0;
  71. }
  72. #define MAC_STR_LEN (12 + 1)
  73. static int get_bt_mac_addr(uint8_t *mac, uint8_t len)
  74. {
  75. int ret = 0;
  76. char mac_str[MAC_STR_LEN];
  77. #ifndef CONFIG_SIMULATOR
  78. if (len != 6)
  79. {
  80. return -EINVAL;
  81. }
  82. ret = property_get(CFG_BT_MAC, mac_str, (MAC_STR_LEN - 1));
  83. if (ret > 0)
  84. {
  85. hex2bin(mac_str, 12, mac, len);
  86. }
  87. #endif
  88. return ret;
  89. }
  90. static uint8_t get_battery_percentage(void)
  91. {
  92. int percentage = 0;
  93. #ifndef CONFIG_SIMULATOR
  94. percentage = power_manager_get_battery_capacity();
  95. if (percentage < 0)
  96. {
  97. percentage = 0;
  98. }
  99. #endif
  100. return percentage;
  101. }
  102. static uint16_t get_battery_vol(void)
  103. {
  104. uint16_t value = 0;
  105. int vol = 0;
  106. #ifndef CONFIG_SIMULATOR
  107. vol = power_manager_get_battery_vol();
  108. if (vol < 0)
  109. {
  110. value = 0;
  111. }
  112. else
  113. {
  114. value = vol / 1000;
  115. }
  116. #endif
  117. return value;
  118. }
  119. static uint8_t get_charge_status(void)
  120. {
  121. int status = 0;
  122. #ifndef CONFIG_SIMULATOR
  123. status = power_manager_get_dc5v_status();
  124. if (status < 0)
  125. {
  126. status = 0;
  127. }
  128. #endif
  129. return status;
  130. }
  131. extern uint8_t read_time_data[7];
  132. static uint8_t get_rtc_time(aem_time_t *time)
  133. {
  134. uint8_t ret = AEM_OK;
  135. if (time == NULL)
  136. {
  137. return AEM_ERR_INVALID_PARAM;
  138. }
  139. #ifdef CONFIG_RTC_ACTS
  140. struct rtc_time rtc_time;
  141. const struct device *rtc = device_get_binding(CONFIG_RTC_0_NAME);
  142. if (rtc)
  143. {
  144. //rtc_get_time(rtc, &rtc_time);
  145. //time->year = rtc_time.tm_year + 1900;
  146. //time->month = rtc_time.tm_mon + 1;
  147. //time->day = rtc_time.tm_mday;
  148. //time->wday = rtc_time.tm_wday;
  149. //time->hour = rtc_time.tm_hour;
  150. //time->min = rtc_time.tm_min;
  151. //time->second = rtc_time.tm_sec;
  152. //time->ms = rtc_time.tm_ms;
  153. time->year = read_time_data[6] + 2000;
  154. time->month = read_time_data[5];
  155. time->wday = read_time_data[4];
  156. time->day = read_time_data[3];
  157. time->hour = read_time_data[2];
  158. time->min = read_time_data[1];
  159. time->second = read_time_data[0];
  160. }
  161. #elif defined(CONFIG_SIMULATOR)
  162. SYSTEMTIME lt;
  163. GetLocalTime(&lt);
  164. time->year = lt.wYear;
  165. time->month = lt.wMonth;
  166. time->day = lt.wDay;
  167. time->wday = lt.wDayOfWeek;
  168. time->hour = lt.wHour;
  169. time->min = lt.wMinute;
  170. time->second = lt.wSecond;
  171. time->ms = lt.wMilliseconds;
  172. #endif /* CONFIG_RTC_ACTS */
  173. return ret;
  174. }
  175. static int set_rtc_time(aem_time_t *time)
  176. {
  177. int ret = 0;
  178. if (time == NULL)
  179. {
  180. return AEM_ERR_INVALID_PARAM;
  181. }
  182. #ifdef CONFIG_RTC_ACTS
  183. struct rtc_time rtc_time;
  184. const struct device *rtc = device_get_binding(CONFIG_RTC_0_NAME);
  185. if (rtc)
  186. {
  187. rtc_time.tm_year = time->year;
  188. rtc_time.tm_mon = time->month;
  189. rtc_time.tm_mday = time->day;
  190. rtc_time.tm_wday = time->wday;
  191. rtc_time.tm_hour = time->hour;
  192. rtc_time.tm_min = time->min;
  193. rtc_time.tm_sec = time->second;
  194. rtc_time.tm_ms = time->ms;
  195. rtc_time.tm_year -= 1900;
  196. rtc_time.tm_mon -= 1;
  197. ret = rtc_set_time(rtc, &rtc_time);
  198. if (ret)
  199. {
  200. AEM_LOG_E("set time error ret=%d", ret);
  201. }
  202. }
  203. #endif /* CONFIG_RTC_ACTS */
  204. return ret;
  205. }
  206. static aem_dev_info_t get_device_info(void)
  207. {
  208. aem_dev_info_t info = { 0 };
  209. info.device_id = DEVICE_ID;
  210. info.major_v = MAJOR_VERSION;
  211. info.minor_v = MINOR_VERSION;
  212. info.micro_v = MICRO_VERSION;
  213. sprintf(info.device_name, "%s", DEVICE_NAME);
  214. return info;
  215. }
  216. static aem_bat_charge_upate_evt_api_t s_bat_charge_upate_evt_cb = NULL;
  217. uint8_t aem_bat_charge_upate_evt_cb_register(aem_bat_charge_upate_evt_api_t cb)
  218. {
  219. s_bat_charge_upate_evt_cb = cb;
  220. return 0;
  221. }
  222. void aem_adapter_dev_update_bat_charge_event(uint16_t cmd)
  223. {
  224. AEM_LOG_I("update_bat_charge_event %d \r\n", cmd);
  225. #ifndef CONFIG_SIMULATOR
  226. switch (cmd)
  227. {
  228. case BAT_CHG_EVENT_CHARGE_START:
  229. case BAT_CHG_EVENT_CHARGE_STOP:
  230. case BAT_CHG_EVENT_CHARGE_FULL:
  231. case BAT_CHG_EVENT_VOLTAGE_CHANGE:
  232. if (s_bat_charge_upate_evt_cb != NULL)
  233. {
  234. s_bat_charge_upate_evt_cb(cmd);
  235. }
  236. break;
  237. default:
  238. break;
  239. }
  240. #endif // !CONFIG_SIMULATOR
  241. }
  242. static bool check_bat_is_lowpower(void)
  243. {
  244. #ifndef CONFIG_SIMULATOR
  245. return power_manager_check_bat_is_lowpower();
  246. #else
  247. return 0;
  248. #endif // !CONFIG_SIMULATOR
  249. }
  250. static const aem_device_ops_t s_device_ops = {
  251. .disp_set_brightness = aem_disp_set_brightness,
  252. .disp_get_brightness = aem_disp_get_brightness,
  253. .get_bt_mac_addr = get_ble_mac_addr,
  254. .get_ble_mac_addr = get_ble_mac_addr,
  255. .get_sn_str = get_sn_str,
  256. .get_battery_percentage = get_battery_percentage,
  257. .get_battery_vol = get_battery_vol,
  258. .get_charge_status = get_charge_status,
  259. .get_rtc_time = get_rtc_time,
  260. .set_rtc_time = set_rtc_time,
  261. #ifndef CONFIG_SIMULATOR
  262. .motor_get_level = aem_dev_motor_get_level,
  263. .motor_set_level = aem_dev_motor_set_level,
  264. .motor_start = aem_dev_motor_start,
  265. .motor_stop = aem_dev_motor_stop,
  266. .motor_control = aem_dev_motor_control,
  267. .motor_set_freq = aem_dev_motor_set_freq,
  268. #endif
  269. .get_device_info = get_device_info,
  270. .check_bat_is_lowpower = check_bat_is_lowpower,
  271. };
  272. const aem_device_ops_t *aem_get_device_ops(void)
  273. {
  274. #ifndef CONFIG_SIMULATOR
  275. aem_motor_ctx_init();
  276. #endif
  277. return &s_device_ops;
  278. }