Module_Debug.c 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245
  1. #include <sys/time.h>
  2. #include <sys/timeb.h>
  3. #include <sys/types.h>
  4. #include <sys/stat.h>
  5. #include <sys/types.h>
  6. #include <sys/ioctl.h>
  7. #include <sys/socket.h>
  8. #include <sys/ipc.h>
  9. #include <sys/shm.h>
  10. #include <sys/shm.h>
  11. #include <sys/mman.h>
  12. #include <linux/wireless.h>
  13. #include <arpa/inet.h>
  14. #include <netinet/in.h>
  15. #include <unistd.h>
  16. #include <stdarg.h>
  17. #include <stdio.h>
  18. #include <stdlib.h>
  19. #include <unistd.h>
  20. #include <fcntl.h>
  21. #include <termios.h>
  22. #include <errno.h>
  23. #include <errno.h>
  24. #include <string.h>
  25. #include <time.h>
  26. #include <ctype.h>
  27. #include <ifaddrs.h>
  28. #include <math.h>
  29. #include "define.h"
  30. #include "main.h"
  31. #define ARRAY_SIZE(A) (sizeof(A) / sizeof(A[0]))
  32. #define PASS 1
  33. #define FAIL 0
  34. #define ON 1
  35. #define OFF 0
  36. struct SysConfigAndInfo *ShmSysConfigAndInfo;
  37. struct StatusCodeData *ShmStatusCodeData;
  38. struct Charger *ShmCharger;
  39. int StoreLogMsg(const char *fmt, ...)
  40. {
  41. char Buf[4096+256];
  42. char buffer[4096];
  43. time_t CurrentTime;
  44. struct tm *tm;
  45. va_list args;
  46. va_start(args, fmt);
  47. int rc = vsnprintf(buffer, sizeof(buffer), fmt, args);
  48. va_end(args);
  49. memset(Buf,0,sizeof(Buf));
  50. CurrentTime = time(NULL);
  51. tm=localtime(&CurrentTime);
  52. if((ShmSysConfigAndInfo->SysConfig.ModelName != NULL) && (ShmSysConfigAndInfo->SysConfig.SerialNumber != NULL) && (strlen((char*)ShmSysConfigAndInfo->SysConfig.ModelName) >= 14))
  53. {
  54. sprintf(Buf,"echo \"[%04d.%02d.%02d %02d:%02d:%02d] - %s\" >> /Storage/SystemLog/[%04d.%02d]%s_%s_SystemLog",
  55. tm->tm_year+1900,tm->tm_mon+1,tm->tm_mday,tm->tm_hour,tm->tm_min,tm->tm_sec,
  56. buffer,
  57. tm->tm_year+1900,tm->tm_mon+1,
  58. ShmSysConfigAndInfo->SysConfig.ModelName,
  59. ShmSysConfigAndInfo->SysConfig.SerialNumber);
  60. }
  61. else
  62. {
  63. sprintf(Buf,"echo \"[%04d.%02d.%02d %02d:%02d:%02d] - %s\" >> /Storage/SystemLog/[%04d.%02d]SystemLog",
  64. tm->tm_year+1900,tm->tm_mon+1,tm->tm_mday,tm->tm_hour,tm->tm_min,tm->tm_sec,
  65. buffer,
  66. tm->tm_year+1900,tm->tm_mon+1);
  67. }
  68. #ifdef SystemLogMessage
  69. system(Buf);
  70. #endif
  71. #ifdef ConsloePrintLog
  72. printf("[%04d.%02d.%02d %02d:%02d:%02d] - %s", tm->tm_year+1900,tm->tm_mon+1,tm->tm_mday,tm->tm_hour,tm->tm_min,tm->tm_sec, buffer);
  73. #endif
  74. return rc;
  75. }
  76. int InitShareMemory()
  77. {
  78. int result = PASS;
  79. int MeterSMId;
  80. //Initial ShmSysConfigAndInfo
  81. if ((MeterSMId = shmget(ShmSysConfigAndInfoKey, sizeof(struct SysConfigAndInfo), 0777)) < 0)
  82. {
  83. #ifdef SystemLogMessage
  84. DEBUG_ERROR("shmget ShmSysConfigAndInfo NG\n");
  85. #endif
  86. result = FAIL;
  87. }
  88. else if ((ShmSysConfigAndInfo = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  89. {
  90. #ifdef SystemLogMessage
  91. DEBUG_ERROR("[shmat ShmSysConfigAndInfo NG\n");
  92. #endif
  93. result = FAIL;
  94. }
  95. //Initial ShmStatusCodeData
  96. if ((MeterSMId = shmget(ShmStatusCodeKey, sizeof(struct StatusCodeData), 0777)) < 0)
  97. {
  98. #ifdef SystemLogMessage
  99. DEBUG_ERROR("shmget ShmStatusCodeData NG\n");
  100. #endif
  101. result = FAIL;
  102. }
  103. else if ((ShmStatusCodeData = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  104. {
  105. #ifdef SystemLogMessage
  106. DEBUG_ERROR("shmat ShmStatusCodeData NG\n");
  107. #endif
  108. result = FAIL;
  109. }
  110. //Initial ShmCharger
  111. if ((MeterSMId = shmget(ShmChargerKey, sizeof(struct Charger), 0777)) < 0)
  112. {
  113. #ifdef SystemLogMessage
  114. DEBUG_ERROR("shmget ShmChargerKey NG\r\n");
  115. #endif
  116. result = FAIL;
  117. }
  118. else if ((ShmCharger = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  119. {
  120. #ifdef SystemLogMessage
  121. DEBUG_ERROR("shmat ShmChargerKey NG\r\n");
  122. #endif
  123. result = FAIL;
  124. }
  125. return result;
  126. }
  127. void wait()
  128. {
  129. printf("\n Please press any key then \"Enter\" to continue.");
  130. while(getchar() =='\n') usleep(100000);
  131. }
  132. int main(void)
  133. {
  134. char cmd[128];
  135. if(InitShareMemory() == FAIL)
  136. {
  137. #ifdef SystemLogMessage
  138. DEBUG_ERROR("InitShareMemory NG\n");
  139. #endif
  140. if(ShmStatusCodeData!=NULL)
  141. {
  142. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.FailToCreateShareMemory=1;
  143. }
  144. sleep(5);
  145. return 0;
  146. }
  147. else
  148. {
  149. DEBUG_INFO("InitShareMemory OK.\r\n");
  150. }
  151. for(;;)
  152. {
  153. system("clear");
  154. memset(cmd, 0x00, ARRAY_SIZE(cmd));
  155. printf("\n ============== Debug main menu ==================");
  156. printf("\n info: List charger status info.");
  157. printf("\n exit: Exit Module_Debug_Test.");
  158. printf("\n =================================================");
  159. printf("\n Please input debug command: ");
  160. scanf("%s", &cmd[0]);
  161. if(strcmp(cmd, "info") == 0)
  162. {
  163. uint8_t isExit = FALSE;
  164. int gun_index;
  165. do
  166. {
  167. system("clear");
  168. memset(cmd, 0x00, ARRAY_SIZE(cmd));
  169. printf("\n ***************** Info menu *********************");
  170. printf("\n csu: charger info");
  171. printf("\n mcu: mcu request state");
  172. printf("\n exit: exit to previous menu.");
  173. printf("\n *************************************************");
  174. printf("\n Please input info need to query: ");
  175. scanf("%s", &cmd[0]);
  176. if(strcmp(cmd, "csu") == 0)
  177. {
  178. printf("\n Please input gun index: ");
  179. scanf("%d", &gun_index);
  180. printf("\n CSU info.\n\n");
  181. gun_index = gun_index<AC_QUANTITY?gun_index:0;
  182. printf("\n Charger connector plug times: %d", ShmCharger->gun_info[gun_index].gunPluginTimes.GunPluginTimes);
  183. printf("\n CP positive voltage: %.2f", ShmCharger->gun_info[gun_index].PilotVoltage.PilotVoltagePositive);
  184. printf("\n CP negative voltage: %.2f", ShmCharger->gun_info[gun_index].PilotVoltage.PilotVoltageNegative);
  185. printf("\n CSU to MCU legacyRequest: %d", ShmCharger->gun_info[gun_index].legacyRequest.isLegacyRequest);
  186. printf("\n CSU to MCU relay on request: %d", ShmCharger->gun_info[gun_index].legacyRequest.isRelayOn);
  187. printf("\n Charger charging mode BS/HLC: %d", ShmCharger->gun_info[gun_index].chargingMode);
  188. printf("\n Charger input voltage L1: %.2f", ShmCharger->gun_info[gun_index].inputVoltage.L1N_L12);
  189. printf("\n CSU output current L1: %.2f", ShmCharger->gun_info[gun_index].outputCurrent.L1N_L12[0]);
  190. printf("\n CSU temperature: %d", ShmCharger->gun_info[gun_index].temperature.point[0]);
  191. wait();
  192. }
  193. else if(strcmp(cmd, "mcu") == 0)
  194. {
  195. printf("\n Please input gun index: ");
  196. scanf("%d", &gun_index);
  197. printf("\n MCU info.\n\n");
  198. wait();
  199. }
  200. else if(strcmp(cmd, "exit") == 0)
  201. {
  202. printf("\n Exit to previous.\n\n");
  203. isExit = TRUE;
  204. }
  205. }while(!isExit);
  206. }
  207. else if(strcmp(cmd, "exit") == 0)
  208. {
  209. printf("\n exit program.\n\n");
  210. return FAIL;
  211. }
  212. }
  213. return FAIL;
  214. }