lcmComm_dgus.h 10.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295
  1. /*
  2. * lcmComm_dwin.h
  3. *
  4. * Created on : 2020-10-20
  5. * Update on : 2021-02-20
  6. * Author : Folus Wen, Eason Yang
  7. * Version : D0.01
  8. *
  9. */
  10. #ifndef LCMCOMM_DGUS_H_
  11. #define LCMCOMM_DGUS_H_
  12. #include <sys/time.h>
  13. #include <sys/timeb.h>
  14. #include <sys/types.h>
  15. #include <sys/stat.h>
  16. #include <sys/types.h>
  17. #include <sys/ioctl.h>
  18. #include <sys/socket.h>
  19. #include <sys/ipc.h>
  20. #include <sys/shm.h>
  21. #include <sys/shm.h>
  22. #include <sys/mman.h>
  23. #include <linux/wireless.h>
  24. #include <arpa/inet.h>
  25. #include <netinet/in.h>
  26. #include <unistd.h>
  27. #include <stdarg.h>
  28. #include <stdio.h>
  29. #include <stdlib.h>
  30. #include <unistd.h>
  31. #include <fcntl.h>
  32. #include <termios.h>
  33. #include <errno.h>
  34. #include <errno.h>
  35. #include <string.h>
  36. #include <time.h>
  37. #include <ctype.h>
  38. #include <ifaddrs.h>
  39. #define DEBUG_INFO(format, args...) StoreLogMsg("[%s:%d][%s][Info] "format, (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__), __LINE__, __FUNCTION__, ##args)
  40. #define DEBUG_WARN(format, args...) StoreLogMsg("[%s:%d][%s][Warn] "format, (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__), __LINE__, __FUNCTION__, ##args)
  41. #define DEBUG_ERROR(format, args...) StoreLogMsg("[%s:%d][%s][Error] "format, (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__), __LINE__, __FUNCTION__, ##args)
  42. #define ARRAY_SIZE(A) (sizeof(A) / sizeof(A[0]))
  43. #define PASS 1
  44. #define FAIL -1
  45. #define YES 1
  46. #define NO 0
  47. #define ON 1
  48. #define OFF 0
  49. #define PAGE_DISPLAY_PERIOD 3
  50. //=======================================
  51. // Register Control type
  52. //=======================================
  53. #define REG_TYPE_CONTROL 0x00
  54. #define REG_TYPE_RAM 0x01
  55. #define REG_TYPE_SPECIAL_CONTROL 0x02
  56. //=======================================
  57. // Register content (Variable storage)
  58. //=======================================
  59. #define REG_ADDRESS_READ_VERSION 0x0F
  60. #define REG_ADDRESS_READ_RTC 0x10
  61. #define REG_ADDRESS_READ_PAGE_ID 0x14
  62. #define REG_ADDRESS_READ_BRIGHTNESS 0x31
  63. #define REG_ADDRESS_WRITE_BRIGHTNESS 0X82
  64. #define REG_ADDRESS_SET_PAGE_ID 0x84
  65. #define REG_ADDRESS_SET_RTC 0x9C
  66. //=======================================
  67. // LCD command constant
  68. //=======================================
  69. #define CMD_HEADER_1 0x5A
  70. #define CMD_HEADER_2 0xA5
  71. #define CMD_REG_WRITE 0x80
  72. #define CMD_REG_READ 0x81
  73. #define CMD_REG_WRITE_DATA 0x82
  74. #define CMD_REG_READ_DATA 0x83
  75. //=======================================
  76. // LCD system screen
  77. //=======================================
  78. #define SYSTEM_SCREEN_BOOTING 0x00
  79. #define SYSTEM_SCREEN_IDLE 0x01
  80. #define SYSTEM_SCREEN_PREPARING 0x02
  81. #define SYSTEM_SCREEN_PREPARE_FOR_EVSE 0x03
  82. #define SYSTEM_SCREEN_CHARGING 0x04
  83. #define SYSTEM_SCREEN_COMPLETE 0x05
  84. #define SYSTEM_SCREEN_MAINTAIN 0x06
  85. #define SYSTEM_SCREEN_AUTH_PASS 0x07
  86. #define SYSTEM_SCREEN_AUTH_FAIL 0x08
  87. #define SYSTEM_SCREEN_AUTH_UNKNOW 0x09
  88. #define SYSTEM_SCREEN_TERMINATING 0X0A
  89. #define SYSTEM_SCREEN_EMERGENCY 0x0B
  90. //=======================================
  91. // Parameter to change icon status
  92. //=======================================
  93. #define DISAPPEAR 0x00
  94. #define APPEAR 0x01
  95. #define BACKEND_OFFLINE 0x01
  96. #define BACKEND_ONLINE 0x02
  97. #define ETHERENT_OFFLINE 0x03
  98. #define EHTERNET_ONLINE 0x04
  99. #define WIFI_OFFLINE 0x05
  100. #define WIFI_ONLINE 0x06
  101. #define TELECOM_OFFLINE 0x07
  102. #define TELECOM_ONLINE 0x08
  103. #define RFID_DISABLE 0x01
  104. #define RFID_ENABLE 0x02
  105. #define VISA_DISABLE 0x03
  106. #define VISA_ENABLE 0x04
  107. #define PLUGIN_ARROW_1 0x01
  108. #define PLUGIN_ARROW_2 0x02
  109. #define BATTERY_MAP 0x01
  110. #define BATTERY_CAPACITY_EMPTY 0x02
  111. #define BATTERY_CAPACITY_20 0x03
  112. #define BATTERY_CAPACITY_40 0x04
  113. #define BATTERY_CAPACITY_60 0x05
  114. #define BATTERY_CAPACITY_80 0x06
  115. #define BATTERY_CAPACITY_100 0x07
  116. #define CONNECTION_QUESTION_MARK_1 0x01
  117. #define CONNECTION_QUESTION_MARK_2 0x02
  118. #define CONNECTION_ELECTRIC_MARK_1 0x03
  119. #define CONNECTION_ELECTRIC_MARK_2 0x04
  120. #define TIMER_DARK 0x01
  121. #define TIMER_LIGHT 0x02
  122. #define POWER_DARK 0x01
  123. #define POWER_LIGHT 0x02
  124. #define ENERGY_DARK 0x01
  125. #define ENERGY_LIGHT 0x02
  126. #define ELECTRICITY_DIRECTION_RIGHT 0x01
  127. #define ELECTRICITY_DIRECTION_LEFT 0x02
  128. #define BATTERY_SOC_EMPTY 0x01
  129. #define BATTERY_SOC_20 0x02
  130. #define BATTERY_SOC_40 0x03
  131. #define BATTERY_SOC_60 0x04
  132. #define BATTERY_SOC_80 0x05
  133. #define BATTERY_SOC_100 0x06
  134. #define CONNECTION_COMPLETE_MARK 0x01
  135. #define QRCODE_DISABLE 0x01
  136. #define QRCODE_ENABLE 0x02
  137. #define QRCODE_BANDED 0x03
  138. //=======================================
  139. // Icon variable address start from 1000
  140. //=======================================
  141. #define ICON_ALARM_1 0x1000
  142. #define ICON_ALARM_2 0x1001
  143. #define ICON_ALARM_3 0x1002
  144. #define ICON_ALARM_4 0x1003
  145. #define ICON_4G_CONNECTION 0x1004
  146. #define ICON_WIFI_CONNECTION 0x1005
  147. #define ICON_ETHERENT_CONNECTION 0x1006
  148. #define ICON_BACKEND_CONNECTION 0x1007
  149. #define ICON_PRICE 0x1008
  150. #define ICON_RFID 0x1009
  151. #define ICON_QRCODE 0x100A
  152. #define ICON_PLUGIN_ARROW 0x100B
  153. #define ICON_BATTERY_PRECHARGING 0x100C
  154. #define ICON_CONNECTION_PRECHARGING 0x100D
  155. #define ICON_TIMER_PRECHARGING 0x100E
  156. #define ICON_POWER_PRECHARGING 0x100F
  157. #define ICON_ENERGY_PRECHARGING 0x1010
  158. #define ICON_BATTERY_CHARGING 0x1011
  159. #define ICON_CONNECTION_CHARGING 0x1012
  160. #define ICON_ELECTRICITY_DIRECTION 0x1013
  161. #define ICON_TIMER_CHARGING 0x1014
  162. #define ICON_POWER_CHARGING 0x1015
  163. #define ICON_ENERGY_CHARGING 0x1016
  164. #define ICON_WALLER_COMPLETE 0x1017
  165. #define ICON_BATTERY_COMPLETE 0x1018
  166. #define ICON_CONNECTION_COMPLETE 0x1019
  167. #define ICON_TIMER_COMPLETE 0x101A
  168. #define ICON_COST_COMPLETE 0X101B
  169. #define ICON_ENERGY_COMPLETE 0X101C
  170. #define ICON_BALANCE_WALLET 0x101D
  171. #define ICON_LOGO 0x1500
  172. #define ICON_LOGO_CHARGING 0x1501
  173. //=======================================
  174. // Text content address start from 2000
  175. //=======================================
  176. #define TEXT_ALARM_CODE_1 0x2000 // size 6
  177. #define TEXT_ALARM_CODE_2 0x2006 // size 6
  178. #define TEXT_ALARM_CODE_3 0x200C // size 6
  179. #define TEXT_ALARM_CODE_4 0x2012 // size 6
  180. #define TEXT_PRICE 0x2018 // size 16
  181. #define TEXT_CURRENCY_UNIT 0x2028 // size 16
  182. #define TEXT_TIMER_PRECHARGING 0x2038 // size 16
  183. #define TEXT_POWER_PRECHARGING 0x2048 // size 16
  184. #define TEXT_ENERGY_PRECHARGING 0x2058 // size 16
  185. #define TEXT_TIMER_CHARGING 0x2068 // size 16
  186. #define TEXT_POWER_CHARGING 0x2078 // size 16
  187. #define TEXT_ENERGY_CHARGING 0x2088 // size 16
  188. #define TEXT_COST_COMPLETE 0x2098 // size 16
  189. #define TEXT_ACCOUNT_COMPLETE 0x20A8 // size 16
  190. #define TEXT_BALANCE 0x20B8 // size 16
  191. #define TEXT_PERCENTAGE 0x20C8 // size 6
  192. #define TEXT_CURRENCY_COMPLETE 0x20CE // size 16
  193. #define TEXT_RTC 0X2500 // size 32
  194. //=======================================
  195. // QR Code content address start from 5000
  196. //=======================================
  197. #define TEXT_QRCODE_CONTENT 0x3000
  198. //=======================================
  199. // 4G + WIFI connection flags (Header)
  200. //=======================================
  201. #define DISABLE_4G 0x00
  202. #define ENABLE_4G 0x01
  203. #define DISABLE_WIFI 0x00
  204. #define WIFI_STATION 0x01
  205. #define WIFI_ACCESS_POINT 0x02
  206. //=======================================
  207. // Battery level status (Charging)
  208. //=======================================
  209. #define BATTERY_LEVEL_0 0x00
  210. #define BATTERY_LEVEL_1 0x01
  211. #define BATTERY_LEVEL_2 0x02
  212. #define BATTERY_LEVEL_3 0x03
  213. #define BATTERY_LEVEL_4 0x04
  214. #define BATTERY_LEVEL_5 0x05
  215. //=======================================
  216. // CConnection level status (Charging)
  217. //=======================================
  218. #define CONNECTION_LEVEL_0 0x00
  219. #define CONNECTION_LEVEL_1 0x01
  220. //=======================================
  221. // Gun plug-in level status (Preparing)
  222. //=======================================
  223. #define GUN_PLUGING_LEVEL_0 0x00
  224. #define GUN_PLUGING_LEVEL_1 0x01
  225. //=======================================
  226. // RFID authorization constant
  227. //=======================================
  228. #define DEFAULT_RFID 0
  229. #define VALIDATED_RFID 1
  230. #define UNVALIDATED_RFID 2
  231. #define UNKNOW_RFID 3
  232. //=======================================
  233. // Normal mode or CCS mode constant
  234. //=======================================
  235. #define BASIC_MODE 0x00
  236. #define CCS_MODE 0x01
  237. //=======================================
  238. // Price type
  239. //=======================================
  240. #define DEFAULT_VALUE 0
  241. #define CONNECTION_FEE 1
  242. #define CURRENT_RATE 2
  243. #define OCCUPANCY_FEE 3
  244. #define SESSION_FEE 4
  245. #define TOTAL_COST 5
  246. #define ACCOUNT_BALANCE 6
  247. //=======================================
  248. // Currency type
  249. //=======================================
  250. #define DEFAULE_PRICE 1
  251. #define SET_USER_PRICE 2
  252. #define FINAL_COST 3
  253. //=======================================
  254. // LCM brightness percentage
  255. //=======================================
  256. #define BRIGHTNESS_0 0x00
  257. #define BRIGHTNESS_10 0x0A
  258. #define BRIGHTNESS_20 0x14
  259. #define BRIGHTNESS_30 0x1E
  260. #define BRIGHTNESS_40 0x28
  261. #define BRIGHTNESS_50 0x32
  262. #define BRIGHTNESS_60 0x3C
  263. #define BRIGHTNESS_70 0x46
  264. #define BRIGHTNESS_80 0x50
  265. #define BRIGHTNESS_90 0x5A
  266. #define BRIGHTNESS_100 0x64
  267. extern int StoreLogMsg(const char *fmt, ...);
  268. extern int8_t lcdRegisterWrite(int32_t fd, uint8_t regType, uint16_t address, uint8_t *data, uint16_t dataLen);
  269. extern int8_t lcdRegisterRead(int32_t fd, uint8_t regType, uint16_t address, uint8_t *data, uint16_t dataLen);
  270. #endif /* LCMCOMM_DGUS_H_ */