Module_DcMeter.c 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211
  1. /*
  2. * Module_DcMeter.c
  3. *
  4. * Created on: 2021/5/31
  5. * Author: foluswen
  6. */
  7. #include "Module_DcMeter.h"
  8. #include "meterComm.h"
  9. #include "Module_RatedCurrent.h"
  10. /**
  11. * Initial share memory
  12. * @return
  13. */
  14. int InitShareMemory()
  15. {
  16. int result = PASS;
  17. int MeterSMId;
  18. //Initialize ShmSysConfigAndInfo
  19. if ((MeterSMId = shmget(ShmSysConfigAndInfoKey, sizeof(struct SysConfigAndInfo), 0777)) < 0)
  20. {
  21. DEBUG_ERROR("shmget ShmSysConfigAndInfo NG\n");
  22. result = FAIL;
  23. }
  24. else if ((ShmSysConfigAndInfo = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  25. {
  26. DEBUG_ERROR("shmat ShmSysConfigAndInfo NG\n");
  27. result = FAIL;
  28. }
  29. else
  30. {}
  31. //Initialize ShmStatusCodeData
  32. if ((MeterSMId = shmget(ShmStatusCodeKey, sizeof(struct StatusCodeData), 0777)) < 0)
  33. {
  34. DEBUG_ERROR("shmget ShmStatusCodeData NG\n");
  35. result = FAIL;
  36. }
  37. else if ((ShmStatusCodeData = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  38. {
  39. DEBUG_ERROR("shmat ShmStatusCodeData NG\n");
  40. result = FAIL;
  41. }
  42. else
  43. {}
  44. return result;
  45. }
  46. //==========================================
  47. // Main loop
  48. //==========================================
  49. int main(void)
  50. {
  51. ParsingRatedCur modelnameInfo = {0};
  52. Meter_Info meter_info = {0};
  53. uint8_t pollingIndex = 0;
  54. uint8_t meterIndex = 0;
  55. uint8_t failCount = 0;
  56. #ifndef DEBUG_STANDALONG
  57. // Initialize share memory
  58. if(InitShareMemory() == FAIL)
  59. {
  60. DEBUG_ERROR("InitShareMemory NG\n");
  61. if(ShmStatusCodeData!=NULL)
  62. {
  63. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.FailToCreateShareMemory=ON;
  64. }
  65. sleep(5);
  66. return -1;
  67. }
  68. RatedCurrentParsing((char*)ShmSysConfigAndInfo->SysConfig.ModelName, &modelnameInfo);
  69. #endif//DEBUG_STANDALONG
  70. // Initialize DC meter model
  71. /*
  72. * TODO:
  73. * 1. Maybe need to parse configuration by model name
  74. */
  75. meterInitialize(METER_MODEL_LEM_L18005A);
  76. // Main loop
  77. for(;;)
  78. {
  79. for(uint8_t gun_index=0;gun_index<modelnameInfo.GetGunCount;gun_index++)
  80. {
  81. if(gun_index == 0)
  82. meterIndex = 0;
  83. if(modelnameInfo.ParsingInfo[gun_index].GunType != Gun_Type_AC)
  84. {
  85. meterApiAssign(meterIndex);
  86. switch(pollingIndex)
  87. {
  88. case 0:
  89. if(readCurrent(&meter_info))
  90. {
  91. #ifndef DEBUG_STANDALONG
  92. /*
  93. * TODO:
  94. * 1. Synchronize data to share memory
  95. */
  96. #else
  97. DEBUG_INFO("Output current: %.3f A\n", meter_info.presentCurrent);
  98. #endif//DEBUG_STANDALONG
  99. pollingIndex++;
  100. failCount = 0;
  101. }
  102. else
  103. {
  104. if(failCount < 10)
  105. failCount++;
  106. }
  107. break;
  108. case 1:
  109. if(readVoltage(&meter_info))
  110. {
  111. #ifndef DEBUG_STANDALONG
  112. /*
  113. * TODO:
  114. * 1. Synchronize data to share memory
  115. */
  116. #else
  117. DEBUG_INFO("Output voltage: %.3f V\n", meter_info.presetVoltage);
  118. #endif//DEBUG_STANDALONG
  119. pollingIndex++;
  120. failCount = 0;
  121. }
  122. else
  123. {
  124. if(failCount < 10)
  125. failCount++;
  126. }
  127. break;
  128. case 2:
  129. if(readPower(&meter_info))
  130. {
  131. #ifndef DEBUG_STANDALONG
  132. /*
  133. * TODO:
  134. * 1. Synchronize data to share memory
  135. */
  136. #else
  137. DEBUG_INFO("Output power: %.3f kw\n", meter_info.presentPower);
  138. #endif//DEBUG_STANDALONG
  139. pollingIndex++;
  140. failCount = 0;
  141. }
  142. else
  143. {
  144. if(failCount < 10)
  145. failCount++;
  146. }
  147. break;
  148. case 3:
  149. if(readEnergy(&meter_info))
  150. {
  151. #ifndef DEBUG_STANDALONG
  152. /*
  153. * TODO:
  154. * 1. Synchronize data to share memory
  155. */
  156. #else
  157. DEBUG_INFO("Totalize import energy: %.3f kwh\n", meter_info.totlizeImportEnergy);
  158. DEBUG_INFO("Totalize export energy: %.3f kwh\n", meter_info.totlizeExportEnergy);
  159. #endif//DEBUG_STANDALONG
  160. pollingIndex++;
  161. failCount = 0;
  162. }
  163. else
  164. {
  165. if(failCount < 10)
  166. failCount++;
  167. }
  168. break;
  169. default:
  170. pollingIndex = 0;
  171. break;
  172. }
  173. meterIndex++;
  174. }
  175. if(failCount >= 10)
  176. {
  177. #ifndef DEBUG_STANDALONG
  178. if(ShmStatusCodeData->AlarmCode.AlarmEvents.bits.MeterCommTimeout)
  179. {
  180. DEBUG_ERROR("Meter communication timeout");
  181. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.MeterCommTimeout = ON;
  182. }
  183. #endif//DEBUG_STANDALONG
  184. }
  185. else
  186. {
  187. #ifndef DEBUG_STANDALONG
  188. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.MeterCommTimeout = OFF;
  189. #endif//DEBUG_STANDALONG
  190. }
  191. usleep(500000);
  192. }
  193. }
  194. return -1;
  195. }