From 04bed94c8e288dad4e7fadbeb26823e3bca5e71e Mon Sep 17 00:00:00 2001 From: swateeshrivastava Date: Thu, 29 Nov 2018 16:38:08 +0530 Subject: [PATCH] Host code for alert --- firmware/ec/platform/oc-sdr/schema/schema.c | 131 +- firmware/host/Makefile | 2 +- firmware/host/include/logger.h | 80 +- firmware/host/include/occli_common.h | 51 +- firmware/host/include/ocmw_core.h | 20 +- firmware/host/include/ocmw_eth_comm.h | 10 +- firmware/host/include/ocmw_helper.h | 119 +- firmware/host/include/ocmw_msgproc.h | 4 +- firmware/host/include/ocmw_occli_comm.h | 27 +- firmware/host/include/ocmw_schema.h | 59 +- firmware/host/include/ocmw_socket_comm.h | 49 +- firmware/host/include/ocmw_uart_comm.h | 17 +- firmware/host/include/ocware_stub_eth_comm.h | 12 +- .../host/include/ocware_stub_main_module.h | 148 +- firmware/host/include/ocwdg_daemon.h | 2 +- firmware/host/include/postframe.h | 8 +- firmware/host/include/util.h | 2 +- firmware/host/log/logFileMW.txt | 35940 ++++++++++++++++ firmware/host/log/logFileOccli.txt | 23 + firmware/host/occli/occli_helpMenu.c | 209 +- firmware/host/occli/occli_main.c | 224 +- firmware/host/occli/occli_ocmw_comm.c | 20 +- firmware/host/ocmw/ocmw_clicmd.c | 942 +- firmware/host/ocmw/ocmw_core.c | 324 +- firmware/host/ocmw/ocmw_eth_comm.c | 37 +- firmware/host/ocmw/ocmw_helper.c | 25 +- firmware/host/ocmw/ocmw_main.c | 12 +- firmware/host/ocmw/ocmw_msgproc.c | 7 +- firmware/host/ocmw/ocmw_occli_comm.c | 20 +- firmware/host/ocmw/ocmw_schema.c | 724 +- firmware/host/ocmw/ocmw_uart_comm.c | 39 +- .../host/ocwarestub/ocware_stub_database.c | 853 +- .../host/ocwarestub/ocware_stub_eth_comm.c | 29 +- .../host/ocwarestub/ocware_stub_main_module.c | 78 +- .../ocwarestub/ocware_stub_parse_message.c | 79 +- firmware/host/ocwdg/ocwdg_daemon.c | 20 +- firmware/host/util/logger.c | 2 +- firmware/host/util/util.c | 14 +- 38 files changed, 38588 insertions(+), 1774 deletions(-) mode change 100755 => 100644 firmware/host/include/ocmw_msgproc.h mode change 100755 => 100644 firmware/host/include/ocware_stub_eth_comm.h mode change 100755 => 100644 firmware/host/include/ocware_stub_main_module.h create mode 100644 firmware/host/log/logFileMW.txt create mode 100644 firmware/host/log/logFileOccli.txt mode change 100755 => 100644 firmware/host/ocmw/ocmw_msgproc.c mode change 100755 => 100644 firmware/host/ocwarestub/ocware_stub_database.c mode change 100755 => 100644 firmware/host/ocwarestub/ocware_stub_eth_comm.c mode change 100755 => 100644 firmware/host/ocwarestub/ocware_stub_main_module.c mode change 100755 => 100644 firmware/host/ocwarestub/ocware_stub_parse_message.c diff --git a/firmware/ec/platform/oc-sdr/schema/schema.c b/firmware/ec/platform/oc-sdr/schema/schema.c index 568e8eb6c6..f2fd8161d1 100644 --- a/firmware/ec/platform/oc-sdr/schema/schema.c +++ b/firmware/ec/platform/oc-sdr/schema/schema.c @@ -228,6 +228,15 @@ SCHEMA_IMPORT bool TestMod_cmdReset(void *driver, void *params); SCHEMA_IMPORT bool obc_pre_init(void *driver, void *returnValue); SCHEMA_IMPORT bool SYS_post_get_results(void **getpostResult); SCHEMA_IMPORT bool SYS_post_enable(void **postActivate); +SCHEMA_IMPORT bool sys_alert_log(void *driver, void *params); +SCHEMA_IMPORT bool power_alert_log(void *driver, void *params); +SCHEMA_IMPORT bool bms_alert_log(void *driver, void *params); +SCHEMA_IMPORT bool hci_alert_log(void *driver, void *params); +SCHEMA_IMPORT bool eth_alert_log(void *driver, void *params); +SCHEMA_IMPORT bool gpp_alert_log(void *driver, void *params); +SCHEMA_IMPORT bool sdr_alert_log(void *driver, void *params); +SCHEMA_IMPORT bool rffe_alert_log(void *driver, void *params); +SCHEMA_IMPORT bool sync_alert_log(void *driver, void *params); const Component sys_schema[] = { { @@ -268,6 +277,11 @@ const Component sys_schema[] = { .name = "echo", .cb_cmd = SYS_cmdEcho, }, + { + .name = "getAlertLogs", + .cb_cmd = sys_alert_log, + }, + {} }, }, {} }, @@ -292,6 +306,11 @@ const Component sys_schema[] = { .postDisabled = POST_DISABLED, }, {} }, + .commands = (Command[]){ { + .name = "getAlertLogs", + .cb_cmd = power_alert_log, + }, + {} }, }, { .name = "leadacid_sensor", .components = @@ -340,6 +359,13 @@ const Component sys_schema[] = { { .name = "comp_all", .postDisabled = POST_DISABLED, + .commands = + (Command[]){ + { + .name = "getAlertLogs", + .cb_cmd = bms_alert_log, + }, + {} }, }, { .name = "ec", .components = @@ -377,6 +403,13 @@ const Component sys_schema[] = { { .name = "comp_all", .postDisabled = POST_DISABLED, + .commands = + (Command[]){ + { + .name = "getAlertLogs", + .cb_cmd = hci_alert_log, + }, + {} }, }, { .name = "led", @@ -407,36 +440,43 @@ const Component sys_schema[] = { }, { .name = "ethernet", - .components = (Component[]){ { - .name = "comp_all", - .postDisabled = POST_DISABLED, - }, - { - .name = "port0", - .driver = Ð_SW, - .driver_cfg = &gbc_eth_port0, - }, - { - .name = "port1", - .driver = Ð_SW, - .driver_cfg = &gbc_eth_port1, - }, - { - .name = "port2", - .driver = Ð_SW, - .driver_cfg = &gbc_eth_port2, - }, - { - .name = "port3", - .driver = Ð_SW, - .driver_cfg = &gbc_eth_port3, - }, - { - .name = "port4", - .driver = Ð_SW, - .driver_cfg = &gbc_eth_port4, - }, - {} }, + .components = + (Component[]){ { + .name = "comp_all", + .postDisabled = POST_DISABLED, + .commands = + (Command[]){ { + .name = "getAlertLogs", + .cb_cmd = eth_alert_log, + }, + {} }, + }, + { + .name = "port0", + .driver = Ð_SW, + .driver_cfg = &gbc_eth_port0, + }, + { + .name = "port1", + .driver = Ð_SW, + .driver_cfg = &gbc_eth_port1, + }, + { + .name = "port2", + .driver = Ð_SW, + .driver_cfg = &gbc_eth_port2, + }, + { + .name = "port3", + .driver = Ð_SW, + .driver_cfg = &gbc_eth_port3, + }, + { + .name = "port4", + .driver = Ð_SW, + .driver_cfg = &gbc_eth_port4, + }, + {} }, }, { .name = "obc", @@ -464,6 +504,13 @@ const Component sys_schema[] = { { .name = "comp_all", .postDisabled = POST_DISABLED, + .commands = + (Command[]){ + { + .name = "getAlertLogs", + .cb_cmd = gpp_alert_log, + }, + {} }, }, { @@ -579,6 +626,10 @@ const Component sys_schema[] = { .name = "reset", .cb_cmd = SDR_fx3Reset, }, + { + .name = "getAlertLogs", + .cb_cmd = sdr_alert_log, + }, {} }, .postDisabled = POST_DISABLED, }, @@ -609,6 +660,11 @@ const Component sys_schema[] = { .name = "reset", .cb_cmd = RFFE_reset, }, + { + .name = "getAlertLogs", + .cb_cmd = rffe_alert_log, + }, + {} }, }, { .name = "ch1_sensor", @@ -762,11 +818,16 @@ const Component sys_schema[] = { (Component[]){ { .name = "comp_all", .driver_cfg = &sync_gpiocfg, - .commands = (Command[]){ { - .name = "reset", - .cb_cmd = SYNC_reset, - }, - {} }, + .commands = + (Command[]){ { + .name = "reset", + .cb_cmd = SYNC_reset, + }, + { + .name = "getAlertLogs", + .cb_cmd = sync_alert_log, + }, + {} }, .postDisabled = POST_DISABLED, }, { diff --git a/firmware/host/Makefile b/firmware/host/Makefile index ef8970334a..856a1a3fbe 100644 --- a/firmware/host/Makefile +++ b/firmware/host/Makefile @@ -41,7 +41,7 @@ ocware_stub: $(OBJECTS) $(CC) $(src_ocware_stub) -o $(output_dir)/ocware_stub $(LIBS) $(CFLAGS) -DOCWARE_HOST occli: $(OBJECTS) - $(CC) $(src_occli) -o $(output_dir)/occli $(LIBS) $(CFLAGS) -DOCWARE_HOST + $(CC) $(src_occli) -o $(output_dir)/occli $(LIBS) $(CFLAGS) -DOCWARE_HOST -DOCCLI_LOG ln -sf occli $(output_dir)/occmd diff --git a/firmware/host/include/logger.h b/firmware/host/include/logger.h index 13549cb848..83d575dddd 100644 --- a/firmware/host/include/logger.h +++ b/firmware/host/include/logger.h @@ -12,44 +12,66 @@ #include #include -#define __filename__ (basename(__FILE__)) +#define __filename__ (basename(__FILE__)) #ifdef CONSOLE_LOG -#define logit(facility, fmt, ...) \ -{ \ - if(facility != LOG_DEBUG) \ - printf(fmt "\n", ##__VA_ARGS__); \ - else \ - printf ("[%s:%d, %s()]:" fmt "\n", __filename__, \ - __LINE__, __func__, ##__VA_ARGS__); \ -} - -#else /* syslog */ - -#define logit(facility, fmt, ...) \ -{ \ - if(facility != LOG_DEBUG) \ - syslog(facility, fmt "\n", ##__VA_ARGS__); \ - else \ - syslog(facility, " [%s:%d, %s()]: " fmt "\n", \ - __filename__, __LINE__, __func__, ##__VA_ARGS__); \ -} +# define logit(facility, fmt, ...) \ + { \ + if (facility != LOG_DEBUG) \ + printf(fmt "\n", ##__VA_ARGS__); \ + else \ + printf("[%s:%d, %s()]:" fmt "\n", __filename__, __LINE__, \ + __func__, ##__VA_ARGS__); \ + } +#elif SYS_LOG /* syslog */ +# define logit(facility, fmt, ...) \ + { \ + if (facility != LOG_DEBUG) \ + syslog(facility, fmt "\n", ##__VA_ARGS__); \ + else \ + syslog(facility, " [%s:%d, %s()]: " fmt "\n", __filename__, \ + __LINE__, __func__, ##__VA_ARGS__); \ + } +#elif OCCLI_LOG +# define logit(facility, fmt, ...) \ + { \ + FILE *fp; \ + fp = fopen("./log/logFileOccli.txt", "a"); \ + if (facility != LOG_DEBUG) \ + fprintf(fp, fmt "\n", ##__VA_ARGS__); \ + else \ + fprintf(fp, "[%s:%d, %s()]:" fmt "\n", __filename__, __LINE__, \ + __func__, ##__VA_ARGS__); \ + fclose(fp); \ + } +#else +# define logit(facility, fmt, ...) \ + { \ + FILE *fp; \ + fp = fopen("./log/logFileMW.txt", "a"); \ + if (facility != LOG_DEBUG) \ + fprintf(fp, fmt "\n", ##__VA_ARGS__); \ + else \ + fprintf(fp, "[%s:%d, %s()]:" fmt "\n", __filename__, __LINE__, \ + __func__, ##__VA_ARGS__); \ + fclose(fp); \ + } #endif -#define logemerg(fmt, ...) logit(LOG_EMERG, " " fmt, ##__VA_ARGS__) -#define logalert(fmt, ...) logit(LOG_ALERT, " " fmt, ##__VA_ARGS__) -#define logcrit(fmt, ...) logit(LOG_CRIT, " " fmt, ##__VA_ARGS__) -#define logerr(fmt, ...) logit(LOG_ERR, " " fmt, ##__VA_ARGS__) -#define logwarn(fmt, ...) logit(LOG_WARNING, " " fmt, ##__VA_ARGS__) -#define lognotice(fmt, ...) logit(LOG_NOTICE, " " fmt, ##__VA_ARGS__) -#define loginfo(fmt, ...) logit(LOG_INFO, " " fmt, ##__VA_ARGS__) -#define logdebug(fmt, ...) logit(LOG_DEBUG, fmt, ##__VA_ARGS__) +#define logemerg(fmt, ...) logit(LOG_EMERG, " " fmt, ##__VA_ARGS__) +#define logalert(fmt, ...) logit(LOG_ALERT, " " fmt, ##__VA_ARGS__) +#define logcrit(fmt, ...) logit(LOG_CRIT, " " fmt, ##__VA_ARGS__) +#define logerr(fmt, ...) logit(LOG_ERR, " " fmt, ##__VA_ARGS__) +#define logwarn(fmt, ...) logit(LOG_WARNING, " " fmt, ##__VA_ARGS__) +#define lognotice(fmt, ...) logit(LOG_NOTICE, " " fmt, ##__VA_ARGS__) +#define loginfo(fmt, ...) logit(LOG_INFO, " " fmt, ##__VA_ARGS__) +#define logdebug(fmt, ...) logit(LOG_DEBUG, fmt, ##__VA_ARGS__) /* * @param ident an input value (by pointer) * */ -extern void initlog(const char* ident); +extern void initlog(const char *ident); /* * deinitialize the logging routine * diff --git a/firmware/host/include/occli_common.h b/firmware/host/include/occli_common.h index c6208567a0..e7912a9259 100644 --- a/firmware/host/include/occli_common.h +++ b/firmware/host/include/occli_common.h @@ -14,18 +14,18 @@ #include #include -#define HIT_FILE_BUFF_SIZE 50 -#define OCCLI_STRING_SIZE 128 -#define RES_STR_BUFF_SIZE 10000 -#define OCMP_MAX_SIZE 10 -#define OCCLI_CHAR_ARRAY_SIZE 30 -#define OCMW_MAX_SUBSYSTEM 11 +#define HIT_FILE_BUFF_SIZE 50 +#define OCCLI_STRING_SIZE 128 +#define RES_STR_BUFF_SIZE 100000 +#define OCMP_MAX_SIZE 10 +#define OCCLI_CHAR_ARRAY_SIZE 30 +#define OCMW_MAX_SUBSYSTEM 11 /* This timeout must be more than OCMW timeout */ -#define OCCLI_TIMEOUT_PERIOD 12 -#define FAILED -1 -#define SUCCESS 0 -#define OCCLI_SNPRINTF_MAX_LEN 200 -#define OCCLI_HELP_MAX_SIZE 400 +#define OCCLI_TIMEOUT_PERIOD 12 +#define FAILED -1 +#define SUCCESS 0 +#define OCCLI_SNPRINTF_MAX_LEN 200 +#define OCCLI_HELP_MAX_SIZE 400 typedef struct { char option; @@ -34,11 +34,11 @@ typedef struct { } OCCLI_ARRAY_PARAM; typedef struct { - char subsystem[OCCLI_CHAR_ARRAY_SIZE]; - char component[OCCLI_CHAR_ARRAY_SIZE]; - char subcomponent[OCCLI_CHAR_ARRAY_SIZE]; - char msgtype[OCCLI_CHAR_ARRAY_SIZE]; - char parameter[OCCLI_CHAR_ARRAY_SIZE]; + char subsystem[OCCLI_CHAR_ARRAY_SIZE]; + char component[OCCLI_CHAR_ARRAY_SIZE]; + char subcomponent[OCCLI_CHAR_ARRAY_SIZE]; + char msgtype[OCCLI_CHAR_ARRAY_SIZE]; + char parameter[OCCLI_CHAR_ARRAY_SIZE]; } strMsgFrame; typedef struct { @@ -56,7 +56,6 @@ typedef struct { char *parameter; } OCCLI_STRING_MSG; - typedef struct { int32_t totalNum; struct name { @@ -65,7 +64,7 @@ typedef struct { } Info[OCCLI_CHAR_ARRAY_SIZE]; } subSystemInfo; -//Help Menu structure +// Help Menu structure typedef struct { char subSystem[OCMW_MAX_SUBSYSTEM_SIZE]; char component[OCMW_HELP_FRAME_SIZE]; @@ -83,6 +82,7 @@ typedef struct { } commandFrame; /* + * Initialize the ocmw communication */ extern int32_t occli_init_comm(void); @@ -119,8 +119,7 @@ extern int32_t occli_recv_alertmsg_from_ocmw(char *resp, int32_t resplen); * * @return true if function succeeds, false otherwise */ -extern int32_t ocmw_parse_msgframe(const Component *root, - strMsgFrame *msgFrame, +extern int32_t ocmw_parse_msgframe(const Component *root, strMsgFrame *msgFrame, uint8_t actiontype, ocmwSchemaSendBuf *ecSendBuf); /* @@ -186,9 +185,19 @@ extern void ocmw_free_global_pointer(void **ptr); * * @return true if function succeeds, false otherwise */ -extern int8_t occli_printHelpMenu(const Component *root,char *cmd); +extern int8_t occli_printHelpMenu(const Component *root, char *cmd); /*Display CLI window*/ extern void occli_print_opencelluar(); +/* + * @param root an output value (by pointer) + * @param systemInfo an output value (by pointer) + * + * @return true if function succeeds, false otherwise + */ +extern void ocmw_handle_alert_msg(const Component *compBase, + OCMPMessageFrame *ecReceivedMsg, + int8_t *alertRecord); + #endif /* _OCCLI_COMM_H_ */ diff --git a/firmware/host/include/ocmw_core.h b/firmware/host/include/ocmw_core.h index 4e1097153b..06933f7bd4 100644 --- a/firmware/host/include/ocmw_core.h +++ b/firmware/host/include/ocmw_core.h @@ -17,10 +17,11 @@ sem_t semCliReturn; sem_t semCommandPost; /* This timeout must be less than CLI timeout */ -#define OCMW_SEM_WAIT_TIME 10 -#define OCMW_BUSY_WAIT_INDEX 0 -#define OCMW_TIMED_WAIT_INDEX 1 -#define PARAM_STR_MAX_BUFF_SIZE 100 +#define OCMW_SEM_WAIT_TIME 10 +#define OCMW_BUSY_WAIT_INDEX 0 +#define OCMW_TIMED_WAIT_INDEX 1 +#define PARAM_STR_MAX_BUFF_SIZE 100 +#define ALERT_MAX_BUFF_SIZE 400 extern int32_t ocmw_init(); /* @@ -32,9 +33,10 @@ extern int32_t ocmw_init(); * * @return true if function succeeds, false otherwise */ -extern int32_t ocmw_msg_packetize_and_send(char * argv[], uint8_t actionType, - uint8_t msgType, const int8_t * paramStr, uint8_t interface, - void* paramVal); +extern int32_t ocmw_msg_packetize_and_send(char *argv[], uint8_t actionType, + uint8_t msgType, + const int8_t *paramStr, + uint8_t interface, void *paramVal); /* * Message parser module * @@ -44,13 +46,13 @@ extern void ocmw_ec_msgparser(void); * Thread to parse the data coming from EC to AP through uart * @param pthreadData an input value (by pointer) */ -extern void * ocmw_thread_uartmsgparser(void *pthreadData); +extern void *ocmw_thread_uartmsgparser(void *pthreadData); /* * Thread to parse the data coming from EC to AP through ethernet * @param pthreadData an input value (by pointer) */ -extern void * ocmw_thread_ethmsgparser(void *pthreadData); +extern void *ocmw_thread_ethmsgparser(void *pthreadData); /* * @param ecMsgFrame an input structure (by value) * @param interface an input enum value (by value) diff --git a/firmware/host/include/ocmw_eth_comm.h b/firmware/host/include/ocmw_eth_comm.h index 1f184ff7c5..8c82e3a71b 100644 --- a/firmware/host/include/ocmw_eth_comm.h +++ b/firmware/host/include/ocmw_eth_comm.h @@ -22,8 +22,8 @@ #include #include -#define OCMW_EC_DEV 1 -#define OCMW_EC_STUB_DEV 2 +#define OCMW_EC_DEV 1 +#define OCMW_EC_STUB_DEV 2 /* * Initialize the ocmw ethernet communication @@ -43,12 +43,14 @@ extern int32_t ocmw_deinit_eth_comm(int32_t sentDev); * * @return true if function succeeds, false otherwise */ -extern int32_t ocmw_send_eth_msgto_ec(const int8_t *cmd, int32_t cmdlen,int32_t sentDev); +extern int32_t ocmw_send_eth_msgto_ec(const int8_t *cmd, int32_t cmdlen, + int32_t sentDev); /* * @param resp an input value (by pointer) * @param resplen an input value (by value) * * @return true if function succeeds, false otherwise */ -extern int32_t ocmw_recv_eth_msgfrom_ec(int8_t *resp, int32_t resplen, int32_t sentDev); +extern int32_t ocmw_recv_eth_msgfrom_ec(int8_t *resp, int32_t resplen, + int32_t sentDev); #endif /* _OCCLI_IPC_COMM_H_ */ diff --git a/firmware/host/include/ocmw_helper.h b/firmware/host/include/ocmw_helper.h index aea25c3144..3aa9fe2610 100644 --- a/firmware/host/include/ocmw_helper.h +++ b/firmware/host/include/ocmw_helper.h @@ -28,41 +28,44 @@ #include #include -#define Buf_PARAM_STRUCT_MAX_SIZE 16 -#define MAX_PARM_COUNT (OCMP_MSG_SIZE - (sizeof(OCMPMessage)\ - - sizeof(void *) + sizeof (OCMPHeader))) +#define Buf_PARAM_STRUCT_MAX_SIZE 16 +#define MAX_PARM_COUNT \ + (OCMP_MSG_SIZE - \ + (sizeof(OCMPMessage) - sizeof(void *) + sizeof(OCMPHeader))) -#define DEBUG_SUBSYSTEM_NBR 11 -#define DEBUG_I2C 3 -#define DEBUG_MDIO 8 +#define DEBUG_SUBSYSTEM_NBR 11 +#define DEBUG_I2C 3 +#define DEBUG_MDIO 8 -#define PARAM_STR_BUFF_SIZE 100 -#define PARAM_TYPE_BUFF_SIZE 32 - -#define OCMW_MAX_SUBSYSTEM_SIZE 16 -#define OCMW_MAX_ACTION_SIZE 16 -#define OCMW_MAX_MSGTYPE_SIZE 16 -#define OCMW_COMMAND_BUFF_SIZE 20 -#define OCMW_POST_DESC_SIZE 24 -#define OCMW_HELP_FRAME_SIZE 40 -#define OCMW_POST_DEVICE_SIZE 40 -#define EEPROM_STATUS_MAX_SIZE 21 -#define EEPROM_SDR_STATUS_SIZE 19 -#define EEPROM_CONFIG_MAX_SIZE 14 -#define EEPROM_CONFIG_SIZE 18 -#define OCMW_MAX_POST_CODE_SIZE 100 -#define TEMP_STR_BUFF_SIZE 100 +#define PARAM_STR_BUFF_SIZE 100 +#define PARAM_TYPE_BUFF_SIZE 32 +#define OCMW_ALERT_ACTION_SIZE 12 +#define OCMW_MAX_SUBSYSTEM_SIZE 16 +#define OCMW_MAX_ACTION_SIZE 16 +#define OCMW_MAX_MSGTYPE_SIZE 16 +#define OCMW_COMMAND_BUFF_SIZE 20 +#define OCMW_POST_DESC_SIZE 24 +#define OCMW_ALERT_DATE_SIZE 24 +#define OCMW_HELP_FRAME_SIZE 40 +#define OCMW_POST_DEVICE_SIZE 40 +#define OCMW_ALERT_STRING_SIZE 64 +#define EEPROM_STATUS_MAX_SIZE 21 +#define EEPROM_SDR_STATUS_SIZE 19 +#define EEPROM_CONFIG_MAX_SIZE 14 +#define EEPROM_CONFIG_SIZE 18 +#define OCMW_MAX_POST_CODE_SIZE 100 +#define TEMP_STR_BUFF_SIZE 100 typedef enum { - VOID = 0, - CHAR = 1, - UCHAR = 1, - SHORT = 2, - USHORT = 2, - INT = 4, - UINT = 4, - FLOAT = 4 + VOID = 0, + CHAR = 1, + UCHAR = 1, + SHORT = 2, + USHORT = 2, + INT = 4, + UINT = 4, + FLOAT = 4 } DATA_TYPE; typedef enum { @@ -98,25 +101,44 @@ typedef struct { char commandType[OCMW_COMMAND_BUFF_SIZE]; } ocmwSchemaSendBuf; -typedef struct __attribute__((packed, aligned(1))){ - uint8_t devsn; /* device serial Number */ +typedef struct __attribute__((packed, aligned(1))) { + uint8_t devsn; /* device serial Number */ uint8_t subsystem; - char subsysName[OCMW_MAX_SUBSYSTEM_SIZE]; /* Subsystem Name */ - char deviceName[OCMW_POST_DEVICE_SIZE]; /* Device Name */ - uint8_t status; /* device status */ + char subsysName[OCMW_MAX_SUBSYSTEM_SIZE]; /* Subsystem Name */ + char deviceName[OCMW_POST_DEVICE_SIZE]; /* Device Name */ + uint8_t status; /* device status */ } ocwarePostResultData; typedef struct { - unsigned int count; /* Device Status count */ - ocwarePostResultData results[OCMW_MAX_POST_CODE_SIZE]; /* Post result structure */ + unsigned int count; /* Device Status count */ + ocwarePostResultData + results[OCMW_MAX_POST_CODE_SIZE]; /* Post result structure */ } ocwarePostResults; typedef struct { - uint8_t msgtype; /* Post Message tyep */ - uint8_t replycode; /* Reply type */ - char desc[OCMW_POST_DESC_SIZE]; /* Device description */ + uint8_t msgtype; /* Post Message tyep */ + uint8_t replycode; /* Reply type */ + char desc[OCMW_POST_DESC_SIZE]; /* Device description */ } ocwarePostReplyCode; +typedef struct alertevent { + char string[OCMW_ALERT_STRING_SIZE]; /* alert string */ + char action[OCMW_ALERT_ACTION_SIZE]; /* ACTIVE / CLEAR */ + char value[OCMW_ALERT_STRING_SIZE]; +} alertevent; + +typedef struct allAlertEvent { + char string[OCMW_ALERT_STRING_SIZE]; /* alert string */ + char action[OCMW_ALERT_ACTION_SIZE]; /* ACTIVE / CLEAR */ + char datetime[OCMW_ALERT_DATE_SIZE]; /* YYYY-MM-DD hh:mm:ss */ + char value[OCMW_ALERT_STRING_SIZE]; + char actualValue[OCMW_ALERT_STRING_SIZE]; +} allAlertEvent; + +typedef struct alertlist { + uint16_t nalerts; /* Number of alerts */ + struct allAlertEvent *list; /* Alert list */ +} alertlist; /* * @param sem an input value (by pointer) * @@ -129,7 +151,8 @@ extern int32_t ocmw_sem_wait_nointr(sem_t *sem); * * @return true if function succeeds, false otherwise */ -extern int32_t ocmw_sem_timedwait_nointr(sem_t *sem, const struct timespec *timeout); +extern int32_t ocmw_sem_timedwait_nointr(sem_t *sem, + const struct timespec *timeout); /* * @param paramindex an input value (by value) * @param paramSizebuf an input value (by pointer) @@ -138,14 +161,14 @@ extern int32_t ocmw_sem_timedwait_nointr(sem_t *sem, const struct timespec *time * */ extern void ocmw_dataparsing_from_db(int32_t paramIndex, int32_t *paramSizebuf, - int32_t *dataSize, int32_t *pos); + int32_t *dataSize, int32_t *pos); /* * @param input an input buffer (by pointer) * @param bufParamStruct an output buffer (by pointer) * */ extern void ocmw_dataparsing_from_ec(ocmwSendRecvBuf *input, - bufParam * bufParamStruct); + bufParam *bufParamStruct); /* * @param uartInputBuf an input buffer (by pointer) * @@ -157,7 +180,7 @@ extern int32_t ocmw_fill_inputstruct(ocmwSendRecvBuf *uartInputBuf); * * @return true if function succeeds, false otherwise */ -extern int8_t ocmw_parse_eepromdata_from_ec (ocmwSendRecvBuf ecInputData); +extern int8_t ocmw_parse_eepromdata_from_ec(ocmwSendRecvBuf ecInputData); /* * @param ecInputData an input data (by value) * @@ -170,4 +193,12 @@ extern int32_t ocmw_parse_obc_from_ec(ocmwSendRecvBuf ecInputData); * @return true if function succeeds, false otherwise */ extern int32_t ocmw_parse_testingmodule_from_ec(ocmwSendRecvBuf ecInputData); +/* + * @param msgaction an input value (by value) + * @param msgtype an input value (by value) + * @param paramstr an input string (by pointer) + * @param paramvalue an input value (by pointer) + * + */ +extern int32_t ocmw_handle_show_alerts(char *response); #endif /* _OCMW_HELPER_H_ */ diff --git a/firmware/host/include/ocmw_msgproc.h b/firmware/host/include/ocmw_msgproc.h old mode 100755 new mode 100644 index 3c8344f82c..c71c8bf547 --- a/firmware/host/include/ocmw_msgproc.h +++ b/firmware/host/include/ocmw_msgproc.h @@ -11,7 +11,7 @@ #include "ocmp_frame.h" -extern int ocmw_msgproc_send_msg(char * argv[], uint8_t action, int8_t msgtype, - const int8_t* paramstr, void* paramvalue); +extern int ocmw_msgproc_send_msg(char *argv[], uint8_t action, int8_t msgtype, + const int8_t *paramstr, void *paramvalue); #endif /* _OCMW_MSGPROC_H_ */ diff --git a/firmware/host/include/ocmw_occli_comm.h b/firmware/host/include/ocmw_occli_comm.h index fda6ee3ac9..c8ed7efee1 100644 --- a/firmware/host/include/ocmw_occli_comm.h +++ b/firmware/host/include/ocmw_occli_comm.h @@ -11,14 +11,15 @@ #include -#define PARAMSTR_NUMBER_LEN 12 -#define TESTMOD_MAX_LEN 16 -#define RES_STR_BUFF_SIZE 10000 -#define TEMP_STR_BUFF_SIZE 100 -#define ALERT_STR_BUFF_SIZE 128 -#define CMD_STR_BUFF_SIZE 100 -#define OCMW_MAX_IMEI_SIZE 15 -#define OCMW_MAX_MSG_SIZE 20 +#define PARAMSTR_NUMBER_LEN 12 +#define TESTMOD_MAX_LEN 16 +#define RES_STR_BUFF_SIZE 100000 +#define TEMP_STR_BUFF_SIZE 100 +#define FINAL_STR_BUFF_SIZE 100 +#define ALERT_STR_BUFF_SIZE 200 +#define CMD_STR_BUFF_SIZE 100 +#define OCMW_MAX_IMEI_SIZE 15 +#define OCMW_MAX_MSG_SIZE 20 typedef struct { int8_t pin; @@ -30,7 +31,7 @@ typedef struct { uint16_t regValue; } debugMDIOData; -typedef struct __attribute__((packed, aligned(1))){ +typedef struct __attribute__((packed, aligned(1))) { uint8_t slaveAddress; uint8_t numOfBytes; uint8_t regAddress; @@ -55,6 +56,7 @@ typedef enum { DLOOPBK_STR, EPKTGEN_STR, DPKTGEN_STR, + ALERTLOG_STR, MAX_STR } ocmw_token_t; @@ -85,14 +87,15 @@ extern int32_t ocmw_deinit_occli_comm(void); * * @return true if function succeeds, false otherwise */ -extern int32_t ocmw_recv_clicmd_from_occli(char* cmdstr, int32_t cmdlen); +extern int32_t ocmw_recv_clicmd_from_occli(char *cmdstr, int32_t cmdlen); /* * @param resp an input value (by pointer) * @param resplen an input value (by value) * * @return true if function succeeds, false otherwise */ -extern int32_t ocmw_send_clicmd_resp_to_occli(const char* resp, int32_t resplen); +extern int32_t ocmw_send_clicmd_resp_to_occli(const char *resp, + int32_t resplen); /* * @param cmdstr an input value (by pointer) * @param response an output value (by pointer) @@ -118,7 +121,7 @@ extern int32_t ocmw_deinit_occli_alert_comm(void); * * @return true if function succeeds, false otherwise */ -extern int32_t ocmw_send_alert_to_occli(const char* buf, int32_t buflen); +extern int32_t ocmw_send_alert_to_occli(const char *buf, int32_t buflen); extern char ocmw_retrieve_post_results_count(ocwarePostResults *psData); diff --git a/firmware/host/include/ocmw_schema.h b/firmware/host/include/ocmw_schema.h index 499bf5a44e..984ec91beb 100644 --- a/firmware/host/include/ocmw_schema.h +++ b/firmware/host/include/ocmw_schema.h @@ -1,45 +1,40 @@ /* OC Includes */ #include +#include #ifndef _OCMW_SCHEMA_H_ -#define _OCMW_SCHEMA_H_ +# define _OCMW_SCHEMA_H_ -#define OCMW_VALUE_TYPE_UINT8 1 -#define OCMW_VALUE_TYPE_INT8 2 -#define OCMW_VALUE_TYPE_UINT16 3 -#define OCMW_VALUE_TYPE_INT16 6 -#define OCMW_VALUE_TYPE_UINT32 11 -#define OCMW_VALUE_TYPE_ENUM 9 -#define OCMW_VALUE_TYPE_MFG 10 -#define OCMW_VALUE_TYPE_MODEL 4 -#define OCMW_VALUE_TYPE_GETMODEL 5 -#define OCMW_VALUE_TYPE_STRUCT 7 -#define OCMW_VALUE_TYPE_NWOP_STRUCT 12 -#define IRIDIUM_LASTERR_ERROR_CODE_OFFSET 2 -#define TWO_G_SIM_NET_OPTR_STATUS_OFFSET 2 -#define BUF_SIZE 50 -#define ENUM_BUF_SIZE 30 -#define OCMW_VALUE_TYPE_COMPLEX 3 +# define OCMW_VALUE_TYPE_UINT8 1 +# define OCMW_VALUE_TYPE_INT8 2 +# define OCMW_VALUE_TYPE_UINT16 3 +# define OCMW_VALUE_TYPE_INT16 6 +# define OCMW_VALUE_TYPE_UINT32 11 +# define OCMW_VALUE_TYPE_ENUM 9 +# define OCMW_VALUE_TYPE_MFG 10 +# define OCMW_VALUE_TYPE_MODEL 4 +# define OCMW_VALUE_TYPE_GETMODEL 5 +# define OCMW_VALUE_TYPE_STRUCT 7 +# define OCMW_VALUE_TYPE_NWOP_STRUCT 12 +# define IRIDIUM_LASTERR_ERROR_CODE_OFFSET 2 +# define TWO_G_SIM_NET_OPTR_STATUS_OFFSET 2 +# define BUF_SIZE 50 +# define ENUM_BUF_SIZE 30 +# define OCMW_VALUE_TYPE_COMPLEX 3 static const char *DATA_TYPE_MAP[] = { - [TYPE_NULL] = "NULL", - [TYPE_INT8] = "int8", - [TYPE_UINT8] = "uint8", - [TYPE_INT16] = "int16", - [TYPE_UINT16] = "uint16", - [TYPE_INT32] = "int32", - [TYPE_UINT32] = "uint32", - [TYPE_INT64] = "int64", - [TYPE_UINT64] = "uint64", - [TYPE_STR] = "string", - [TYPE_BOOL] = "bool", - [TYPE_ENUM] = "enum", + [TYPE_NULL] = "NULL", [TYPE_INT8] = "int8", + [TYPE_UINT8] = "uint8", [TYPE_INT16] = "int16", + [TYPE_UINT16] = "uint16", [TYPE_INT32] = "int32", + [TYPE_UINT32] = "uint32", [TYPE_INT64] = "int64", + [TYPE_UINT64] = "uint64", [TYPE_STR] = "string", + [TYPE_BOOL] = "bool", [TYPE_ENUM] = "enum", }; typedef enum ErrorSource { - ERR_RC_INTERNAL = 0, - ERR_SRC_CMS = 1, - ERR_SRC_CME = 2 + ERR_RC_INTERNAL = 0, + ERR_SRC_CMS = 1, + ERR_SRC_CME = 2 } Source; typedef enum OperatorStat { diff --git a/firmware/host/include/ocmw_socket_comm.h b/firmware/host/include/ocmw_socket_comm.h index 9d9ae003dc..93a9cecc5c 100644 --- a/firmware/host/include/ocmw_socket_comm.h +++ b/firmware/host/include/ocmw_socket_comm.h @@ -9,34 +9,33 @@ #ifndef _OCMW_SOCK_COMM_H_ #define _OCMW_SOCK_COMM_H_ -#define OCMW_SOCK_SERVER_IP ("127.0.0.1") -#define OCMW_SOCK_SERVER_PORT (5000) -#define OCMW_SOCK_SERVER_ALERT_PORT (6000) +#define OCMW_SOCK_SERVER_IP ("127.0.0.1") +#define OCMW_SOCK_SERVER_PORT (5000) +#define OCMW_SOCK_SERVER_ALERT_PORT (6000) -#define OCMW_SOCK_SERVER_CONN_COUNT (1) -#define OCMW_SOCK_SERVER_ALERT_CONN_COUNT (2) +#define OCMW_SOCK_SERVER_CONN_COUNT (1) +#define OCMW_SOCK_SERVER_ALERT_CONN_COUNT (2) -#define OCMW_SOCK_DOMAIN (AF_INET) -#define OCMW_SOCK_TYPE (SOCK_DGRAM) -#define OCMW_SOCK_PROTOCOL (IPPROTO_UDP) +#define OCMW_SOCK_DOMAIN (AF_INET) +#define OCMW_SOCK_TYPE (SOCK_DGRAM) +#define OCMW_SOCK_PROTOCOL (IPPROTO_UDP) -#define OCMW_SOCK_ALERT_SERVER_IP ("127.0.0.1") -#define OCMW_SOCK_ALERT_SERVER_PORT (6000) -#define OCMW_SOCK_ALERT_DOMAIN (AF_INET) -#define OCMW_SOCK_ALERT_TYPE (SOCK_DGRAM) -#define OCMW_SOCK_ALERT_PROTOCOL (IPPROTO_UDP) +#define OCMW_SOCK_ALERT_SERVER_IP ("127.0.0.1") +#define OCMW_SOCK_ALERT_SERVER_PORT (6000) +#define OCMW_SOCK_ALERT_DOMAIN (AF_INET) +#define OCMW_SOCK_ALERT_TYPE (SOCK_DGRAM) +#define OCMW_SOCK_ALERT_PROTOCOL (IPPROTO_UDP) -#define OCMW_ETH_SOCK_SERVER_IP ("192.168.1.2") -#define OCMW_ETH_SOCK_SERVER_PORT (1000) -#define OCMW_ETH_SOCK_DOMAIN (AF_INET) -#define OCMW_ETH_SOCK_TYPE (SOCK_STREAM) -#define OCMW_ETH_SOCK_PROTOCOL (IPPROTO_TCP) -#define OCMW_SOCKET_ERROR_SIZE 256 +#define OCMW_ETH_SOCK_SERVER_IP ("192.168.1.2") +#define OCMW_ETH_SOCK_SERVER_PORT (1000) +#define OCMW_ETH_SOCK_DOMAIN (AF_INET) +#define OCMW_ETH_SOCK_TYPE (SOCK_STREAM) +#define OCMW_ETH_SOCK_PROTOCOL (IPPROTO_TCP) +#define OCMW_SOCKET_ERROR_SIZE 256 - -#define OCMW_SOCK_STUB_SERVER_IP ("127.0.0.1") -#define OCMW_SOCK_STUB_SERVER_PORT (2000) -#define OCMW_SOCK_STUB_DOMAIN (AF_INET) -#define OCMW_SOCK_STUB_TYPE (SOCK_DGRAM) -#define OCMW_SOCK_STUB_PROTOCOL (IPPROTO_UDP) +#define OCMW_SOCK_STUB_SERVER_IP ("127.0.0.1") +#define OCMW_SOCK_STUB_SERVER_PORT (2000) +#define OCMW_SOCK_STUB_DOMAIN (AF_INET) +#define OCMW_SOCK_STUB_TYPE (SOCK_DGRAM) +#define OCMW_SOCK_STUB_PROTOCOL (IPPROTO_UDP) #endif /* _OCMW_SOCK_COMM_H_ */ diff --git a/firmware/host/include/ocmw_uart_comm.h b/firmware/host/include/ocmw_uart_comm.h index 435a61858b..e300797d6a 100644 --- a/firmware/host/include/ocmw_uart_comm.h +++ b/firmware/host/include/ocmw_uart_comm.h @@ -9,12 +9,12 @@ #ifndef _OCMW_UART_COMM_H_ #define _OCMW_UART_COMM_H_ -#ifdef INTERFACE_USB -#define ECTTY "sudo find /dev/ -iname \"ttyACM*\" | tr -cd [:digit:]" +#ifdef INTERFACE_USB +# define ECTTY "sudo find /dev/ -iname \"ttyACM*\" | tr -cd [:digit:]" #else -#define ECTTY "/dev/ttyS4" +# define ECTTY "/dev/ttyS4" #endif -#define OCMP_MSG_SIZE (64) +#define OCMP_MSG_SIZE (64) /* * @param msgstr an input value (by pointer) @@ -22,14 +22,15 @@ * * @return the function handler */ -typedef void - (*handle_msg_from_ec_t)(const unsigned char* msgstr, int32_t msgsize); +typedef void (*handle_msg_from_ec_t)(const unsigned char *msgstr, + int32_t msgsize); /* * @param msgstr an input value (by pointer) * @param msgsize an input value (by value) * */ -extern void ocmw_ec_uart_msg_hndlr(const unsigned char* msgstr, int32_t msgsize); +extern void ocmw_ec_uart_msg_hndlr(const unsigned char *msgstr, + int32_t msgsize); /* * Initialize the ocmw ec communication * @@ -48,7 +49,7 @@ extern int32_t ocmw_deinit_ec_comm(void); * * @return true if function succeeds, false otherwise */ -extern int32_t ocmw_send_uart_msg_to_ec(const uint8_t* msgstr, int32_t size); +extern int32_t ocmw_send_uart_msg_to_ec(const uint8_t *msgstr, int32_t size); /* * @param pathName an input value (by pointer) * diff --git a/firmware/host/include/ocware_stub_eth_comm.h b/firmware/host/include/ocware_stub_eth_comm.h old mode 100755 new mode 100644 index 9b80152d5a..a6045736dd --- a/firmware/host/include/ocware_stub_eth_comm.h +++ b/firmware/host/include/ocware_stub_eth_comm.h @@ -6,11 +6,11 @@ #include #include -#define OCMW_STUB_ETH_SOCK_DOMAIN (AF_INET) -#define OCMW_STUB_ETH_SOCK_TYPE (SOCK_DGRAM) -#define OCMW_STUB_ETH_SOCK_PROTOCOL (IPPROTO_UDP) -#define OCMW_STUB_ETH_SOCK_SERVER_PORT (2000) -#define OCMW_STUB_ETH_SOCK_SERVER_IP ("127.0.0.1") -#define OCWARE_STUB_ERR_STR_LEN (80) +#define OCMW_STUB_ETH_SOCK_DOMAIN (AF_INET) +#define OCMW_STUB_ETH_SOCK_TYPE (SOCK_DGRAM) +#define OCMW_STUB_ETH_SOCK_PROTOCOL (IPPROTO_UDP) +#define OCMW_STUB_ETH_SOCK_SERVER_PORT (2000) +#define OCMW_STUB_ETH_SOCK_SERVER_IP ("127.0.0.1") +#define OCWARE_STUB_ERR_STR_LEN (80) #endif /* _STUB_ETH_COMM_H_ */ diff --git a/firmware/host/include/ocware_stub_main_module.h b/firmware/host/include/ocware_stub_main_module.h old mode 100755 new mode 100644 index bbb94892fa..13c6309ef0 --- a/firmware/host/include/ocware_stub_main_module.h +++ b/firmware/host/include/ocware_stub_main_module.h @@ -18,49 +18,49 @@ #include #include -#define OC_EC_MSG_SIZE (64) -#define MAX_PAYLOAD_COUNT (OC_EC_MSG_SIZE - sizeof (OCMPHeader)) +#define OC_EC_MSG_SIZE (64) +#define MAX_PAYLOAD_COUNT (OC_EC_MSG_SIZE - sizeof(OCMPHeader)) /* Max parameters to be stored in database */ -#define MAX_NUMBER_PARAM 400 -#define MAX_POST_DEVICE 400 -#define MAX_I2C_COMP_NBR 1 -#define MAX_GPIO_COMP_NBR 1 -#define MAX_MDIO_COMP_NBR 1 +#define MAX_NUMBER_PARAM 400 +#define MAX_POST_DEVICE 400 +#define MAX_I2C_COMP_NBR 1 +#define MAX_GPIO_COMP_NBR 1 +#define MAX_MDIO_COMP_NBR 1 /* Default values in the database */ -#define DEFAULT_INT8 0x11 -#define DEFAULT_INT16 0x2222 -#define DEFAULT_INT32 0x33333333 -#define DEFAULT_INT64 0x4444444444444444 -#define DEFAULT_ENUM 0x05 -#define DEFAULT_STRING "stub" +#define DEFAULT_INT8 0x11 +#define DEFAULT_INT16 0x2222 +#define DEFAULT_INT32 0x33333333 +#define DEFAULT_INT64 0x4444444444444444 +#define DEFAULT_ENUM 0x05 +#define DEFAULT_STRING "stub" /* default values in the debug subsystem */ -#define I2C_SLAVE_ADDRESS 1 -#define I2C_NUM_BYTES 1 -#define I2C_REG_ADDRESS 1 -#define I2C_REG_VALUE 1 -#define GPIO_PIN_NBR 1 -#define GPIO_VALUE 1 +#define I2C_SLAVE_ADDRESS 1 +#define I2C_NUM_BYTES 1 +#define I2C_REG_ADDRESS 1 +#define I2C_REG_VALUE 1 +#define GPIO_PIN_NBR 1 +#define GPIO_VALUE 1 /* size of strings and enum dataypes in schema */ -#define SIZE_OF_TYPE_REGISTRATION 1 -#define SIZE_OF_NWOP_STRUCT 3 -#define SIZE_OF_LAST_ERROR 3 -#define SIZE_OF_TYPE_MFG 10 -#define SIZE_OF_TYPE_GETMODEL 5 -#define SIZE_OF_TYPE_MODEL 4 -#define SIZE_OF_NWOP_STRUCT 3 -#define SIZE_OF_LAST_ERROR 3 -#define SIZE_OF_TYPE_OCSERIAL_INFO 18 -#define SIZE_OF_TYPE_GBCBOARD_INFO 18 -#define SIZE_OF_TYPE_MACADDR 13 +#define SIZE_OF_TYPE_REGISTRATION 1 +#define SIZE_OF_NWOP_STRUCT 3 +#define SIZE_OF_LAST_ERROR 3 +#define SIZE_OF_TYPE_MFG 10 +#define SIZE_OF_TYPE_GETMODEL 5 +#define SIZE_OF_TYPE_MODEL 4 +#define SIZE_OF_NWOP_STRUCT 3 +#define SIZE_OF_LAST_ERROR 3 +#define SIZE_OF_TYPE_OCSERIAL_INFO 18 +#define SIZE_OF_TYPE_GBCBOARD_INFO 18 +#define SIZE_OF_TYPE_MACADDR 13 /* Masking related defines */ -#define MASK_MSB 0xFF00 -#define MASK_LSB 0xFF -#define SHIFT_NIBBLE 8 +#define MASK_MSB 0xFF00 +#define MASK_LSB 0xFF +#define SHIFT_NIBBLE 8 typedef struct { uint8_t subsystemId; @@ -73,7 +73,7 @@ typedef struct { void *data; } OCWareStubDatabase; -typedef struct{ +typedef struct { uint8_t SubsystemId; uint8_t DeviceNumber; ePostCode Status; @@ -111,11 +111,17 @@ typedef struct { uint8_t value; } OCWareDebugGPIOinfo; -typedef enum ocware_ret{ - STUB_FAILED = -1, - STUB_SUCCESS = 0 -} ocware_stub_ret; +typedef enum ocware_ret { STUB_FAILED = -1, STUB_SUCCESS = 0 } ocware_stub_ret; +typedef struct { + uint8_t subsystemId; + uint8_t componentId; + uint8_t msgtype; + uint16_t paramId; + uint8_t paramSize; + uint8_t datatype; + void *data; +} OCWareStubAlertData; extern int8_t debugGetCommand; extern int8_t debugSetCommand; @@ -142,7 +148,8 @@ extern ocware_stub_ret ocware_stub_parse_post_get_message(char *buffer); * @return STUB_SUCCESS - for success * STUB_FAILED - for failure ******************************************************************************/ -extern ocware_stub_ret ocware_stub_parse_command_message(char *buffer); +extern ocware_stub_ret ocware_stub_parse_command_message(char *buffer, + uint8_t *alertFlag); /****************************************************************************** * Function Name : ocware_stub_get_set_params @@ -173,7 +180,8 @@ extern ocware_stub_ret ocware_stub_init_database(void); * @return STUB_SUCCESS - for success * STUB_FAILED - for failure ******************************************************************************/ -extern ocware_stub_ret ocware_stub_send_msgframe_middleware(char **buffer, int32_t bufferlen); +extern ocware_stub_ret ocware_stub_send_msgframe_middleware(char **buffer, + int32_t bufferlen); /****************************************************************************** * Function Name : ocware_stub_init_ethernet_comm * Description : initialise the socket IPC @@ -201,7 +209,8 @@ extern ocware_stub_ret ocware_stub_deinit_ethernet_comm(); * @return STUB_SUCCESS - for success * STUB_FAILED - for failure ******************************************************************************/ -extern ocware_stub_ret ocware_stub_recv_msgfrom_middleware(char **buffer, int32_t bufferlen); +extern ocware_stub_ret ocware_stub_recv_msgfrom_middleware(char **buffer, + int32_t bufferlen); /****************************************************************************** * Function Name : ocware_stub_get_database * Description : Function to retrieve data from the DB @@ -234,9 +243,9 @@ extern ocware_stub_ret ocware_stub_set_database(OCMPMessage *msgFrameData); * @return STUB_SUCCESS - for success * STUB_FAILED - for failure ******************************************************************************/ -extern ocware_stub_ret ocware_stub_get_post_result_paramvalue_from_table( - OCMPMessage *msgFrameData, - int8_t *payload); +extern ocware_stub_ret +ocware_stub_get_post_result_paramvalue_from_table(OCMPMessage *msgFrameData, + int8_t *payload); /****************************************************************************** * Function Name : ocware_stub_parse_debug_actiontype * Description : Convert debug actiontype into the SET/GET @@ -247,7 +256,8 @@ extern ocware_stub_ret ocware_stub_get_post_result_paramvalue_from_table( * @return STUB_SUCCESS - for success * STUB_FAILED - for failure ******************************************************************************/ -extern ocware_stub_ret ocware_stub_parse_debug_actiontype(OCMPMessage *msgFrameData); +extern ocware_stub_ret +ocware_stub_parse_debug_actiontype(OCMPMessage *msgFrameData); /****************************************************************************** * Function Name : ocware_stub_get_post_database * Description : extract device number and status from the post database @@ -262,5 +272,53 @@ extern ocware_stub_ret ocware_stub_parse_debug_actiontype(OCMPMessage *msgFrameD ******************************************************************************/ extern ocware_stub_ret ocware_stub_get_post_database(OCMPMessage *msgFrameData, char *payload); +/****************************************************************************** + * Function Name : ocware_stub_parse_alert_get_message + * Description : Parse alert messages from MW + * + * @param buffer - output pointer to the message from MW + * index - index for record + * + * @return STUB_SUCCESS - for success + * STUB_FAILED - for failure + ******************************************************************************/ +extern ocware_stub_ret ocware_stub_parse_alert_get_message(char *buffer, + int8_t index); +/****************************************************************************** + * Function Name : ocware_stub_get_alert_database + * Description : extract alert data from lookup table + * + * @param msgFrameData - output pointer to the OCMPheader field of the message + * from MW (by reference) + * @param payload - output pointer to the payload field of the message from MW + * + * @return STUB_SUCCESS - for success + * STUB_FAILED - for failure + ******************************************************************************/ +extern ocware_stub_ret ocware_stub_get_alert_database(OCMPMessage *msgFrameData, + char *payload, + int8_t index); +/****************************************************************************** + * Function Name : ocware_stub_parse_command_from_schema + * Description : parse command from schema + * + * @param msgFrameData - pointer to the OCMPheader field of the message + * from MW (by reference) + * + * @return tempAlertFlag + ******************************************************************************/ +extern uint8_t ocware_stub_parse_command_from_schema(OCMPMessage *msgFrameData); +/****************************************************************************** + * Function Name : ocware_stub_frame_alert_msgframe + * Description : extract alert data from based on subsystem + * + * @param msgFrameData - output pointer to the OCMPheader field of the message + * from MW (by reference) + * @param payload - output pointer to the payload field of the message from MW + * + * @return STUB_SUCCESS - for success + * STUB_FAILED - for failure + ******************************************************************************/ +extern ocware_stub_ret ocware_stub_frame_alert_msgframe(char *buffer); #endif /* __OCMW_STUB_H__ */ diff --git a/firmware/host/include/ocwdg_daemon.h b/firmware/host/include/ocwdg_daemon.h index fbc1c17cbe..06712c05af 100644 --- a/firmware/host/include/ocwdg_daemon.h +++ b/firmware/host/include/ocwdg_daemon.h @@ -25,6 +25,6 @@ extern int32_t ocwdg_init(void); * @param pthreadData an input value (by pointer) * */ -extern void * ocwdg_thread_comm_with_ec(void *pthreadData); +extern void *ocwdg_thread_comm_with_ec(void *pthreadData); #endif /* _OCWGD_DAEMON_H_ */ diff --git a/firmware/host/include/postframe.h b/firmware/host/include/postframe.h index c193a798ba..25c0215743 100644 --- a/firmware/host/include/postframe.h +++ b/firmware/host/include/postframe.h @@ -15,9 +15,9 @@ #include #include -#define POST_MAIN_PAYLOAD_SIZE 3 -#define POST_MAIN_PAYLOAD_SUBSYSTEM_OFFSET 0 -#define POST_MAIN_PAYLOAD_DEVSN_OFFSET 1 -#define POST_MAIN_PAYLOAD_STATUS_OFFSET 2 +#define POST_MAIN_PAYLOAD_SIZE 3 +#define POST_MAIN_PAYLOAD_SUBSYSTEM_OFFSET 0 +#define POST_MAIN_PAYLOAD_DEVSN_OFFSET 1 +#define POST_MAIN_PAYLOAD_STATUS_OFFSET 2 #endif /* _POST_H_ */ diff --git a/firmware/host/include/util.h b/firmware/host/include/util.h index 0df709067d..729721d353 100644 --- a/firmware/host/include/util.h +++ b/firmware/host/include/util.h @@ -14,6 +14,6 @@ * @param buflen an input value (by value) * */ -extern void hexdisp(const unsigned char* buf, int buflen); +extern void hexdisp(const unsigned char *buf, int buflen); #endif /* _UTIL_H_ */ diff --git a/firmware/host/log/logFileMW.txt b/firmware/host/log/logFileMW.txt new file mode 100644 index 0000000000..bc24b274da --- /dev/null +++ b/firmware/host/log/logFileMW.txt @@ -0,0 +1,35940 @@ +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT ACTIVE 0 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.speed ACTIVE 17 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.speed ACTIVE 17 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.speed ACTIVE 17 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.speed ACTIVE 17 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.speed ACTIVE 17 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.BAW ACTIVE 17 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.AAW ACTIVE 17 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.ACW ACTIVE 17 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.BAW ACTIVE 17 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.AAW ACTIVE 17 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.ACW ACTIVE 17 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : gpp.msata.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Call State Changed ACTIVE 0 + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Incoming SMS ststub + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + + Error: 'recvfrom' [-1-Resource temporarily unavailable] +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:517, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + + Error: 'recvfrom' [-1-Resource temporarily unavailable] +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts + ocmw_frame_errorString(): Sprintf error +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 0 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 682 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 680 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 677 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 675 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 670 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 667 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 665 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 662 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 660 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 657 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 655 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 652 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 650 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 647 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 645 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 642 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 640 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 637 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 635 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 632 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 630 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 627 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 625 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 622 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 620 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 0 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 20 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 20 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 60 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37112 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15864 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15920 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE40928 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15864 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15920 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE40928 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15864 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE21168 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE40928 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15864 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE21168 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE40928 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15864 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15920 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE40928 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15864 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15920 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE40928 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15864 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15920 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE40928 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15864 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15920 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE40928 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 680 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 675 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 670 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 665 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 665 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 662 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 660 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 657 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 655 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 652 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 650 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 645 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 645 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 642 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 640 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 637 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 635 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 632 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 630 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 627 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 625 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 622 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 620 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15864 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15920 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE40928 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15864 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15920 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE40928 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 20 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 20 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 20 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37112 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15864 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15920 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE40928 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15864 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15920 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE40928 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15864 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE21168 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE40928 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15864 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE21168 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE40928 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15864 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15920 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE40928 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15864 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15920 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE40928 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15864 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15920 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE40928 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15864 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15920 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE40928 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 680 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 675 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 670 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 665 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 665 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 662 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 660 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 657 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 655 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 652 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 650 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 645 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 645 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 642 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 640 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 637 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 635 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 632 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 630 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 627 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 625 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 622 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 620 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15864 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15920 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE40928 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15864 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15920 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE40928 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 20 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15864 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15920 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE40928 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37800 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 0 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 30 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 0 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + + Error: 'recvfrom' [-1-Resource temporarily unavailable] +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts + Error: 'recvfrom' [-1-Resource temporarily unavailable] +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts + Error: 'recvfrom' [-1-Resource temporarily unavailable] +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 0 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts + Error: 'recvfrom' [-1-Resource temporarily unavailable] + Error: 'recvfrom' [-1-Resource temporarily unavailable] +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ACTIVE + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ACTIVE + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ACTIVE + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ACTIVE + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ACTIVE + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ACTIVE + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ACTIVE + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ACTIVE + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ACTIVE + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ACTIVE + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ACTIVE + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ACTIVE + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ACTIVE + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ACTIVE + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ACTIVE + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ACTIVE + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ACTIVE + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ACTIVE + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ACTIVE + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts + Error: 'recvfrom' [-1-Resource temporarily unavailable] +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ACTIVE + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ACTIVE + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ACTIVE + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ACTIVE + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ACTIVE + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ACTIVE + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ACTIVE + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ACTIVE + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 0 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 998 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 2000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 2000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 2000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 2000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + + Error: 'recvfrom' [-1-Resource temporarily unavailable] +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + + Error: 'recvfrom' [-1-Resource temporarily unavailable] +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts + Error: 'recvfrom' [-1-Resource temporarily unavailable] +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaph[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + + Error: 'recvfrom' [-1-Resource temporarily unavailable] +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + + Error: 'recvfrom' [-1-Resource temporarily unavailable] +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + + Error: 'recvfrom' [-1-Resource temporarily unavailable] +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + + Error: 'recvfrom' [-1-Resource temporarily unavailable] +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts + Error: 'recvfrom' [-1-Resource temporarily unavailable] +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 608 + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + + bind error [98-Address already in use] + init_ocmw_comm() failed. + bind error [98-Address already in use] + init_ocmw_comm() failed. + bind error [98-Address already in use] + init_ocmw_comm() failed. +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts + Error: 'recvfrom' [-1-Resource temporarily unavailable] +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + + Error: 'recvfrom' [-1-Resource temporarily unavailable] +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent 470 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 0 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent 470 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 0 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 0 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 0 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 25 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 75 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent CLEAR 1030 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent CLEAR 1030 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent CLEAR 1030 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 9432 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 9432 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 9432 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 9432 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 25 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 75 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 25 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 75 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 25 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 75 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 25 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 75 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 25 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 75 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 25 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 75 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 25 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 75 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 25 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 75 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 25 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 75 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 25 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 75 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 25 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 75 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 25 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 75 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 75 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 75 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 25 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 75 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 25 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 75 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 25 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 75 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 25 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 75 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 25 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 75 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 25 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 75 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 25 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 25 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 75 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 25 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 75 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 25 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 75 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 25 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 75 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 25 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 75 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 25 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 75 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 25 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 75 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 25 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 75 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 25 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 75 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 25 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 75 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts + Error: 'recvfrom' [-1-Resource temporarily unavailable] +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + + Error: 'recvfrom' [-1-Resource temporarily unavailable] + Error: 'recvfrom' [-1-Resource temporarily unavailable] +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 1030 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 1030 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts + Error: 'recvfrom' [-1-Resource temporarily unavailable] +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts + Error: 'recvfrom' [-1-Resource temporarily unavailable] + Error: 'recvfrom' [-1-Resource temporarily unavailable] +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + + Error: 'recvfrom' [-1-Resource temporarily unavailable] +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 1030 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 1030 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 1030 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 1030 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 1030 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 1030 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 1030 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 1030 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 1030 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 0 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + + ocmw_msg_packetize_and_send failed + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 0 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + + ocmw_msg_packetize_and_send failed + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 0 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 0 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 0 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 35 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 75 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 35 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 75 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 35 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 75 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 35 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 75 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 35 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 75 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 75 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 75 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 35 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 75 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 35 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 75 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 35 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 75 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 35 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 75 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 35 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 0 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 0 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 3000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 3000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 3000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 3000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 3000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 0 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 2000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 2000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 2000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 2000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 2000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 0 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 15 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 5 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + + ocmw_frame_errorString(): Sprintf error +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 0 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 0 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 0 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 80 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 0 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 40 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 1030 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 1030 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + + Error: 'recvfrom' [-1-Resource temporarily unavailable] +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 1030 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 1030 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts + Error: 'recvfrom' [-1-Resource temporarily unavailable] +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 1030 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 1030 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 1030 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts + Error: 'recvfrom' [-1-Resource temporarily unavailable] +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 1030 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 1030 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 1030 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 1030 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 1030 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 1030 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 1030 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE21096 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 1030 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 1030 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 35 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE21096 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE37232 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 25 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ACTIVE + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ACTIVE + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts + Error: 'recvfrom' [-1-Resource temporarily unavailable] +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ACTIVE + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ACTIVE + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + + Error: 'recvfrom' [-1-Resource temporarily unavailable] +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent CLEAR 1030 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent CLEAR 1030 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent CLEAR 1030 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent CLEAR 1030 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent CLEAR 1030 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ACTIVE + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ACTIVE + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent CLEAR 1030 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent CLEAR 1030 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent CLEAR 1030 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent CLEAR 1030 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent CLEAR 1030 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent 1030 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 0 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 0 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 30 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 30 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 75 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 30 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 30 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 75 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 30 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 30 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 75 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ACTIVE + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE4294943488 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE4294943648 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE4294943648 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE4294943648 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE4294943624 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + + Error: 'recvfrom' [-1-Resource temporarily unavailable] +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 75 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 0 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 0 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 30 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.ACW ACTIVE 30 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 80 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 30 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.ACW ACTIVE 30 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 80 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 30 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 30 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 75 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + + bind error [98-Address already in use] + init_ocmw_comm() failed. + bind error [98-Address already in use] + init_ocmw_comm() failed. + bind error [98-Address already in use] + init_ocmw_comm() failed. + bind error [98-Address already in use] + init_ocmw_comm() failed. + bind error [98-Address already in use] + init_ocmw_comm() failed. + Error: 'recvfrom' [-1-Interrupted system call] +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 30 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 30 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 75 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.BAW CLEAR 236 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 30 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 30 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 75 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 30 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 30 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 75 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.BAW CLEAR 236 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 30 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 0 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 75 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 30 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 0 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 75 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 30 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 0 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 40 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 0 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : -20 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 0 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 40 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 0 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : -20 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 0 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 40 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 0 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : -20 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 0 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 30 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.ACW ACTIVE 0 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 80 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 30 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.ACW ACTIVE 0 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 80 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 30 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.ACW ACTIVE 0 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 80 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ACTIVE + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ACTIVE + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent CLEAR 1030 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent CLEAR 1030 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent CLEAR 1030 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent CLEAR 1030 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent CLEAR 1030 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE15792 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE15848 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ACTIVE + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ACTIVE + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE4294943488 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE4294943488 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE4294943648 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE4294948844 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.ACW ACTIVE 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.ACW ACTIVE 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.BAW CLEAR 40 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.BAW CLEAR 236 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 30 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.BAW CLEAR 236 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent CLEAR 1030 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + + bind error [98-Address already in use] + init_occli_comm() failed. + bind error [98-Address already in use] + init_occli_comm() failed. + bind error [98-Address already in use] + init_occli_comm() failed. + bind error [98-Address already in use] + init_occli_comm() failed. + bind error [98-Address already in use] + init_occli_comm() failed. + bind error [98-Address already in use] + init_occli_comm() failed. + Error: 'recvfrom' [-1-Resource temporarily unavailable] + bind error [98-Address already in use] + init_occli_comm() failed. + bind error [98-Address already in use] + init_occli_comm() failed. + bind error [98-Address already in use] + init_occli_comm() failed. + bind error [98-Address already in use] + init_occli_comm() failed. + bind error [98-Address already in use] + init_occli_comm() failed. + bind error [98-Address already in use] + init_occli_comm() failed. + bind error [98-Address already in use] + init_occli_comm() failed. +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE34672 + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent CLEAR 1030 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent CLEAR 1030 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent CLEAR 1030 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent CLEAR 1528 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent CLEAR 1528 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE33416 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent CLEAR 1030 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent CLEAR 1030 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent CLEAR 1528 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 470 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent CLEAR 1528 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 30 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 30 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 75 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 30 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 30 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 30 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 30 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 30 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 75 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 30 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 30 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 75 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 30 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 30 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 75 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 30 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + + ocmw_msg_packetize_and_send failed + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 75 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 30 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 30 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE43664 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent CLEAR 1030 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent CLEAR 1030 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + + Error: 'recvfrom' [-1-Resource temporarily unavailable] +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 30 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 30 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 75 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW CLEAR 75 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 30 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 30 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 75 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW CLEAR 75 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 30 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 30 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 75 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW CLEAR 75 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 40 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.BAW CLEAR 40 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : -20 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.BAW ACTIVE 236 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 75 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ACTIVE + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ACTIVE + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 232 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ACTIVE + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ACTIVE + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + Error in reading alerts +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 500 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 470 + + Error: 'sendto' [90-Message too long] +[ocmw_schema.c:536, ocmw_handle_alert_msg()]:Alert send error + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + +[ocmw_core.c:357, ocmw_msg_packetize_and_send()]:Paramvalue is of integer type : 1000 + +[ocmw_core.c:821, ocmw_sem_wait()]:sem_timedwait() timed out + +[ocmw_core.c:825, ocmw_sem_wait()]:Message is not received from EC: releasing the lock + +[ocmw_core.c:546, ocmw_msg_packetize_and_send()]:Message is not received from EC: releasing the lock + + ocmw_msg_packetize_and_send failed + + ocmw_init_ec_comm() failed. +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.msata.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Call State Changed ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Incoming SMS ststub + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT 0 + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent 8738 + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + + ocmw_init_ec_comm() failed. +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT 0 + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.msata.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Call State Changed ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Incoming SMS ststub + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.msata.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Call State Changed ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Incoming SMS ststub + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.msata.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Call State Changed ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Incoming SMS ststub + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.msata.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Call State Changed ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Incoming SMS ststub + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.msata.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Call State Changed ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Incoming SMS ststub + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.msata.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Call State Changed ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Incoming SMS ststub + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.msata.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Call State Changed ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Incoming SMS ststub + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.msata.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Call State Changed ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Incoming SMS ststub + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.msata.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Call State Changed ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Incoming SMS ststub + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.msata.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Call State Changed ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Incoming SMS ststub + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.msata.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Call State Changed ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Incoming SMS ststub + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT 0 + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT 0 + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT 0 + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT 0 + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT 0 + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT 0 + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT 0 + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT 0 + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT 0 + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT 0 + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.msata.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Call State Changed ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Incoming SMS ststub + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent 8738 + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT 0 + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT 0 + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT 0 + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT 0 + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT 0 + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent 8738 + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent 8738 + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent 8738 + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent 8738 + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent 8738 + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent 8738 + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent 8738 + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent 8738 + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT 0 + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT 0 + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT 0 + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT 0 + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT 0 + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT 0 + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT 0 + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT 0 + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT 0 + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT 0 + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT 0 + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT 0 + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT 0 + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT 0 + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT 0 + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT 0 + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT 0 + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT 0 + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT 0 + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT 0 + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT 0 + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT 0 + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT 0 + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT 0 + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT 0 + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT 0 + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT 0 + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT 0 + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.msata.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Call State Changed ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Incoming SMS ststub + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.msata.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Call State Changed ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Incoming SMS ststub + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.msata.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Call State Changed ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Incoming SMS ststub + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.msata.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Call State Changed ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Incoming SMS ststub + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.msata.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Call State Changed ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Incoming SMS ststub + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.msata.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Call State Changed ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Incoming SMS ststub + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.msata.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Call State Changed ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Incoming SMS ststub + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.msata.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Call State Changed ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Incoming SMS ststub + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.msata.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Call State Changed ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Incoming SMS ststub + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.msata.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Call State Changed ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Incoming SMS ststub + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.msata.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Call State Changed ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Incoming SMS ststub + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.msata.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Call State Changed ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Incoming SMS ststub + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.msata.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Call State Changed ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Incoming SMS ststub + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.msata.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Call State Changed ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Incoming SMS ststub + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.msata.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Call State Changed ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Incoming SMS ststub + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.msata.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Call State Changed ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Incoming SMS ststub + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.msata.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Call State Changed ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Incoming SMS ststub + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.msata.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Call State Changed ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Incoming SMS ststub + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.msata.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Call State Changed ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Incoming SMS ststub + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.msata.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Call State Changed ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Incoming SMS ststub + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.msata.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Call State Changed ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Incoming SMS ststub + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.msata.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Call State Changed ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Incoming SMS ststub + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.msata.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Call State Changed ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Incoming SMS ststub + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.msata.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Call State Changed ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Incoming SMS ststub + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.msata.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Call State Changed ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Incoming SMS ststub + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.msata.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Call State Changed ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Incoming SMS ststub + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT 0 + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT 0 + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT 0 + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT 0 + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT 0 + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT 0 + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + + Error: 'recvfrom' [-1-Resource temporarily unavailable] +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + + Error: 'recvfrom' [-1-Resource temporarily unavailable] +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.msata.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Call State Changed ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Incoming SMS ststub + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.msata.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Call State Changed ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Incoming SMS ststub + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.msata.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Call State Changed ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Incoming SMS ststub + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.msata.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Call State Changed ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Incoming SMS ststub + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.msata.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Call State Changed ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Incoming SMS ststub + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.msata.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Call State Changed ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Incoming SMS ststub + + Error: 'recvfrom' [-1-Resource temporarily unavailable] +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + + Error: 'recvfrom' [-1-Resource temporarily unavailable] + Error: 'recv' [-1-Unknown error -1] +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + + Error: 'recvfrom' [-1-Resource temporarily unavailable] +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.msata.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Call State Changed ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Incoming SMS ststub + + Error: 'recvfrom' [-1-Resource temporarily unavailable] + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.msata.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Call State Changed ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Incoming SMS ststub + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.msata.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Call State Changed ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Incoming SMS ststub + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.msata.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Call State Changed ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Incoming SMS ststub + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.msata.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Call State Changed ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Incoming SMS ststub + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.msata.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Call State Changed ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Incoming SMS ststub + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.msata.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Call State Changed ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Incoming SMS ststub + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.msata.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Call State Changed ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Incoming SMS ststub + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.msata.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Call State Changed ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Incoming SMS ststub + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.msata.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Call State Changed ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Incoming SMS ststub + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT 0 + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT 0 + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT 0 + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT 0 + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT 0 + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent 8738 + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent 8738 + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent 8738 + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent 8738 + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.HB_R_PWR 0 + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.jabber_det 17 + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.ACW 17 + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:365, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.speed ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : gpp.msata.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Call State Changed ACTIVE 0 + +[ocmw_schema.c:520, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Incoming SMS ststub + + ocmw_send_msg() failed + +[ocmw_core.c:556, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:361, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT ACTIVE 0 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.speed ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.speed ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.speed ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.speed ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.speed ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.BAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.AAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.ACW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.BAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.AAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.ACW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : gpp.msata.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Call State Changed ACTIVE 0 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Incoming SMS ststub + + ocmw_send_msg() failed + +[ocmw_core.c:541, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:361, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT 0 + + ocmw_send_msg() failed + +[ocmw_core.c:541, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:361, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent 8738 + + ocmw_send_msg() failed + +[ocmw_core.c:541, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:361, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.BAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.AAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.ACW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.BAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.AAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.ACW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : gpp.msata.alerts.current_sensor1.Overcurrent 8738 + + ocmw_send_msg() failed + +[ocmw_core.c:541, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:555, ocmw_thread_uartmsgparser()]:Uart task created + +[ocmw_core.c:361, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT ACTIVE 0 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.speed ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.speed ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.speed ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.speed ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.speed ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.BAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.AAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.ACW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.BAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.AAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.ACW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : gpp.msata.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Call State Changed ACTIVE 0 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Incoming SMS ststub + + ocmw_send_msg() failed + +[ocmw_core.c:541, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:361, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT ACTIVE 0 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.speed ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.speed ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.speed ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.speed ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.speed ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.BAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.AAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.ACW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.BAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.AAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.ACW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : gpp.msata.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Call State Changed ACTIVE 0 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Incoming SMS ststub + + ocmw_send_msg() failed + +[ocmw_core.c:541, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:361, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent 8738 + + ocmw_send_msg() failed + +[ocmw_core.c:541, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:361, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.BAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.AAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.ACW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.BAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.AAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.ACW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : gpp.msata.alerts.current_sensor1.Overcurrent 8738 + + ocmw_send_msg() failed + +[ocmw_core.c:541, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:555, ocmw_thread_uartmsgparser()]:Uart task created + +[ocmw_core.c:361, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT ACTIVE 0 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.speed ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.speed ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.speed ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.speed ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.speed ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.BAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.AAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.ACW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.BAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.AAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.ACW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : gpp.msata.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : sdr.comp_all.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : sdr.fpga.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : sync.sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Call State Changed ACTIVE 0 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : testmodule.2gsim.alerts.Incoming SMS ststub + + ocmw_send_msg() failed + +[ocmw_core.c:541, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:361, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.leadacid_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.leadacid.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVL ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BVH ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.BCL ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.IVL ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.ICH ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.lion.alerts.battery.DTH ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.NoAlert ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerEnable ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.PowerGood ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DiconnectAlert ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.DetectionAlert ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.ClassAlert ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TCUTAler ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.TStartAlert ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.pse.alerts.SupplyAlert ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.INCOMPATIBLE ACTIVE 0 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.DISCONNECT ACTIVE 0 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : power.pd.alerts.CONNECT 0 + + ocmw_send_msg() failed + +[ocmw_core.c:541, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:361, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : bms.ec.alerts.current_sensor2.Overcurrent 8738 + + ocmw_send_msg() failed + +[ocmw_core.c:541, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:361, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : hci.led.alerts.temp_sensor1.ACW 17 + + ocmw_send_msg() failed + +[ocmw_core.c:541, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:361, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : rffe.ch1_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : rffe.ch2_sensor.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : rffe.ch1_fe.alerts.watchdog.HB_R_PWR ACTIVE 0 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.LB_R_PWR ACTIVE 0 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : rffe.ch2_fe.alerts.watchdog.HB_R_PWR 0 + + ocmw_send_msg() failed + +[ocmw_core.c:541, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:361, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.speed ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port0.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.speed ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port1.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.speed ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port2.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.speed ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port3.alerts.jabber_det ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.speed ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.duplex ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.autoneg_complete ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.crossover_det ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.energy_det ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.polarity_change ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : ethernet.port4.alerts.jabber_det 17 + + ocmw_send_msg() failed + +[ocmw_core.c:541, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + +[ocmw_core.c:361, ocmw_msg_packetize_and_send()]:Paramvalue is of string type : | + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.BAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.AAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor1.ACW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.BAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.AAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor2.ACW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.BAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.AAW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.temp_sensor3.ACW ACTIVE 17 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : gpp.ap.alerts.current_sensor1.Overcurrent ACTIVE 8738 + +[ocmw_schema.c:515, ocmw_handle_alert_msg()]:Alert : gpp.msata.alerts.current_sensor1.Overcurrent 8738 + + ocmw_send_msg() failed + +[ocmw_core.c:541, ocmw_msg_packetize_and_send()]: + Semaphore released : ocmw_msg_packetize_and_send() + diff --git a/firmware/host/log/logFileOccli.txt b/firmware/host/log/logFileOccli.txt new file mode 100644 index 0000000000..5043185f68 --- /dev/null +++ b/firmware/host/log/logFileOccli.txt @@ -0,0 +1,23 @@ + Error: 'recvfrom' [-1-Resource temporarily unavailable] + Error: 'recvfrom' [-1-Resource temporarily unavailable] + Error: 'recvfrom' [-1-Resource temporarily unavailable] + Error: 'recvfrom' [-1-Resource temporarily unavailable] + Error: 'recvfrom' [-1-Resource temporarily unavailable] + Error: 'recvfrom' [-1-Resource temporarily unavailable] + Error: 'recvfrom' [-1-Resource temporarily unavailable] + Error: 'recvfrom' [-1-Resource temporarily unavailable] + Error: 'recvfrom' [-1-Resource temporarily unavailable] + Error: 'recvfrom' [-1-Resource temporarily unavailable] + Error: 'recvfrom' [-1-Resource temporarily unavailable] + Error: 'recvfrom' [-1-Resource temporarily unavailable] + Error: 'recvfrom' [-1-Resource temporarily unavailable] + Error: 'recvfrom' [-1-Resource temporarily unavailable] + Error: 'recvfrom' [-1-Resource temporarily unavailable] + Error: 'recvfrom' [-1-Resource temporarily unavailable] + Error: 'recvfrom' [-1-Resource temporarily unavailable] + Error: 'recvfrom' [-1-Resource temporarily unavailable] + Error: 'recvfrom' [-1-Resource temporarily unavailable] + Error: 'recvfrom' [-1-Resource temporarily unavailable] + Error: 'recvfrom' [-1-Resource temporarily unavailable] + Error: 'recvfrom' [-1-Resource temporarily unavailable] + Error: 'recvfrom' [-1-Resource temporarily unavailable] diff --git a/firmware/host/occli/occli_helpMenu.c b/firmware/host/occli/occli_helpMenu.c index 3a98ba893e..0d0ab45fa1 100644 --- a/firmware/host/occli/occli_helpMenu.c +++ b/firmware/host/occli/occli_helpMenu.c @@ -12,7 +12,7 @@ void occli_print_opencelluar() { printf("\nHELP Usage:\n\t\"subsystem --help\"" - " OR \"subsystem.component --help\""); + " OR \"subsystem.component --help\""); printf("\nEXIT:\n\t\"quit\""); printf("\nDisplay:\n\t\"Press Double TAB\""); @@ -27,7 +27,8 @@ void occli_print_opencelluar() * Output(s) : index, helpMenuArray ***************************************************************************/ int8_t occli_fill_data_from_param(const Parameter *param, - helpMenu *helpMenuArray[], int32_t *index, char *helpMsgType) + helpMenu *helpMenuArray[], int32_t *index, + char *helpMsgType) { int32_t helpIndex = *index; @@ -37,17 +38,17 @@ int8_t occli_fill_data_from_param(const Parameter *param, } if (param && param->name) { - strncpy(helpMenuArray[helpIndex]->msgType, - helpMsgType,strlen(helpMsgType)); + strncpy(helpMenuArray[helpIndex]->msgType, helpMsgType, + strlen(helpMsgType)); if (strcmp(helpMsgType, "config") == 0) { - strncpy(helpMenuArray[helpIndex]->actionType, - "get/set", strlen("get/set")); + strncpy(helpMenuArray[helpIndex]->actionType, "get/set", + strlen("get/set")); } else { strncpy(helpMenuArray[helpIndex]->actionType, "get", strlen("get")); } do { - strncpy(helpMenuArray[helpIndex]->parameter, - param->name, strlen(param->name)); + strncpy(helpMenuArray[helpIndex]->parameter, param->name, + strlen(param->name)); param += 1; helpIndex++; } while (param && param->name); @@ -63,8 +64,8 @@ int8_t occli_fill_data_from_param(const Parameter *param, * Output(s) : index, helpMenuArray ***************************************************************************/ int8_t occli_fill_data_from_command(const Command *command, - helpMenu *helpMenuArray[], int32_t *index, - char *subSysComp) + helpMenu *helpMenuArray[], int32_t *index, + char *subSysComp) { int32_t helpIndex = *index; @@ -74,44 +75,44 @@ int8_t occli_fill_data_from_command(const Command *command, } if (command && command->name) { - strncpy(helpMenuArray[helpIndex]->msgType, - "command", strlen("command")); + strncpy(helpMenuArray[helpIndex]->msgType, "command", + strlen("command")); while (command && command->name) { - strncpy(helpMenuArray[helpIndex]->actionType, - command->name, strlen(command->name)); + strncpy(helpMenuArray[helpIndex]->actionType, command->name, + strlen(command->name)); if (strncmp(subSysComp, "debug", strlen("debug")) == 0) { if (strstr(subSysComp, "I2C")) { if (strcmp(command->name, "get") == 0) { strcpy(helpMenuArray[helpIndex++]->arguments, - "Slave Address(Decimal)"); + "Slave Address(Decimal)"); strcpy(helpMenuArray[helpIndex++]->arguments, - "Number of Bytes(1/2)"); + "Number of Bytes(1/2)"); strcpy(helpMenuArray[helpIndex++]->arguments, - "Register Address(Decimal)"); + "Register Address(Decimal)"); } else { strcpy(helpMenuArray[helpIndex++]->arguments, - "Slave Address(Decimal)"); + "Slave Address(Decimal)"); strcpy(helpMenuArray[helpIndex++]->arguments, - "Number of Bytes(1/2)"); + "Number of Bytes(1/2)"); strcpy(helpMenuArray[helpIndex++]->arguments, - "Register Address(Decimal)"); + "Register Address(Decimal)"); strcpy(helpMenuArray[helpIndex]->arguments, - "Register Data(Decimal)"); + "Register Data(Decimal)"); } } else { if (strcmp(command->name, "get") == 0) { strcpy(helpMenuArray[helpIndex++]->arguments, - "Pin Number"); + "Pin Number"); } else { strcpy(helpMenuArray[helpIndex++]->arguments, - "Pin Number"); + "Pin Number"); strcpy(helpMenuArray[helpIndex]->arguments, - "Value(0/1)"); + "Value(0/1)"); } } } else if ((strncmp(subSysComp, "hci", strlen("hci")) == 0) && - (strcmp(command->name, "set") == 0)) { + (strcmp(command->name, "set") == 0)) { strcpy(helpMenuArray[helpIndex++]->arguments, "Off/Red/Green"); } if (strcmp(command->name, "send") == 0) { @@ -135,9 +136,8 @@ int8_t occli_fill_data_from_command(const Command *command, * Input(s) : post, index * Output(s) : index, helpMenuArray ***************************************************************************/ -int8_t occli_fill_data_from_post(const Post *post, - helpMenu *helpMenuArray[], int32_t *index, - char *subSysComp) +int8_t occli_fill_data_from_post(const Post *post, helpMenu *helpMenuArray[], + int32_t *index, char *subSysComp) { int32_t helpIndex = *index; @@ -146,12 +146,11 @@ int8_t occli_fill_data_from_post(const Post *post, return FAILED; } - if (post && post->name) { - strncpy(helpMenuArray[helpIndex]->msgType, - "post", strlen("post")); + if (post && post->name) { + strncpy(helpMenuArray[helpIndex]->msgType, "post", strlen("post")); while (post && post->name) { - strncpy(helpMenuArray[helpIndex]->actionType, - post->name, strlen(post->name)); + strncpy(helpMenuArray[helpIndex]->actionType, post->name, + strlen(post->name)); post += 1; helpIndex++; } @@ -168,7 +167,8 @@ int8_t occli_fill_data_from_post(const Post *post, * Output(s) : helpMenuArray, index ***************************************************************************/ int8_t occli_fill_data_from_driver(const Driver *devDriver, - helpMenu *helpMenuArray[], int32_t *index, char *subSysComp) + helpMenu *helpMenuArray[], int32_t *index, + char *subSysComp) { const Parameter *param = NULL; const Command *command = NULL; @@ -186,11 +186,10 @@ int8_t occli_fill_data_from_driver(const Driver *devDriver, ret = occli_fill_data_from_param(param, helpMenuArray, index, "status"); command = devDriver->commands; - ret = occli_fill_data_from_command(command, helpMenuArray, - index, subSysComp); + ret = + occli_fill_data_from_command(command, helpMenuArray, index, subSysComp); post = devDriver->post; - ret = occli_fill_data_from_post (post, helpMenuArray, - index, subSysComp); + ret = occli_fill_data_from_post(post, helpMenuArray, index, subSysComp); return ret; } @@ -200,8 +199,8 @@ int8_t occli_fill_data_from_driver(const Driver *devDriver, * Input(s) : helpMenuArray, index, subSystem * Output(s) : NA ***************************************************************************/ -void occli_printHelpMenu_on_console(helpMenu *helpMenuArray[], - int32_t index, char *subSystem) +void occli_printHelpMenu_on_console(helpMenu *helpMenuArray[], int32_t index, + char *subSystem) { int32_t printIndex = 0; @@ -218,24 +217,24 @@ void occli_printHelpMenu_on_console(helpMenu *helpMenuArray[], } printf("----------------------------------------------------------" - "-------------------------------------------\n"); - printf("%-12s%-12s%-15s%-10s%-15s%-20s%-15s\n", - "Subsystem", "Component", "SubComponent", "MsgType", - "ActionType", "Parameter", "Arguments"); + "-------------------------------------------\n"); + printf("%-12s%-12s%-15s%-10s%-15s%-20s%-15s\n", "Subsystem", + "Component", "SubComponent", "MsgType", "ActionType", + "Parameter", "Arguments"); printf("----------------------------------------------------------" - "-------------------------------------------\n"); - for(printIndex = 0; printIndex < index; printIndex++) { + "-------------------------------------------\n"); + for (printIndex = 0; printIndex < index; printIndex++) { printf("%-12s%-12s%-15s%-10s%-15s%-20s%-15s\n", - helpMenuArray[printIndex]->subSystem, - helpMenuArray[printIndex]->component, - helpMenuArray[printIndex]->subComponent, - helpMenuArray[printIndex]->msgType, - helpMenuArray[printIndex]->actionType, - helpMenuArray[printIndex]->parameter, - helpMenuArray[printIndex]->arguments); + helpMenuArray[printIndex]->subSystem, + helpMenuArray[printIndex]->component, + helpMenuArray[printIndex]->subComponent, + helpMenuArray[printIndex]->msgType, + helpMenuArray[printIndex]->actionType, + helpMenuArray[printIndex]->parameter, + helpMenuArray[printIndex]->arguments); } printf("----------------------------------------------------------" - "-------------------------------------------\n"); + "-------------------------------------------\n"); } else if (strcmp(subSystem, "debug") == 0) { /*Printing for debug subSystem */ printf("\nGet Example :\n"); @@ -245,49 +244,47 @@ void occli_printHelpMenu_on_console(helpMenu *helpMenuArray[], printf("debug.I2C.bus0 set 104 2 58 1\n"); printf("debug.gbc.ioexpanderx70 set 1 0\n"); printf("\n-------------------------------------------------------" - "----------------------------------------" - "---------\n"); - printf("%-15s%-15s%-15s%-15s%-15s%-20s\n", - "Subsystem", "Component", "SubComponent", "MsgType", - "ActionType", "Arguments"); + "----------------------------------------" + "---------\n"); + printf("%-15s%-15s%-15s%-15s%-15s%-20s\n", "Subsystem", "Component", + "SubComponent", "MsgType", "ActionType", "Arguments"); printf("-------------------------------------------------------" - "----------------------------------------" - "---------\n"); - for(printIndex = 0; printIndex < index; printIndex++) { + "----------------------------------------" + "---------\n"); + for (printIndex = 0; printIndex < index; printIndex++) { printf("%-15s%-15s%-15s%-15s%-15s%-20s\n", - helpMenuArray[printIndex]->subSystem, - helpMenuArray[printIndex]->component, - helpMenuArray[printIndex]->subComponent, - helpMenuArray[printIndex]->msgType, - helpMenuArray[printIndex]->actionType, - helpMenuArray[printIndex]->arguments); + helpMenuArray[printIndex]->subSystem, + helpMenuArray[printIndex]->component, + helpMenuArray[printIndex]->subComponent, + helpMenuArray[printIndex]->msgType, + helpMenuArray[printIndex]->actionType, + helpMenuArray[printIndex]->arguments); } printf("-------------------------------------------------------" - "----------------------------------------" - "---------\n"); + "----------------------------------------" + "---------\n"); } else { /*Printing for all othere subSystem */ /* Dispalay of parameter default value and unit in help menu * will be take care with common schema factory config - */ + */ printf("\n------------------------------------------------------------" - "----------------------------------\n"); - printf("%-12s%-17s%-18s%-12s%-12s%-23s\n", - "Subsystem", "Component", "SubComponent", "MsgType", - "ActionType", "Parameter"); + "----------------------------------\n"); + printf("%-12s%-17s%-18s%-12s%-12s%-23s\n", "Subsystem", "Component", + "SubComponent", "MsgType", "ActionType", "Parameter"); printf("\n------------------------------------------------------------" - "----------------------------------\n"); - for(printIndex = 0; printIndex < index; printIndex++) { + "----------------------------------\n"); + for (printIndex = 0; printIndex < index; printIndex++) { printf("%-12s%-17s%-18s%-12s%-12s%-23s\n", - helpMenuArray[printIndex]->subSystem, - helpMenuArray[printIndex]->component, - helpMenuArray[printIndex]->subComponent, - helpMenuArray[printIndex]->msgType, - helpMenuArray[printIndex]->actionType, - helpMenuArray[printIndex]->parameter); + helpMenuArray[printIndex]->subSystem, + helpMenuArray[printIndex]->component, + helpMenuArray[printIndex]->subComponent, + helpMenuArray[printIndex]->msgType, + helpMenuArray[printIndex]->actionType, + helpMenuArray[printIndex]->parameter); } printf("\n------------------------------------------------------------" - "----------------------------------\n"); + "----------------------------------\n"); } } @@ -302,7 +299,7 @@ static void occli_free_helpMenupointer(helpMenu *helpMenuArray[]) int32_t mallocIndex = 0; for (mallocIndex = 0; mallocIndex < OCCLI_HELP_MAX_SIZE; mallocIndex++) { - if(helpMenuArray[mallocIndex]) + if (helpMenuArray[mallocIndex]) free(helpMenuArray[mallocIndex]); } @@ -327,9 +324,9 @@ int8_t occli_printHelpMenu(const Component *root, char *cmd) char *token = NULL; char *cliStr = NULL; char *cmdBkp = NULL; - char componentStr[OCCLI_CHAR_ARRAY_SIZE] = {0}; - char subSys[OCCLI_CHAR_ARRAY_SIZE] = {0}; - char subSysComp[OCCLI_CHAR_ARRAY_SIZE] = {0}; + char componentStr[OCCLI_CHAR_ARRAY_SIZE] = { 0 }; + char subSys[OCCLI_CHAR_ARRAY_SIZE] = { 0 }; + char subSysComp[OCCLI_CHAR_ARRAY_SIZE] = { 0 }; int8_t ret = FAILED; int8_t count = 1; int8_t subCount = 0; @@ -341,18 +338,18 @@ int8_t occli_printHelpMenu(const Component *root, char *cmd) return FAILED; } - cmdBkp = (char *)malloc (sizeof(cmd)); + cmdBkp = (char *)malloc(sizeof(cmd)); if (cmdBkp == NULL) { logerr("Invalid Memory \n"); return FAILED; } - strcpy(cmdBkp,cmd); + strcpy(cmdBkp, cmd); /* Tokenizing string for subsystem and component */ cliStr = strtok(cmd, " "); if ((cliStr == NULL) || (strstr(cliStr, "help"))) { printf("%s : Error : Incorrect request\n", cmdBkp); - printf ("Usage : subsystem --help or subsystem.component --help\n"); + printf("Usage : subsystem --help or subsystem.component --help\n"); free(cmdBkp); return FAILED; } else { @@ -365,8 +362,8 @@ int8_t occli_printHelpMenu(const Component *root, char *cmd) count++; if (count > 2) { printf("%s : Error : Incorrect request\n", cmdBkp); - printf ("Usage : subsystem --help" - " OR subsystem.component --help\n"); + printf("Usage : subsystem --help" + " OR subsystem.component --help\n"); free(cmdBkp); return FAILED; } @@ -387,8 +384,8 @@ int8_t occli_printHelpMenu(const Component *root, char *cmd) while (subSystem && subSystem->name) { if (strcmp(subSys, subSystem->name) == 0) { subCount++; - strncpy((helpMenuArray[index++]->subSystem), - subSystem->name, strlen(subSystem->name)); + strncpy((helpMenuArray[index++]->subSystem), subSystem->name, + strlen(subSystem->name)); component = subSystem->components; while (component && component->name) { if ((count == 2)) { @@ -399,16 +396,16 @@ int8_t occli_printHelpMenu(const Component *root, char *cmd) compCount++; } } - strncpy((helpMenuArray[index]->component), - component->name, strlen(component->name)); + strncpy((helpMenuArray[index]->component), component->name, + strlen(component->name)); sprintf(subSysComp, "%s.%s", subSystem->name, component->name); command = component->commands; - ret = occli_fill_data_from_command(command, - helpMenuArray, &index, subSysComp); + ret = occli_fill_data_from_command(command, helpMenuArray, + &index, subSysComp); devDriver = component->driver; if (devDriver != NULL) { - ret = occli_fill_data_from_driver(devDriver, - helpMenuArray, &index, subSysComp); + ret = occli_fill_data_from_driver(devDriver, helpMenuArray, + &index, subSysComp); if (ret == FAILED) { logerr("\noccli_fill_data_from_driver Error"); occli_free_helpMenupointer(helpMenuArray); @@ -419,14 +416,14 @@ int8_t occli_printHelpMenu(const Component *root, char *cmd) subComponent = component->components; while (subComponent && subComponent->name) { strncpy((helpMenuArray[index]->subComponent), - subComponent->name, strlen(subComponent->name)); + subComponent->name, strlen(subComponent->name)); command = subComponent->commands; - ret = occli_fill_data_from_command(command, - helpMenuArray, &index, subSysComp); + ret = occli_fill_data_from_command(command, helpMenuArray, + &index, subSysComp); devDriver = subComponent->driver; if (devDriver != NULL) { - ret = occli_fill_data_from_driver(devDriver, - helpMenuArray, &index, subSysComp); + ret = occli_fill_data_from_driver( + devDriver, helpMenuArray, &index, subSysComp); if (ret == FAILED) { logerr("\noccli_fill_data_from_driver Error"); occli_free_helpMenupointer(helpMenuArray); diff --git a/firmware/host/occli/occli_main.c b/firmware/host/occli/occli_main.c index 91b79087a9..767e37cfe6 100644 --- a/firmware/host/occli/occli_main.c +++ b/firmware/host/occli/occli_main.c @@ -25,18 +25,22 @@ #define HISTORY ".occli_history" /* Saved under ${HOME} direcotory */ -#define SWAP(s, e) do { \ - int32_t t; t = s; s = e; e = t; \ - } while (0) +#define SWAP(s, e) \ + do { \ + int32_t t; \ + t = s; \ + s = e; \ + e = t; \ + } while (0) /* MAX_CLIENTRY represents the maximum entries which autofill can take */ -#define OCCLI_MAX_CLISTRING 1000 -#define OCCLI_MAX_SUBSTRING 75 -#define OCCLI_STRING_MAX_LEN 100 -#define OCCLI_CALC_SCHEMA_SIZE 1 -#define OCCLI_PARSE_SCHEMA 2 -#define MAX_ETHERNET_PORT 4 -#define OPENCELLULAR "opencellular# " +#define OCCLI_MAX_CLISTRING 1000 +#define OCCLI_MAX_SUBSTRING 75 +#define OCCLI_STRING_MAX_LEN 100 +#define OCCLI_CALC_SCHEMA_SIZE 1 +#define OCCLI_PARSE_SCHEMA 2 +#define MAX_ETHERNET_PORT 4 +#define OPENCELLULAR "opencellular# " extern char *rl_line_buffer; static char *s_allParams[OCCLI_MAX_CLISTRING]; @@ -65,7 +69,7 @@ int8_t occli_trim_extra_spaces(char *string) length = strlen(string); end = string + length - 1; - while(end >= string && isblank(*end)) { + while (end >= string && isblank(*end)) { end--; } @@ -79,7 +83,7 @@ int8_t occli_trim_extra_spaces(char *string) * Input(s) : * Output(s) : s_strCli ***************************************************************************/ -static int8_t occli_copy_text () +static int8_t occli_copy_text() { int8_t ret = FAILED; int16_t length; @@ -91,18 +95,18 @@ static int8_t occli_copy_text () } length = rl_point; - s_strCli = (char*)realloc(s_strCli, length + 1); + s_strCli = (char *)realloc(s_strCli, length + 1); if (s_strCli == NULL) { printf("\n ERROR: realloc"); } else { ret = SUCCESS; - strncpy (s_strCli, rl_line_buffer, length); + strncpy(s_strCli, rl_line_buffer, length); s_strCli[length] = '\0'; } if (ret == SUCCESS) { - ret = occli_trim_extra_spaces(s_strCli); + ret = occli_trim_extra_spaces(s_strCli); } return ret; @@ -127,8 +131,9 @@ static int8_t occli_init_subSetParams(const char *text) } if (s_subSetParams != NULL) { - for (listIdx = 0; (s_subSetParams[listIdx] != NULL && - listIdx < OCCLI_MAX_SUBSTRING) ; listIdx++) { + for (listIdx = 0; + (s_subSetParams[listIdx] != NULL && listIdx < OCCLI_MAX_SUBSTRING); + listIdx++) { free(s_subSetParams[listIdx]); s_subSetParams[listIdx] = NULL; } @@ -139,14 +144,14 @@ static int8_t occli_init_subSetParams(const char *text) while ((paramStr = s_allParams[listIdx])) { if (strncmp(text, paramStr, len) == 0) { subsetIdx++; - if(subsetIdx >= OCCLI_MAX_SUBSTRING) { + if (subsetIdx >= OCCLI_MAX_SUBSTRING) { break; } } listIdx++; } - for (listIdx= 0; listIdx < subsetIdx; listIdx++) { + for (listIdx = 0; listIdx < subsetIdx; listIdx++) { s_subSetParams[listIdx] = (char *)calloc(1, OCCLI_STRING_MAX_LEN); if ((s_subSetParams[listIdx]) == NULL) { logerr("calloc error"); @@ -163,16 +168,16 @@ static int8_t occli_init_subSetParams(const char *text) * Input(s) : text, state * Output(s) : ***************************************************************************/ -static char* occli_all_param_generator(const char* text, int32_t state) +static char *occli_all_param_generator(const char *text, int32_t state) { char *paramstr = NULL; char *token = NULL; - char subStr[OCCLI_STRING_MAX_LEN] = {0}; - char tempStr[OCCLI_STRING_MAX_LEN] = {0}; + char subStr[OCCLI_STRING_MAX_LEN] = { 0 }; + char tempStr[OCCLI_STRING_MAX_LEN] = { 0 }; static int32_t s_listidx = 0; static int32_t s_subSetIdx = 0; static int32_t s_len = 0; - int8_t index = 0 ; + int8_t index = 0; bool isEntryFound = false; if (text == NULL) { @@ -211,18 +216,18 @@ static char* occli_all_param_generator(const char* text, int32_t state) if (strncmp(text, "", 1) == 0) { /* case where the user hasn't entered any string */ sprintf(tempStr, "%s", token); - } else if(strncmp(paramstr + s_len, "." , 1) == 0) { + } else if (strncmp(paramstr + s_len, ".", 1) == 0) { /* * case where the user has entered complete string * for either subsystem/component (ie) "system" */ - sprintf(tempStr, "%s.%s", text,token); + sprintf(tempStr, "%s.%s", text, token); } else { /* * case where the user has entered subset of the string * for example "sys" */ - sprintf(tempStr, "%s%s", text,token); + sprintf(tempStr, "%s%s", text, token); } } /* @@ -235,7 +240,7 @@ static char* occli_all_param_generator(const char* text, int32_t state) break; } } - if(isEntryFound != true) { + if (isEntryFound != true) { strcpy(s_subSetParams[s_subSetIdx], tempStr); s_subSetIdx++; return strdup(s_subSetParams[s_subSetIdx - 1]); @@ -250,10 +255,10 @@ static char* occli_all_param_generator(const char* text, int32_t state) * Input(s) : text, start, end * Output(s) : ***************************************************************************/ -static char** occli_custom_completion(const char* text, int32_t start, - int32_t end) +static char **occli_custom_completion(const char *text, int32_t start, + int32_t end) { - char** matches = NULL; + char **matches = NULL; int8_t ret = FAILED; if (text == NULL) { @@ -284,7 +289,7 @@ static char** occli_custom_completion(const char* text, int32_t start, * Output(s) : deststrPtr ***************************************************************************/ static int8_t occli_strjoin(char **deststrPtr, const char *srcstr, - const char *delimstr) + const char *delimstr) { char *tmp; const int32_t alloclen = OCCLI_STRING_SIZE; @@ -339,9 +344,9 @@ static int8_t occli_strjoin(char **deststrPtr, const char *srcstr, * Input(s) : pThreadData * Output(s) : ***************************************************************************/ -void * occli_alertthread_messenger_to_ocmw(void *pThreadData) +void *occli_alertthread_messenger_to_ocmw(void *pThreadData) { - char response[RES_STR_BUFF_SIZE] = {0}; + char response[RES_STR_BUFF_SIZE] = { 0 }; int32_t ret = 0; /* Receive the CLI command execution response string from OCMW over UDP @@ -351,7 +356,8 @@ void * occli_alertthread_messenger_to_ocmw(void *pThreadData) memset(response, 0, sizeof(response)); ret = occli_recv_alertmsg_from_ocmw(response, sizeof(response)); if (ret < 0) { - printf("occli_recv_alertmsg_from_ocmw failed: error value : %d\n", ret); + printf("occli_recv_alertmsg_from_ocmw failed: error value : %d\n", + ret); } else { printf("%s\n", response); } @@ -368,15 +374,18 @@ int8_t occli_parse_cliString(char *cliString) { int8_t ret = FAILED; int16_t index = 0; - char tempStr[OCCLI_STRING_MAX_LEN] = {0}; + char tempStr[OCCLI_STRING_MAX_LEN] = { 0 }; char *token = NULL; + if (cliString == NULL) { + return ret; + } strcpy(tempStr, cliString); token = strtok(tempStr, " "); - for(index = 0; ((index < OCCLI_MAX_CLISTRING) && - (s_allParams[index] != NULL)); index++) { - + for (index = 0; + ((index < OCCLI_MAX_CLISTRING) && (s_allParams[index] != NULL)); + index++) { if (strcmp(token, s_allParams[index]) == 0) { ret = SUCCESS; break; @@ -391,8 +400,7 @@ int8_t occli_parse_cliString(char *cliString) * Input(s) : root, occliData->option * Output(s) : s_allParams, occliData->totalStr, occliData->sizeNum ***************************************************************************/ -int8_t occli_frame_commands(const Component *root, - OCCLI_ARRAY_PARAM *occliData) +int8_t occli_frame_commands(const Component *root, OCCLI_ARRAY_PARAM *occliData) { const Component *subSystem = root; const Component *component = subSystem->components; @@ -400,9 +408,7 @@ int8_t occli_frame_commands(const Component *root, const Command *command = NULL; const Driver *driver = NULL; - - if ((root == NULL) || - (occliData == NULL)) { + if ((root == NULL) || (occliData == NULL)) { logerr("Invalid Memory \n"); return FAILED; } @@ -413,14 +419,13 @@ int8_t occli_frame_commands(const Component *root, component = subSystem->components; while (component && component->name) { command = component->commands; - while (command && - command->name) { + while (command && command->name) { if (occliData->option == OCCLI_CALC_SCHEMA_SIZE) { occliData->sizeNum += 1; } else { snprintf(s_allParams[occliData->totalStr++], - OCCLI_SNPRINTF_MAX_LEN, "%s.%s.%s", - subSystem->name, component->name, command->name); + OCCLI_SNPRINTF_MAX_LEN, "%s.%s.%s", + subSystem->name, component->name, command->name); } command += 1; } @@ -435,17 +440,16 @@ int8_t occli_frame_commands(const Component *root, component = subSystem->components; while (component && component->name) { driver = component->driver; - if(driver != NULL) { + if (driver != NULL) { command = driver->commands; - while (command && - command->name) { + while (command && command->name) { if (occliData->option == OCCLI_CALC_SCHEMA_SIZE) { occliData->sizeNum += 1; } else { snprintf(s_allParams[occliData->totalStr++], - OCCLI_SNPRINTF_MAX_LEN, "%s.%s.%s", - subSystem->name, component->name, - command->name); + OCCLI_SNPRINTF_MAX_LEN, "%s.%s.%s", + subSystem->name, component->name, + command->name); } command += 1; } @@ -463,17 +467,16 @@ int8_t occli_frame_commands(const Component *root, subComponent = component->components; while (subComponent && subComponent->name) { driver = subComponent->driver; - if(driver != NULL) { + if (driver != NULL) { command = driver->commands; - while (command && - command->name) { + while (command && command->name) { if (occliData->option == OCCLI_CALC_SCHEMA_SIZE) { occliData->sizeNum += 1; } else { snprintf(s_allParams[occliData->totalStr++], - OCCLI_STRING_MAX_LEN, "%s.%s.%s.%s", - subSystem->name, component->name, - subComponent->name, command->name); + OCCLI_STRING_MAX_LEN, "%s.%s.%s.%s", + subSystem->name, component->name, + subComponent->name, command->name); } command += 1; } @@ -493,8 +496,8 @@ int8_t occli_frame_commands(const Component *root, * Output(s) : ocmwclistr, occliData ***************************************************************************/ int8_t occli_frame_string_from_schemaDriver(const Parameter *param, - OCCLI_ARRAY_PARAM *occliData, - strMsgFrame *strFrame) + OCCLI_ARRAY_PARAM *occliData, + strMsgFrame *strFrame) { if ((occliData == NULL) || (param == NULL) || (strFrame == NULL)) { logerr("Invalid Memory \n"); @@ -505,16 +508,14 @@ int8_t occli_frame_string_from_schemaDriver(const Parameter *param, occliData->sizeNum += 1; } else { if (strlen(strFrame->subcomponent)) { - snprintf(s_allParams[occliData->totalStr++], - OCCLI_SNPRINTF_MAX_LEN, "%s.%s.%s.%s.%s.%s", - strFrame->subsystem, strFrame->component, - strFrame->msgtype, strFrame->subcomponent, - param->name, strFrame->parameter); + snprintf(s_allParams[occliData->totalStr++], OCCLI_SNPRINTF_MAX_LEN, + "%s.%s.%s.%s.%s.%s", strFrame->subsystem, + strFrame->component, strFrame->msgtype, + strFrame->subcomponent, param->name, strFrame->parameter); } else { - snprintf(s_allParams[occliData->totalStr++], - OCCLI_SNPRINTF_MAX_LEN, "%s.%s.%s.%s.%s", - strFrame->subsystem, strFrame->component, - strFrame->msgtype, param->name, strFrame->parameter); + snprintf(s_allParams[occliData->totalStr++], OCCLI_SNPRINTF_MAX_LEN, + "%s.%s.%s.%s.%s", strFrame->subsystem, strFrame->component, + strFrame->msgtype, param->name, strFrame->parameter); } } return SUCCESS; @@ -527,8 +528,8 @@ int8_t occli_frame_string_from_schemaDriver(const Parameter *param, * Output(s) : ocmwclistr, occliData ***************************************************************************/ int8_t occli_frame_string_from_postDriver(const Post *param, - OCCLI_ARRAY_PARAM *occliData, - strMsgFrame *strFrame) + OCCLI_ARRAY_PARAM *occliData, + strMsgFrame *strFrame) { if ((occliData == NULL) || (param == NULL) || (strFrame == NULL)) { logerr("Invalid Memory \n"); @@ -539,16 +540,14 @@ int8_t occli_frame_string_from_postDriver(const Post *param, occliData->sizeNum += 1; } else { if (strlen(strFrame->subcomponent)) { - snprintf(s_allParams[occliData->totalStr++], - OCCLI_SNPRINTF_MAX_LEN, "%s.%s.%s.%s.%s.%s", - strFrame->subsystem, strFrame->component, - strFrame->msgtype, strFrame->subcomponent, - param->name, strFrame->parameter); + snprintf(s_allParams[occliData->totalStr++], OCCLI_SNPRINTF_MAX_LEN, + "%s.%s.%s.%s.%s.%s", strFrame->subsystem, + strFrame->component, strFrame->msgtype, + strFrame->subcomponent, param->name, strFrame->parameter); } else { - snprintf(s_allParams[occliData->totalStr++], - OCCLI_SNPRINTF_MAX_LEN, "%s.%s.%s.%s.%s", - strFrame->subsystem, strFrame->component, - strFrame->msgtype, param->name, strFrame->parameter); + snprintf(s_allParams[occliData->totalStr++], OCCLI_SNPRINTF_MAX_LEN, + "%s.%s.%s.%s.%s", strFrame->subsystem, strFrame->component, + strFrame->msgtype, param->name, strFrame->parameter); } } return SUCCESS; @@ -560,8 +559,8 @@ int8_t occli_frame_string_from_postDriver(const Post *param, * Output(s) : ocmwclistr, occliData ***************************************************************************/ int8_t occli_frame_string_from_schema(const Driver *devDriver, - OCCLI_ARRAY_PARAM *occliData, - strMsgFrame *strFrame) + OCCLI_ARRAY_PARAM *occliData, + strMsgFrame *strFrame) { const Post *postParam = NULL; const Parameter *param = NULL; @@ -580,7 +579,8 @@ int8_t occli_frame_string_from_schema(const Driver *devDriver, } else { strcpy(strFrame->parameter, "get"); } - ret = occli_frame_string_from_postDriver(postParam, occliData, strFrame); + ret = + occli_frame_string_from_postDriver(postParam, occliData, strFrame); postParam++; } @@ -623,10 +623,9 @@ int8_t occli_frame_string(const Component *root, OCCLI_ARRAY_PARAM *occliData) const Driver *devDriver = NULL; int8_t ret = 0; - strMsgFrame *strFrame = (strMsgFrame *) malloc(sizeof(strMsgFrame)); + strMsgFrame *strFrame = (strMsgFrame *)malloc(sizeof(strMsgFrame)); - if ((strFrame == NULL) || (root == NULL) || - (occliData == NULL)) { + if ((strFrame == NULL) || (root == NULL) || (occliData == NULL)) { logerr("Invalid Memory \n"); return FAILED; } @@ -641,8 +640,8 @@ int8_t occli_frame_string(const Component *root, OCCLI_ARRAY_PARAM *occliData) strcpy(strFrame->component, component->name); devDriver = component->driver; if (devDriver != NULL) { - ret = occli_frame_string_from_schema(devDriver, - occliData, strFrame); + ret = occli_frame_string_from_schema(devDriver, occliData, + strFrame); if (ret == FAILED) { return ret; } @@ -652,8 +651,8 @@ int8_t occli_frame_string(const Component *root, OCCLI_ARRAY_PARAM *occliData) strcpy(strFrame->subcomponent, subComponent->name); devDriver = subComponent->driver; if (devDriver != NULL) { - ret = occli_frame_string_from_schema(devDriver, - occliData, strFrame); + ret = occli_frame_string_from_schema(devDriver, occliData, + strFrame); if (ret == FAILED) { return ret; } @@ -678,10 +677,10 @@ int32_t main(int32_t argc, char *argv[]) { char *line = NULL; char *clistr = NULL; - char response[RES_STR_BUFF_SIZE] = {0}; + char response[RES_STR_BUFF_SIZE] = { 0 }; char historyFile[HIT_FILE_BUFF_SIZE]; char *cmdstr = NULL; - const char* prompt = "opencellular# "; + const char *prompt = "opencellular# "; int32_t index = 0; int32_t ret = 0; pthread_t alertThreadId; @@ -692,7 +691,7 @@ int32_t main(int32_t argc, char *argv[]) initlog("occli"); memset(&msgFrameParam, 0, sizeof(sMsgParam)); - memset (&occliArray, 0, sizeof(OCCLI_ARRAY_PARAM)); + memset(&occliArray, 0, sizeof(OCCLI_ARRAY_PARAM)); occliArray.option = OCCLI_CALC_SCHEMA_SIZE; @@ -708,11 +707,10 @@ int32_t main(int32_t argc, char *argv[]) return FAILED; } - for (index= 0; index< occliArray.sizeNum; index++) { - if(!(s_allParams[index] = (char *)malloc(OCCLI_STRING_MAX_LEN))) { + for (index = 0; index < occliArray.sizeNum; index++) { + if (!(s_allParams[index] = (char *)malloc(OCCLI_STRING_MAX_LEN))) { return FAILED; } - } occliArray.option = OCCLI_PARSE_SCHEMA; @@ -735,9 +733,14 @@ int32_t main(int32_t argc, char *argv[]) return FAILED; } + ret = pthread_create(&alertThreadId, NULL, + occli_alertthread_messenger_to_ocmw, NULL); + if (ret != 0) { + return ret; + } /* Execute the OC command (argv[1:]) and exit */ if (strcmp("occmd", basename(argv[0])) == 0) { - for (index= 1; index < argc; index++) { + for (index = 1; index < argc; index++) { if (occli_strjoin(&cmdstr, argv[index], " ") != 0) { logerr("occli_strjoin error"); break; @@ -765,17 +768,10 @@ int32_t main(int32_t argc, char *argv[]) } /* Entering interactive CLI */ else if (strcmp("occli", basename(argv[0])) == 0) { - ret = pthread_create(&alertThreadId, NULL, - occli_alertthread_messenger_to_ocmw, NULL); - - if (ret != 0) { - return ret; - } - /* Initialize readline */ using_history(); if ((snprintf(historyFile, HIT_FILE_BUFF_SIZE, "%s/%s", getenv("HOME"), - HISTORY)) < 0) { + HISTORY)) < 0) { return FAILED; } @@ -807,7 +803,7 @@ int32_t main(int32_t argc, char *argv[]) break; } /* Print the help manu */ - if((strstr(clistr, "help"))) { + if ((strstr(clistr, "help"))) { if ((strstr(clistr, "--help"))) { ret = occli_printHelpMenu(sys_schema, clistr); if (ret == FAILED) { @@ -816,8 +812,8 @@ int32_t main(int32_t argc, char *argv[]) continue; } else { printf("%s : Error : Incorrect request\n", clistr); - printf ("Usage : subsystem --help" - " OR subsystem.component --help\n"); + printf("Usage : subsystem --help" + " OR subsystem.component --help\n"); continue; } } @@ -844,13 +840,15 @@ int32_t main(int32_t argc, char *argv[]) write_history(historyFile); } - for (index= 0; ((s_allParams[index] != NULL) && - (index < OCCLI_MAX_CLISTRING)); index++) { + for (index = 0; + ((s_allParams[index] != NULL) && (index < OCCLI_MAX_CLISTRING)); + index++) { free(s_allParams[index]); } - for (index= 0; ((s_subSetParams[index] != NULL) && - (index < OCCLI_MAX_SUBSTRING)); index++) { + for (index = 0; + ((s_subSetParams[index] != NULL) && (index < OCCLI_MAX_SUBSTRING)); + index++) { free(s_subSetParams[index]); } occli_deinit_comm(); diff --git a/firmware/host/occli/occli_ocmw_comm.c b/firmware/host/occli/occli_ocmw_comm.c index d3b97819c1..49cd96b6cc 100644 --- a/firmware/host/occli/occli_ocmw_comm.c +++ b/firmware/host/occli/occli_ocmw_comm.c @@ -65,8 +65,8 @@ int32_t occli_init_comm(void) return ret; } - if (setsockopt(s_sockFd, SOL_SOCKET, SO_RCVTIMEO, - &timeValObj, sizeof(timeValObj)) < 0) { + if (setsockopt(s_sockFd, SOL_SOCKET, SO_RCVTIMEO, &timeValObj, + sizeof(timeValObj)) < 0) { logerr("setsockopt failed"); ret = FAILED; return ret; @@ -74,7 +74,7 @@ int32_t occli_init_comm(void) /* For Alert Capture */ s_alertSockFd = socket(OCMW_SOCK_ALERT_DOMAIN, OCMW_SOCK_ALERT_TYPE, - OCMW_SOCK_ALERT_PROTOCOL); + OCMW_SOCK_ALERT_PROTOCOL); if (s_alertSockFd < 0) { ret = -errno; logerr("socket creation error [%d-%s]", errno, strerror(errno)); @@ -93,8 +93,8 @@ int32_t occli_init_comm(void) } /* Bind host address to the socket */ - ret = bind(s_alertSockFd, (struct sockaddr*) &s_alertServer, - sizeof(s_alertServer)); + ret = bind(s_alertSockFd, (struct sockaddr *)&s_alertServer, + sizeof(s_alertServer)); if (ret < 0) { ret = -errno; logerr("bind error [%d-%s]", errno, strerror(errno)); @@ -133,8 +133,8 @@ int32_t occli_send_cmd_to_ocmw(const char *cmd, int32_t cmdlen) strncpy(s_displayStr, cmd, cmdlen); /* Send the CLI command string to OCMW over UDP socket */ - ret = sendto(s_sockFd, cmd, cmdlen, 0, - (const struct sockaddr *) &s_siServer, strLen); + ret = sendto(s_sockFd, cmd, cmdlen, 0, (const struct sockaddr *)&s_siServer, + strLen); if (ret < 0) { strerror_r(errno, errstr, OCMW_SOCKET_ERROR_SIZE); logerr("Error: 'sendto' [%d-%s]", errno, errstr); @@ -157,8 +157,8 @@ int32_t occli_recv_cmd_resp_from_ocmw(char *resp, int32_t resplen) /* Receive the CLI command execution response string from OCMW over UDP socket */ - ret = recvfrom(s_sockFd, resp, resplen, 0, - (struct sockaddr*) &s_siServer, (socklen_t*) &strLen); + ret = recvfrom(s_sockFd, resp, resplen, 0, (struct sockaddr *)&s_siServer, + (socklen_t *)&strLen); if (ret < 0) { strerror_r(errno, errstr, OCMW_SOCKET_ERROR_SIZE); logerr("Error: 'recvfrom' [%d-%s]", ret, errstr); @@ -182,7 +182,7 @@ int32_t occli_recv_alertmsg_from_ocmw(char *resp, int32_t resplen) /* Receive the Alert Message string from OCMW over UDP socket */ ret = recvfrom(s_alertSockFd, resp, resplen, 0, - (struct sockaddr*) &s_alertServer, (socklen_t*) &strLen); + (struct sockaddr *)&s_alertServer, (socklen_t *)&strLen); if (ret < 0) { strerror_r(errno, errstr, OCMW_SOCKET_ERROR_SIZE); logerr("Error: 'recvfrom' [%d-%s]", ret, errstr); diff --git a/firmware/host/ocmw/ocmw_clicmd.c b/firmware/host/ocmw/ocmw_clicmd.c index f1f26dc2d6..abe8392c8a 100644 --- a/firmware/host/ocmw/ocmw_clicmd.c +++ b/firmware/host/ocmw/ocmw_clicmd.c @@ -22,8 +22,8 @@ #include #include -#define INVALID_SYNTAX "Error : Invalid syntax" -#define INSUFFICIENT_PARAM "Error : Insufficient parameters" +#define INVALID_SYNTAX "Error : Invalid syntax" +#define INSUFFICIENT_PARAM "Error : Insufficient parameters" extern int8_t obcTestingmoduleData[MAX_PARM_COUNT]; extern int8_t dataOutBufFromEc[MAX_PARM_COUNT]; @@ -32,43 +32,46 @@ extern int64_t recvdParamVal; extern int8_t eepromStatusFlag; extern int8_t eepromStatusFlag; extern int32_t eepromFlag; -extern uint8_t ocwarePostArrayIndex; +extern uint8_t ocwarePostArrayIndex; debugI2CData I2CInfo; debugMDIOData MDIOInfo; +int8_t alertFlag = 0; +alertlist alerts; struct matchString { const char *key; ocmw_token_t token; } ocmwTokenTable[] = { - { "set", SET_STR }, - { "get", GET_STR }, - { "reset", RESET_STR }, - { "enable", ENABLE_STR }, - { "disable", DISABLE_STR }, - {"active", ACTIVE_STR }, - { "echo", ECHO_STR }, - { "disconnect_nw", DISCONNECT_STR }, - { "connect_nw", CONNECT_STR }, - { "send", SEND_STR }, - { "dial", DIAL_STR }, - { "answer", ANSWER_STR }, - { "hangup", HANGUP_STR }, - { "en_loopBk", ELOOPBK_STR }, - { "dis_loopBk", DLOOPBK_STR }, - { "en_pktGen", EPKTGEN_STR }, - { "dis_pktGen", DPKTGEN_STR }, - { NULL, MAX_STR }, + { "set", SET_STR }, + { "get", GET_STR }, + { "reset", RESET_STR }, + { "enable", ENABLE_STR }, + { "disable", DISABLE_STR }, + { "active", ACTIVE_STR }, + { "echo", ECHO_STR }, + { "disconnect_nw", DISCONNECT_STR }, + { "connect_nw", CONNECT_STR }, + { "send", SEND_STR }, + { "dial", DIAL_STR }, + { "answer", ANSWER_STR }, + { "hangup", HANGUP_STR }, + { "en_loopBk", ELOOPBK_STR }, + { "dis_loopBk", DLOOPBK_STR }, + { "en_pktGen", EPKTGEN_STR }, + { "dis_pktGen", DPKTGEN_STR }, + { "getAlertLogs", ALERTLOG_STR }, + { NULL, MAX_STR }, }; struct matchSetGet { const char *key; ocmw_setGet token; } ocmwSetGetTable[] = { - { "hci.led.fw", HCI_STR }, - { "debug", DEBUG_STR }, - {"system.comp_all.post.results", RESULT_STR }, - {"system.comp_all.post.enable", ENABLE_SET_STR }, - { NULL, GETSETMAX }, + { "hci.led.fw", HCI_STR }, + { "debug", DEBUG_STR }, + { "system.comp_all.post.results", RESULT_STR }, + { "system.comp_all.post.enable", ENABLE_SET_STR }, + { NULL, GETSETMAX }, }; /************************************************************************** * Function Name : ocmw_tokenize_class @@ -84,7 +87,7 @@ static int32_t ocmw_tokenize_class(char *str, char *param, int32_t option) token = strtok(str, " ."); if (token == NULL) - return -1; + return -1; while (token) { if (count == 2) { @@ -94,9 +97,9 @@ static int32_t ocmw_tokenize_class(char *str, char *param, int32_t option) token = strtok(NULL, " ."); count++; - if(option == 1){ - strncpy(param, token, PARAMSTR_NUMBER_LEN); - break; + if (option == 1) { + strncpy(param, token, PARAMSTR_NUMBER_LEN); + break; } } return SUCCESS; @@ -108,8 +111,8 @@ static int32_t ocmw_tokenize_class(char *str, char *param, int32_t option) * Input(s) : cmdstr * Output(s) : strTokenCount, strTokenArray ***************************************************************************/ -static int32_t ocmw_tokenize(const char *cmdstr, - int32_t *strTokenCount, char ***strTokenArray) +static int32_t ocmw_tokenize(const char *cmdstr, int32_t *strTokenCount, + char ***strTokenArray) { char *str = NULL; char *saveptr = NULL; @@ -125,7 +128,7 @@ static int32_t ocmw_tokenize(const char *cmdstr, paramStr = strrchr(cmdstr, '.'); *paramStr = ' '; - for (index = 1, str = (char*) cmdstr;; index++, str = NULL) { + for (index = 1, str = (char *)cmdstr;; index++, str = NULL) { token = strtok_r(str, delim, &saveptr); if (token == NULL) { break; @@ -133,8 +136,8 @@ static int32_t ocmw_tokenize(const char *cmdstr, localStrTokenCount++; temp = localStrTokenArray; - localStrTokenArray = realloc(localStrTokenArray, - sizeof(char *) * localStrTokenCount); + localStrTokenArray = + realloc(localStrTokenArray, sizeof(char *) * localStrTokenCount); if (localStrTokenArray == NULL) { logerr("realloc failed"); /* Free the original block of memory before realloc */ @@ -163,57 +166,158 @@ int32_t ocmw_check_numeric_number(char *numstring) int32_t len = strlen(numstring); while (index < len) { - if ((*(numstring + index) < '0') || - (*(numstring + index) > '9')) { + if ((*(numstring + index) < '0') || (*(numstring + index) > '9')) { return FAILED; } index++; } return SUCCESS; } -#if 0 /************************************************************************** - * Function Name : ocmw_string_parse - * Description : This Function used to parse the param string - * Input(s) : string - * Output(s) : outStr + * Function Name : ocmw_frame_alert_response + * Description : This Function used to frame alert response + * Input(s) : alerts + * Output(s) : response ***************************************************************************/ -int8_t ocmw_string_parse(char *string, char *outStr) +int32_t ocmw_frame_alert_response(char *response) { - char *token; - char string1[CHAR_SIZE_12] = { 0 }; - char string2[CHAR_SIZE_12] = { 0 }; + int32_t index = 0; + char alertstr[ALERT_MAX_BUFF_SIZE] = { 0 }; - token = strtok(string, " ."); - if (token == NULL) { + if (response == NULL) { + logerr("%s(): NULL pointer error", __func__); return FAILED; } - - strncpy(string1, token, CHAR_SIZE_12); - token = strtok(NULL, " ."); - if (token == NULL) { +#if 0 + if (alerts.nalerts == index) { + if ((snprintf(response, RES_STR_BUFF_SIZE, "%s", + "No Alert Recorded")) < 0) { return FAILED; } - strncpy(string2, token, CHAR_SIZE_12); + return SUCCESS; - if ((snprintf(outStr, CHAR_SIZE_32, "%s.%s", string1, string2)) < 0) { + } +#endif + strncpy(response, + "-------------------------------------------------------" + "------------------------------------------------\n", + ALERT_STR_BUFF_SIZE); + if (snprintf(alertstr, ALERT_STR_BUFF_SIZE, "%-52s%-19s%-8s%-7s%-5s\n", + "ALERT DESCRIPTION", "TIME", "STATUS", "LIMIT", + "ACTUAL_VALUE") < 0) { return FAILED; } + strncat(response, alertstr, ALERT_STR_BUFF_SIZE); + if ((snprintf(alertstr, ALERT_STR_BUFF_SIZE, + "-----------------------------------------------------------" + "--------------------------------------------\n")) < 0) { + return FAILED; + } + strncat(response, alertstr, ALERT_STR_BUFF_SIZE); + for (index = 0; index < alerts.nalerts + 1; index++) { + if (snprintf(alertstr, ALERT_STR_BUFF_SIZE, "%-52s%-19s%-8s%-7s%-5s\n", + alerts.list[index].string, alerts.list[index].datetime, + alerts.list[index].action, alerts.list[index].value, + alerts.list[index].actualValue) < 0) { + return FAILED; + } + strncat(response, alertstr, ALERT_STR_BUFF_SIZE); + } + if ((snprintf(alertstr, ALERT_STR_BUFF_SIZE, + "------------------------------------------------------------" + "-------------------------------------------\n")) < 0) { + return FAILED; + } + strncat(response, alertstr, ALERT_STR_BUFF_SIZE); + return SUCCESS; } -#endif +/************************************************************************** + * Function Name : ocmw_handle_show_alerts + * Description : This Function used to handle the alerts commands + * Input(s) : alerts + * Output(s) : response + ***************************************************************************/ +int32_t ocmw_handle_show_alerts(char *response) +{ + int32_t ret = 0; + + if (response == NULL) { + logerr("%s(): NULL pointer error", __func__); + return FAILED; + } + strncpy(response, "", RES_STR_BUFF_SIZE); + ret = ocmw_frame_alert_response(response); + if (ret < 0) { + free(alerts.list); + return ret; + } + ret = ocmw_send_alert_to_occli(response, RES_STR_BUFF_SIZE); + free(alerts.list); + alerts.nalerts = 0; + return ret; +} + +/************************************************************************** + * Function Name : ocmw_handle_show_all_alerts + * Description : This Function used to handle the syncronous alerts + * Input(s) : strTokenArray + * Output(s) : response + ***************************************************************************/ +static int32_t ocmw_handle_show_all_alerts(char *strTokenArray[], + char *response) +{ + char paramStr[PARAM_STR_BUFF_SIZE]; + void *paramVal; + char tempParamStr[PARAM_STR_MAX_BUFF_SIZE] = { 0 }; + int32_t ret = 0; + + if (strTokenArray == NULL || response == NULL) { + logerr("%s(): NULL pointer error", __func__); + return FAILED; + } + alerts.nalerts = 0; + alerts.list = (struct allAlertEvent *)calloc(ALERT_MAX_BUFF_SIZE, + sizeof(struct allAlertEvent)); + alertFlag++; + strcpy(tempParamStr, strTokenArray[0]); + strncpy(response, "", RES_STR_BUFF_SIZE); + + if ((snprintf(paramStr, PARAM_STR_BUFF_SIZE, "%s.%s", strTokenArray[1], + strTokenArray[0])) < 0) { + return FAILED; + } + + ret = ocmw_msgproc_send_msg(&strTokenArray[0], 0, OCMP_MSG_TYPE_COMMAND, + (int8_t *)paramStr, ¶mVal); + + if ((snprintf(response, RES_STR_BUFF_SIZE, "%s : %s", tempParamStr, + (ret != 0) ? "Failed" : "Success")) < 0) { + return FAILED; + } + + if (ret < 0) { + logerr("Error in reading alerts"); + } + ret = ocmw_frame_alert_response(response); + alertFlag = 0; + alerts.nalerts = 0; + free(alerts.list); + return ret; +} + /************************************************************************** * Function Name : ocmw_handle_set_config * Description : This Function used to handle the set config commands * Input(s) : strTokenArray * Output(s) : response ***************************************************************************/ -static int32_t ocmw_handle_set_config(char* strTokenArray[], char *response) +static int32_t ocmw_handle_set_config(char *strTokenArray[], char *response) { char *paramStr; void *paramvalue; int32_t ret = 0; - char tempParamStr[PARAM_STR_MAX_BUFF_SIZE] = {0}; + char tempParamStr[PARAM_STR_MAX_BUFF_SIZE] = { 0 }; if (strTokenArray == NULL || response == NULL) { logerr("%s(): NULL pointer error", __func__); @@ -224,11 +328,12 @@ static int32_t ocmw_handle_set_config(char* strTokenArray[], char *response) strcpy(tempParamStr, strTokenArray[0]); ret = ocmw_msgproc_send_msg(&strTokenArray[0], OCMP_AXN_TYPE_SET, - OCMP_MSG_TYPE_CONFIG, (int8_t *) paramStr, paramvalue); + OCMP_MSG_TYPE_CONFIG, (int8_t *)paramStr, + paramvalue); - if ((snprintf(response, RES_STR_BUFF_SIZE, "%s.%s = %s : %s", strTokenArray[0], - strTokenArray[1], strTokenArray[2], - (ret != 0) ? "Failed" : "Success")) < 0) { + if ((snprintf(response, RES_STR_BUFF_SIZE, "%s.%s = %s : %s", + strTokenArray[0], strTokenArray[1], strTokenArray[2], + (ret != 0) ? "Failed" : "Success")) < 0) { return FAILED; } @@ -241,10 +346,10 @@ static int32_t ocmw_handle_set_config(char* strTokenArray[], char *response) * Input(s) : strTokenArray * Output(s) : response ***************************************************************************/ -static int32_t ocmw_handle_show_config(char* strTokenArray[], char *response) +static int32_t ocmw_handle_show_config(char *strTokenArray[], char *response) { char *paramStr; - char tempParamStr[PARAM_STR_MAX_BUFF_SIZE] = {0}; + char tempParamStr[PARAM_STR_MAX_BUFF_SIZE] = { 0 }; int32_t paramVal = 0; int32_t ret = 0; @@ -255,24 +360,26 @@ static int32_t ocmw_handle_show_config(char* strTokenArray[], char *response) paramStr = strTokenArray[0]; strcpy(tempParamStr, strTokenArray[0]); - ret = ocmw_msgproc_send_msg(&strTokenArray[0], OCMP_AXN_TYPE_GET, - OCMP_MSG_TYPE_CONFIG, (int8_t *) paramStr, ¶mVal); + OCMP_MSG_TYPE_CONFIG, (int8_t *)paramStr, + ¶mVal); if (ret != 0) { if ((snprintf(response, RES_STR_BUFF_SIZE, "%s.%s : Failed", - tempParamStr, strTokenArray[1])) < 0) { + tempParamStr, strTokenArray[1])) < 0) { return FAILED; } } else { - if (eepromFlag > 0){ + if (eepromFlag > 0) { if ((snprintf(response, RES_STR_BUFF_SIZE, "%s.%s = %s", - tempParamStr, strTokenArray[1], dataOutBufFromEc)) < 0) { + tempParamStr, strTokenArray[1], dataOutBufFromEc)) < + 0) { return FAILED; } } else { if ((snprintf(response, RES_STR_BUFF_SIZE, "%s.%s = %" PRId64, - (int8_t *)tempParamStr, strTokenArray[1], recvdParamVal)) <0) { + (int8_t *)tempParamStr, strTokenArray[1], + recvdParamVal)) < 0) { return FAILED; } } @@ -286,12 +393,12 @@ static int32_t ocmw_handle_show_config(char* strTokenArray[], char *response) * Input(s) : strTokenArray * Output(s) : response ***************************************************************************/ -static int32_t ocmw_handle_show_status(char* strTokenArray[], char *response) +static int32_t ocmw_handle_show_status(char *strTokenArray[], char *response) { char *paramStr; int32_t ret = 0; int32_t value = 0; - char tempParamStr[PARAM_STR_MAX_BUFF_SIZE] = {0}; + char tempParamStr[PARAM_STR_MAX_BUFF_SIZE] = { 0 }; if (strTokenArray == NULL || response == NULL) { logerr("%s(): NULL pointer error", __func__); @@ -300,23 +407,23 @@ static int32_t ocmw_handle_show_status(char* strTokenArray[], char *response) paramStr = strTokenArray[0]; strcpy(tempParamStr, strTokenArray[0]); - ret = ocmw_msgproc_send_msg(&strTokenArray[0], OCMP_AXN_TYPE_GET, - OCMP_MSG_TYPE_STATUS, (int8_t *) paramStr, (void*) &value); + OCMP_MSG_TYPE_STATUS, (int8_t *)paramStr, + (void *)&value); if (ret != 0) { if ((snprintf(response, RES_STR_BUFF_SIZE, "%s.%s : Failed", - tempParamStr, strTokenArray[1])) < 0) { + tempParamStr, strTokenArray[1])) < 0) { + return FAILED; + } + } else if (eepromFlag > 0) { + if ((snprintf(response, RES_STR_BUFF_SIZE, "%s.%s = %s", tempParamStr, + strTokenArray[1], dataOutBufFromEc)) < 0) { return FAILED; } - } else if (eepromFlag > 0) { - if ((snprintf(response, RES_STR_BUFF_SIZE, "%s.%s = %s", - tempParamStr, strTokenArray[1], dataOutBufFromEc)) < 0) { - return FAILED; - } } else { if ((snprintf(response, RES_STR_BUFF_SIZE, "%s.%s = %" PRId64, - tempParamStr, strTokenArray[1], recvdParamVal)) < 0) { + tempParamStr, strTokenArray[1], recvdParamVal)) < 0) { return FAILED; } } @@ -330,11 +437,11 @@ static int32_t ocmw_handle_show_status(char* strTokenArray[], char *response) * Input(s) : strTokenArray, action * Output(s) : response ***************************************************************************/ -static int32_t ocmw_handle_debug_command_function(char* strTokenArray[], - char *response) +static int32_t ocmw_handle_debug_command_function(char *strTokenArray[], + char *response) { - char paramStr[PARAM_STR_BUFF_SIZE] = {0}; - char displayStr[PARAM_STR_BUFF_SIZE] = {0}; + char paramStr[PARAM_STR_BUFF_SIZE] = { 0 }; + char displayStr[PARAM_STR_BUFF_SIZE] = { 0 }; void *paramvalue = NULL; int32_t value = 0; int32_t ret = 0; @@ -344,86 +451,79 @@ static int32_t ocmw_handle_debug_command_function(char* strTokenArray[], logerr("%s(): NULL pointer error", __func__); return FAILED; } - if((strncmp("debug", strTokenArray[0], - strlen("debug")) == 0) && - (strncmp(strTokenArray[1], "set", strlen("set")) - == 0)) { + if ((strncmp("debug", strTokenArray[0], strlen("debug")) == 0) && + (strncmp(strTokenArray[1], "set", strlen("set")) == 0)) { /* Registers debug option */ - if((strncmp("debug.I2C", strTokenArray[0], - strlen("debug.I2C")) == 0) && - (strncmp(strTokenArray[1], "set", strlen("set")) - == 0)) { + if ((strncmp("debug.I2C", strTokenArray[0], strlen("debug.I2C")) == + 0) && + (strncmp(strTokenArray[1], "set", strlen("set")) == 0)) { I2CInfo.slaveAddress = atoi(strTokenArray[2]); I2CInfo.numOfBytes = atoi(strTokenArray[3]); I2CInfo.regAddress = atoi(strTokenArray[4]); I2CInfo.regValue = atoi(strTokenArray[5]); - paramvalue = (void*) &I2CInfo; - sprintf(displayStr, "%s (slave address :%s noOfBytes :%s" - " Register Address :%s) %s= %s", strTokenArray[0], - strTokenArray[2], strTokenArray[3], - strTokenArray[4], strTokenArray[1], strTokenArray[5]); + paramvalue = (void *)&I2CInfo; + sprintf(displayStr, + "%s (slave address :%s noOfBytes :%s" + " Register Address :%s) %s= %s", + strTokenArray[0], strTokenArray[2], strTokenArray[3], + strTokenArray[4], strTokenArray[1], strTokenArray[5]); } else if ((strncmp("debug.ethernet", strTokenArray[0], - strlen("debug.ethernet")) == 0)) { + strlen("debug.ethernet")) == 0)) { MDIOInfo.regAddress = atoi(strTokenArray[2]); MDIOInfo.regValue = atoi(strTokenArray[3]); - paramvalue = (void*) &MDIOInfo; + paramvalue = (void *)&MDIOInfo; sprintf(displayStr, "%s (Register Address :%s) %s = %s", - strTokenArray[0], strTokenArray[2], - strTokenArray[1], strTokenArray[3]); + strTokenArray[0], strTokenArray[2], strTokenArray[1], + strTokenArray[3]); } else { GPIOInfo.pin = atoi(strTokenArray[2]); GPIOInfo.value = atoi(strTokenArray[3]); - paramvalue = (void*) &GPIOInfo; - sprintf(displayStr, "%s (Pin No :%s) %s = %s", - strTokenArray[0], strTokenArray[2], - strTokenArray[1], strTokenArray[3]); + paramvalue = (void *)&GPIOInfo; + sprintf(displayStr, "%s (Pin No :%s) %s = %s", strTokenArray[0], + strTokenArray[2], strTokenArray[1], strTokenArray[3]); } - } else if((strncmp("debug", strTokenArray[0], - strlen("debug")) == 0) && - (strncmp(strTokenArray[1], "get", strlen("get")) - == 0)) { + } else if ((strncmp("debug", strTokenArray[0], strlen("debug")) == 0) && + (strncmp(strTokenArray[1], "get", strlen("get")) == 0)) { /* Registers debug option */ - if((strncmp("debug.I2C", strTokenArray[0], - strlen("debug.I2C")) == 0) && - (strncmp(strTokenArray[1], "get", strlen("get")) - == 0)) { + if ((strncmp("debug.I2C", strTokenArray[0], strlen("debug.I2C")) == + 0) && + (strncmp(strTokenArray[1], "get", strlen("get")) == 0)) { I2CInfo.slaveAddress = atoi(strTokenArray[2]); I2CInfo.numOfBytes = atoi(strTokenArray[3]); I2CInfo.regAddress = atoi(strTokenArray[4]); - paramvalue = (void*) &I2CInfo; - sprintf(displayStr, "%s (slave address :%s noOfBytes :%s" - " Register Address :%s) %s", strTokenArray[0], - strTokenArray[2], strTokenArray[3], - strTokenArray[4], strTokenArray[1]); - } else if ((strncmp("debug.ethernet", strTokenArray[0], - strlen("debug.ethernet")) == 0)) { + paramvalue = (void *)&I2CInfo; + sprintf(displayStr, + "%s (slave address :%s noOfBytes :%s" + " Register Address :%s) %s", + strTokenArray[0], strTokenArray[2], strTokenArray[3], + strTokenArray[4], strTokenArray[1]); + } else if ((strncmp("debug.ethernet", strTokenArray[0], + strlen("debug.ethernet")) == 0)) { MDIOInfo.regAddress = atoi(strTokenArray[2]); - paramvalue = (void*) &MDIOInfo; + paramvalue = (void *)&MDIOInfo; sprintf(displayStr, "%s (Register Address :%s) %s", - strTokenArray[0], strTokenArray[2], - strTokenArray[1]); + strTokenArray[0], strTokenArray[2], strTokenArray[1]); } else { GPIOInfo.pin = atoi(strTokenArray[2]); - paramvalue = (void*) &GPIOInfo; - sprintf(displayStr, "%s (Pin No :%s) %s", - strTokenArray[0], strTokenArray[2], - strTokenArray[1]); + paramvalue = (void *)&GPIOInfo; + sprintf(displayStr, "%s (Pin No :%s) %s", strTokenArray[0], + strTokenArray[2], strTokenArray[1]); } } else { - paramvalue = (void*) &value; + paramvalue = (void *)&value; } - if ((snprintf(paramStr, PARAM_STR_BUFF_SIZE, "%s.%s", - strTokenArray[1],strTokenArray[0])) < 0) { + if ((snprintf(paramStr, PARAM_STR_BUFF_SIZE, "%s.%s", strTokenArray[1], + strTokenArray[0])) < 0) { return FAILED; } - ret = ocmw_msgproc_send_msg(&strTokenArray[0], 0, - OCMP_MSG_TYPE_COMMAND, (int8_t *) paramStr, paramvalue); + ret = ocmw_msgproc_send_msg(&strTokenArray[0], 0, OCMP_MSG_TYPE_COMMAND, + (int8_t *)paramStr, paramvalue); if (ret != SUCCESS) { snprintf(response, RES_STR_BUFF_SIZE, "%s : Failed", displayStr); } else { - if ((snprintf(response, RES_STR_BUFF_SIZE, "%s %s", - strTokenArray[0], dataOutBufFromEc)) < 0) { + if ((snprintf(response, RES_STR_BUFF_SIZE, "%s %s", strTokenArray[0], + dataOutBufFromEc)) < 0) { return FAILED; } } @@ -436,105 +536,116 @@ static int32_t ocmw_handle_debug_command_function(char* strTokenArray[], * Input(s) : strTokenArray, action * Output(s) : response ***************************************************************************/ -static int32_t ocmw_handle_testmod_command_function(char* strTokenArray[], - char *response) +static int32_t ocmw_handle_testmod_command_function(char *strTokenArray[], + char *response) { - char paramStr[PARAM_STR_BUFF_SIZE] = {0}; - char msgstr[PARAM_STR_BUFF_SIZE] = {0}; + char paramStr[PARAM_STR_BUFF_SIZE] = { 0 }; + char msgstr[PARAM_STR_BUFF_SIZE] = { 0 }; void *paramvalue = NULL; int32_t value = 0; int32_t len = 0; int32_t ret = 0; - char tempParamStr[PARAM_STR_MAX_BUFF_SIZE] = {0}; + char tempParamStr[PARAM_STR_MAX_BUFF_SIZE] = { 0 }; if (strTokenArray == NULL || response == NULL) { logerr("%s(): NULL pointer error", __func__); return FAILED; } - if ((strncmp(strTokenArray[1], "send", strlen("send"))) == - 0) { + if ((strncmp(strTokenArray[1], "send", strlen("send"))) == 0) { if (strlen(strTokenArray[2]) > OCMW_MAX_IMEI_SIZE) { - if ((snprintf(response, RES_STR_BUFF_SIZE, "%s.%s " - "(number = %s, msg = %s) : Error : Number " - "Invalid", strTokenArray[0], strTokenArray[1], - strTokenArray[2], strTokenArray[3])) < 0) { + if ((snprintf(response, RES_STR_BUFF_SIZE, + "%s.%s " + "(number = %s, msg = %s) : Error : Number " + "Invalid", + strTokenArray[0], strTokenArray[1], strTokenArray[2], + strTokenArray[3])) < 0) { return FAILED; } return FAILED; } if (ocmw_check_numeric_number(strTokenArray[2]) != SUCCESS) { - if ((snprintf(response, RES_STR_BUFF_SIZE, "%s.%s " - "(number = %s, msg = %s) : Error : Number " - "Invalid", strTokenArray[0], strTokenArray[1], - strTokenArray[2], strTokenArray[3])) < 0) { + if ((snprintf(response, RES_STR_BUFF_SIZE, + "%s.%s " + "(number = %s, msg = %s) : Error : Number " + "Invalid", + strTokenArray[0], strTokenArray[1], strTokenArray[2], + strTokenArray[3])) < 0) { return FAILED; } return FAILED; } len = strlen(strTokenArray[3]); - len = - (len < OCMW_MAX_MSG_SIZE) ? len : OCMW_MAX_MSG_SIZE - 1; - if ((snprintf(msgstr, PARAM_STR_BUFF_SIZE, "%s", - strTokenArray[2])) - < 0) { + len = (len < OCMW_MAX_MSG_SIZE) ? len : OCMW_MAX_MSG_SIZE - 1; + if ((snprintf(msgstr, PARAM_STR_BUFF_SIZE, "%s", strTokenArray[2])) < + 0) { return FAILED; } if ((snprintf(&msgstr[TESTMOD_MAX_LEN], PARAM_STR_BUFF_SIZE, "%s", - strTokenArray[3])) < 0) { + strTokenArray[3])) < 0) { return FAILED; } - paramvalue = (void *) msgstr; - } else if (strncmp(strTokenArray[1], "dial", strlen("dial")) == - 0) { + paramvalue = (void *)msgstr; + } else if (strncmp(strTokenArray[1], "dial", strlen("dial")) == 0) { if (strlen(strTokenArray[2]) > OCMW_MAX_IMEI_SIZE) { - if ((snprintf(response, RES_STR_BUFF_SIZE, "%s.%s " - "(number = %s) : Error : Number " - "Invalid", strTokenArray[0], strTokenArray[1], strTokenArray[2])) < 0) { + if ((snprintf(response, RES_STR_BUFF_SIZE, + "%s.%s " + "(number = %s) : Error : Number " + "Invalid", + strTokenArray[0], strTokenArray[1], + strTokenArray[2])) < 0) { return FAILED; } return FAILED; } if (ocmw_check_numeric_number(strTokenArray[2]) != SUCCESS) { - if ((snprintf(response, RES_STR_BUFF_SIZE, "%s.%s " - "(number = %s) : Error : Number " - "Invalid", strTokenArray[0], strTokenArray[1], strTokenArray[2])) < 0) { + if ((snprintf(response, RES_STR_BUFF_SIZE, + "%s.%s " + "(number = %s) : Error : Number " + "Invalid", + strTokenArray[0], strTokenArray[1], + strTokenArray[2])) < 0) { return FAILED; } return FAILED; } - paramvalue = (void*) (strTokenArray[2]); + paramvalue = (void *)(strTokenArray[2]); } else { - paramvalue = (void*) &value; + paramvalue = (void *)&value; } - strcpy(tempParamStr,strTokenArray[0]); - if ((snprintf(paramStr, PARAM_STR_BUFF_SIZE, "%s.%s", - strTokenArray[1], strTokenArray[0])) < 0) { + strcpy(tempParamStr, strTokenArray[0]); + if ((snprintf(paramStr, PARAM_STR_BUFF_SIZE, "%s.%s", strTokenArray[1], + strTokenArray[0])) < 0) { return FAILED; } - ret = ocmw_msgproc_send_msg(&strTokenArray[0], 0, - OCMP_MSG_TYPE_COMMAND, (int8_t *) paramStr,paramvalue); + ret = ocmw_msgproc_send_msg(&strTokenArray[0], 0, OCMP_MSG_TYPE_COMMAND, + (int8_t *)paramStr, paramvalue); if (strncmp(strTokenArray[1], "get", strlen("get")) == 0) { - if ((snprintf(response, RES_STR_BUFF_SIZE, "%s.%s = %s", - tempParamStr, strTokenArray[1], dataOutBufFromEc)) < 0) { + if ((snprintf(response, RES_STR_BUFF_SIZE, "%s.%s = %s", tempParamStr, + strTokenArray[1], dataOutBufFromEc)) < 0) { return FAILED; } } else if (strncmp(strTokenArray[1], "send", strlen("send")) == 0) { - if ((snprintf(response, RES_STR_BUFF_SIZE, "%s.%s (number = %s msg = %s)" - " : %s", strTokenArray[0], strTokenArray[1], strTokenArray[2], - strTokenArray[3], (ret != SUCCESS) ? "Failed" : "Success")) < 0) { + if ((snprintf(response, RES_STR_BUFF_SIZE, + "%s.%s (number = %s msg = %s)" + " : %s", + strTokenArray[0], strTokenArray[1], strTokenArray[2], + strTokenArray[3], + (ret != SUCCESS) ? "Failed" : "Success")) < 0) { return FAILED; } } else if (strncmp(strTokenArray[1], "dial", strlen("dial")) == 0) { - if ((snprintf(response, RES_STR_BUFF_SIZE, "%s.%s (number = %s) :" - " %s", strTokenArray[0], strTokenArray[1], strTokenArray[2], - (ret != SUCCESS) ? "Failed" : "Success")) < 0) { + if ((snprintf(response, RES_STR_BUFF_SIZE, + "%s.%s (number = %s) :" + " %s", + strTokenArray[0], strTokenArray[1], strTokenArray[2], + (ret != SUCCESS) ? "Failed" : "Success")) < 0) { return FAILED; } } else { - if ((snprintf(response, RES_STR_BUFF_SIZE, "%s.%s : %s", strTokenArray[0], - strTokenArray[1], (ret != SUCCESS) ? "Failed" : "Success")) < - 0) { + if ((snprintf(response, RES_STR_BUFF_SIZE, "%s.%s : %s", + strTokenArray[0], strTokenArray[1], + (ret != SUCCESS) ? "Failed" : "Success")) < 0) { return FAILED; } } @@ -548,15 +659,15 @@ static int32_t ocmw_handle_testmod_command_function(char* strTokenArray[], * Input(s) : strTokenArray, action * Output(s) : response ***************************************************************************/ -static int8_t ocmw_handle_ethernet_command_function(char* strTokenArray[], - char *response) +static int8_t ocmw_handle_ethernet_command_function(char *strTokenArray[], + char *response) { char paramStr[PARAM_STR_BUFF_SIZE] = { 0 }; void *paramvalue = NULL; int32_t value = 0; int32_t ret = 0; - char tempParamStr[PARAM_STR_MAX_BUFF_SIZE] = {0}; + char tempParamStr[PARAM_STR_MAX_BUFF_SIZE] = { 0 }; if (strTokenArray == NULL || response == NULL) { logerr("%s(): NULL pointer error", __func__); @@ -564,36 +675,36 @@ static int8_t ocmw_handle_ethernet_command_function(char* strTokenArray[], } value = atoi(strTokenArray[2]); - if (((value > 2) || (value < 0)) && - (strstr(strTokenArray[1],"loopBk"))) { - if ((snprintf(response, RES_STR_BUFF_SIZE, "%s.%s " - "(number = %s) : Error : Number Invalid", - strTokenArray[0], strTokenArray[1], strTokenArray[2])) < 0) { - + if (((value > 2) || (value < 0)) && (strstr(strTokenArray[1], "loopBk"))) { + if ((snprintf(response, RES_STR_BUFF_SIZE, + "%s.%s " + "(number = %s) : Error : Number Invalid", + strTokenArray[0], strTokenArray[1], strTokenArray[2])) < + 0) { return FAILED; } return FAILED; } - paramvalue = (void*) &value; - strcpy(tempParamStr,strTokenArray[0]); - if ((snprintf(paramStr, PARAM_STR_BUFF_SIZE, "%s.%s", - strTokenArray[1],strTokenArray[0])) < 0) { + paramvalue = (void *)&value; + strcpy(tempParamStr, strTokenArray[0]); + if ((snprintf(paramStr, PARAM_STR_BUFF_SIZE, "%s.%s", strTokenArray[1], + strTokenArray[0])) < 0) { return FAILED; } - ret = ocmw_msgproc_send_msg(&strTokenArray[0], 0, - OCMP_MSG_TYPE_COMMAND, (int8_t *) paramStr, paramvalue); + ret = ocmw_msgproc_send_msg(&strTokenArray[0], 0, OCMP_MSG_TYPE_COMMAND, + (int8_t *)paramStr, paramvalue); if (strncmp(strTokenArray[1], "dis_pktGen", strlen("dis_pktGen")) == 0) { if ((snprintf(response, RES_STR_BUFF_SIZE, "%s.%s : %s", - strTokenArray[0], strTokenArray[1], (ret != 0) ? "Failed" : - "Success")) < 0) { + strTokenArray[0], strTokenArray[1], + (ret != 0) ? "Failed" : "Success")) < 0) { return FAILED; } } else { /* processing enable_pktGen */ if ((snprintf(response, RES_STR_BUFF_SIZE, "%s.%s %s : %s", - strTokenArray[0], strTokenArray[1], strTokenArray[2], - (ret != 0) ? "Failed" : "Success")) < 0) { + strTokenArray[0], strTokenArray[1], strTokenArray[2], + (ret != 0) ? "Failed" : "Success")) < 0) { return FAILED; } } @@ -605,38 +716,37 @@ static int8_t ocmw_handle_ethernet_command_function(char* strTokenArray[], * Input(s) : strTokenArray, action * Output(s) : response ***************************************************************************/ -static int32_t ocmw_handle_hci_led_set_command_function(char* strTokenArray[], - char *response) +static int32_t ocmw_handle_hci_led_set_command_function(char *strTokenArray[], + char *response) { char paramStr[PARAM_STR_BUFF_SIZE] = { 0 }; void *paramvalue = NULL; int32_t value = 0; int32_t ret = 0; - char tempParamStr[PARAM_STR_MAX_BUFF_SIZE] = {0}; + char tempParamStr[PARAM_STR_MAX_BUFF_SIZE] = { 0 }; if (strTokenArray == NULL || response == NULL) { logerr("%s(): NULL pointer error", __func__); return FAILED; } value = atoi(strTokenArray[2]); - paramvalue = (void*) &value; - strcpy(tempParamStr,strTokenArray[0]); - if ((snprintf(paramStr, PARAM_STR_BUFF_SIZE, "%s.%s", - strTokenArray[1],strTokenArray[0])) < 0) { + paramvalue = (void *)&value; + strcpy(tempParamStr, strTokenArray[0]); + if ((snprintf(paramStr, PARAM_STR_BUFF_SIZE, "%s.%s", strTokenArray[1], + strTokenArray[0])) < 0) { return FAILED; } - ret = ocmw_msgproc_send_msg(&strTokenArray[0], 0, - OCMP_MSG_TYPE_COMMAND, (int8_t *) paramStr, paramvalue); - if (strncmp(strTokenArray[1], "get", strlen("get")) - == 0) { - if ((snprintf(response, RES_STR_BUFF_SIZE, "%s.%s = %s", - tempParamStr, strTokenArray[1],dataOutBufFromEc)) < 0) { + ret = ocmw_msgproc_send_msg(&strTokenArray[0], 0, OCMP_MSG_TYPE_COMMAND, + (int8_t *)paramStr, paramvalue); + if (strncmp(strTokenArray[1], "get", strlen("get")) == 0) { + if ((snprintf(response, RES_STR_BUFF_SIZE, "%s.%s = %s", tempParamStr, + strTokenArray[1], dataOutBufFromEc)) < 0) { return FAILED; } } else { if ((snprintf(response, RES_STR_BUFF_SIZE, "%s.%s %s : %s", - strTokenArray[0], strTokenArray[1], strTokenArray[2], - (ret != 0) ? "Failed" : "Success")) < 0) { + strTokenArray[0], strTokenArray[1], strTokenArray[2], + (ret != 0) ? "Failed" : "Success")) < 0) { return FAILED; } } @@ -649,13 +759,13 @@ static int32_t ocmw_handle_hci_led_set_command_function(char* strTokenArray[], * Input(s) : strTokenArray, action * Output(s) : response ***************************************************************************/ -static int32_t ocmw_handle_command_function(char* strTokenArray[], - char *response) +static int32_t ocmw_handle_command_function(char *strTokenArray[], + char *response) { char paramStr[PARAM_STR_BUFF_SIZE]; int32_t ret = 0; int32_t paramVal = 0; - char tempParamStr[PARAM_STR_MAX_BUFF_SIZE] = {0}; + char tempParamStr[PARAM_STR_MAX_BUFF_SIZE] = { 0 }; if (strTokenArray == NULL || response == NULL) { logerr("%s(): NULL pointer error", __func__); @@ -664,15 +774,14 @@ static int32_t ocmw_handle_command_function(char* strTokenArray[], strcpy(tempParamStr, strTokenArray[0]); if ((snprintf(paramStr, PARAM_STR_BUFF_SIZE, "%s.%s", strTokenArray[1], - strTokenArray[0])) < 0) { + strTokenArray[0])) < 0) { return FAILED; } - ret = ocmw_msgproc_send_msg(&strTokenArray[0], 0, - OCMP_MSG_TYPE_COMMAND, (int8_t *) paramStr, ¶mVal); - if ((snprintf(response, RES_STR_BUFF_SIZE, "%s.%s : %s", - strTokenArray[0], strTokenArray[1], - (ret != 0) ? "Failed" : "Success")) < 0) { + ret = ocmw_msgproc_send_msg(&strTokenArray[0], 0, OCMP_MSG_TYPE_COMMAND, + (int8_t *)paramStr, ¶mVal); + if ((snprintf(response, RES_STR_BUFF_SIZE, "%s.%s : %s", strTokenArray[0], + strTokenArray[1], (ret != 0) ? "Failed" : "Success")) < 0) { return FAILED; } @@ -685,7 +794,7 @@ static int32_t ocmw_handle_command_function(char* strTokenArray[], * Input(s) : strTokenArray * Output(s) : response ***************************************************************************/ -static int32_t ocmw_handle_post_command(char* strTokenArray[], char *response) +static int32_t ocmw_handle_post_command(char *strTokenArray[], char *response) { char paramStr[PARAM_STR_BUFF_SIZE], tmp[TEMP_STR_BUFF_SIZE]; char subSys[PARAM_STR_BUFF_SIZE]; @@ -701,29 +810,30 @@ static int32_t ocmw_handle_post_command(char* strTokenArray[], char *response) return FAILED; } - strcpy(subSys,postResult.results[0].subsysName); + strcpy(subSys, postResult.results[0].subsysName); if (strcmp("set", strTokenArray[1]) == 0) { - if ((snprintf(paramStr, PARAM_STR_BUFF_SIZE, "%s.%s", - strTokenArray[0], strTokenArray[1])) < 0) { + if ((snprintf(paramStr, PARAM_STR_BUFF_SIZE, "%s.%s", strTokenArray[0], + strTokenArray[1])) < 0) { return FAILED; } ret = ocmw_msgproc_send_msg(&strTokenArray[0], OCMP_AXN_TYPE_SET, - OCMP_MSG_TYPE_POST, (int8_t *) paramStr,¶mVal); + OCMP_MSG_TYPE_POST, (int8_t *)paramStr, + ¶mVal); if ((snprintf(response, RES_STR_BUFF_SIZE, "%s : %s", paramStr, - (ret != 0) ? "Failed" : "Success")) < - 0) { + (ret != 0) ? "Failed" : "Success")) < 0) { return FAILED; } } else if (strcmp("get", strTokenArray[1]) == 0) { if ((snprintf(paramStr, PARAM_STR_BUFF_SIZE, "%s.%s", strTokenArray[0], - strTokenArray[1])) < 0) { + strTokenArray[1])) < 0) { return FAILED; } ret = ocmw_msgproc_send_msg(&strTokenArray[0], OCMP_AXN_TYPE_GET, - OCMP_MSG_TYPE_POST, (int8_t *) paramStr, ¶mVal); + OCMP_MSG_TYPE_POST, (int8_t *)paramStr, + ¶mVal); if (ret != 0) { - if ((snprintf(response, RES_STR_BUFF_SIZE, "%s : Failed", paramStr)) - < 0) { + if ((snprintf(response, RES_STR_BUFF_SIZE, "%s : Failed", + paramStr)) < 0) { return FAILED; } } @@ -735,18 +845,20 @@ static int32_t ocmw_handle_post_command(char* strTokenArray[], char *response) return FAILED; } - strncpy(response, - "-------------------------------------------------------------------------------\n", - RES_STR_BUFF_SIZE); - if ((snprintf(tmp, TEMP_STR_BUFF_SIZE, "%-16s%-40s%-20s\n", - "Subsystem", "Device Name", "POST Status")) < 0) { + strncpy( + response, + "-------------------------------------------------------------------------------\n", + RES_STR_BUFF_SIZE); + if ((snprintf(tmp, TEMP_STR_BUFF_SIZE, "%-16s%-40s%-20s\n", "Subsystem", + "Device Name", "POST Status")) < 0) { return FAILED; } strncat(response, tmp, TEMP_STR_BUFF_SIZE); - if ((snprintf(tmp, TEMP_STR_BUFF_SIZE, - "-------------------------------------------------------------------------------\n")) - < 0) { + if ((snprintf( + tmp, TEMP_STR_BUFF_SIZE, + "-------------------------------------------------------------------------------\n")) < + 0) { return FAILED; } strncat(response, tmp, TEMP_STR_BUFF_SIZE); @@ -758,34 +870,34 @@ static int32_t ocmw_handle_post_command(char* strTokenArray[], char *response) if (ret < 0) { strncpy(reply.desc, "", PARAM_STR_BUFF_SIZE); } - if (strcmp(subSys,postResult.results[index].subsysName) != 0) { - strcpy(subSys,postResult.results[index].subsysName); + if (strcmp(subSys, postResult.results[index].subsysName) != 0) { + strcpy(subSys, postResult.results[index].subsysName); count = 0; } if (count > 0) { strcpy(postResult.results[index].subsysName, " "); if ((snprintf(tmp, TEMP_STR_BUFF_SIZE, "%-16s%-40s%-20s\n", - postResult.results[index].subsysName, - postResult.results[index].deviceName, - reply.desc)) < 0) { + postResult.results[index].subsysName, + postResult.results[index].deviceName, + reply.desc)) < 0) { return FAILED; } strncat(response, tmp, TEMP_STR_BUFF_SIZE); } else { - strcpy(subSys,postResult.results[index].subsysName); + strcpy(subSys, postResult.results[index].subsysName); postResult.results[index].subsysName[0] = toupper(postResult.results[index].subsysName[0]); if ((snprintf(tmp, TEMP_STR_BUFF_SIZE, "%-16s\n", - postResult.results[index].subsysName)) < 0) { + postResult.results[index].subsysName)) < 0) { return FAILED; } strncat(response, tmp, TEMP_STR_BUFF_SIZE); strcpy(postResult.results[index].subsysName, " "); if ((snprintf(tmp, TEMP_STR_BUFF_SIZE, "%-16s%-40s%-20s\n", - postResult.results[index].subsysName, - postResult.results[index].deviceName, - reply.desc)) < 0) { + postResult.results[index].subsysName, + postResult.results[index].deviceName, + reply.desc)) < 0) { return FAILED; } strncat(response, tmp, TEMP_STR_BUFF_SIZE); @@ -793,9 +905,10 @@ static int32_t ocmw_handle_post_command(char* strTokenArray[], char *response) } } - if ((snprintf(tmp, TEMP_STR_BUFF_SIZE, - "-------------------------------------------------------------------------------\n")) - < 0) { + if ((snprintf( + tmp, TEMP_STR_BUFF_SIZE, + "-------------------------------------------------------------------------------\n")) < + 0) { return FAILED; } @@ -803,7 +916,8 @@ static int32_t ocmw_handle_post_command(char* strTokenArray[], char *response) } else { if ((snprintf(response, RES_STR_BUFF_SIZE, - "%s.%s : Error : Unknown parameter ", strTokenArray[0], strTokenArray[1])) < 0) { + "%s.%s : Error : Unknown parameter ", strTokenArray[0], + strTokenArray[1])) < 0) { return FAILED; } return FAILED; @@ -816,7 +930,8 @@ static int32_t ocmw_handle_post_command(char* strTokenArray[], char *response) * Input(s) : strTokenArray * Output(s) : strTokenArray ***************************************************************************/ -static void ocmw_free_pointer(char **strTokenArray) { +static void ocmw_free_pointer(char **strTokenArray) +{ if (strTokenArray) { free(strTokenArray); } @@ -831,8 +946,10 @@ static void ocmw_free_pointer(char **strTokenArray) { static ocmw_token_t ocmw_match_set_get_string(char *str) { struct matchSetGet *index = ocmwSetGetTable; - for(; index->key != NULL && - strncmp(index->key, str, strlen(index->key)) != 0; ++index); + for (; index->key != NULL && + strncmp(index->key, str, strlen(index->key)) != 0; + ++index) + ; return index->token; } /************************************************************************** @@ -844,8 +961,8 @@ static ocmw_token_t ocmw_match_set_get_string(char *str) static ocmw_token_t ocmw_match_string(char *str) { struct matchString *index = ocmwTokenTable; - for(; index->key != NULL && - strncmp(index->key, str, strlen(index->key)) != 0; ++index); + for (; index->key != NULL && strcmp(index->key, str) != 0; ++index) + ; return index->token; } /************************************************************************** @@ -855,19 +972,18 @@ static ocmw_token_t ocmw_match_string(char *str) * Output(s) : response ***************************************************************************/ int32_t ocmw_frame_errorString(const char *cmdStr, char *errorString, - char *response) + char *response) { if (errorString == NULL || response == NULL) { logerr("%s(): NULL pointer error", __func__); return FAILED; } - if (snprintf(response, RES_STR_BUFF_SIZE, "%s : %s", - cmdStr, errorString)) { + if (snprintf(response, RES_STR_BUFF_SIZE, "%s : %s", cmdStr, errorString)) { logerr("%s(): Sprintf error", __func__); return FAILED; } strcat(response, "\nPlease refer help menu:\n\"" - " --help or . --help\""); + " --help or . --help\""); return SUCCESS; } /************************************************************************** @@ -879,8 +995,8 @@ int32_t ocmw_frame_errorString(const char *cmdStr, char *errorString, int32_t ocmw_clicmd_handler(const char *cmdStr, char *response) { char **strTokenArray = NULL; - char class[PARAMSTR_NUMBER_LEN] = {0}; - char paramStr[PARAM_STR_BUFF_SIZE] = {0}; + char class[PARAMSTR_NUMBER_LEN] = { 0 }; + char paramStr[PARAM_STR_BUFF_SIZE] = { 0 }; int32_t strTokenCount = 0; int32_t ret = 0; @@ -896,49 +1012,53 @@ int32_t ocmw_clicmd_handler(const char *cmdStr, char *response) if (ret < 0) { logerr("Error: command string ocmw_tokenize failed"); if ((snprintf(response, RES_STR_BUFF_SIZE, - "%s : Internal error occured in parsing CLI parameters", - cmdStr)) < 0) { + "%s : Internal error occured in parsing CLI parameters", + cmdStr)) < 0) { return FAILED; } ocmw_free_pointer(strTokenArray); return FAILED; } else { - if(strTokenCount > 1) { + if (strTokenCount > 1) { strncpy(paramStr, strTokenArray[0], strlen(strTokenArray[0])); /* Process the command */ - switch(ocmw_match_string(strTokenArray[1])) { + switch (ocmw_match_string(strTokenArray[1])) { case SET_STR: - switch(ocmw_match_set_get_string(strTokenArray[0])) { + switch (ocmw_match_set_get_string(strTokenArray[0])) { case HCI_STR: if (strTokenCount == 3) { ret = ocmw_handle_hci_led_set_command_function( - strTokenArray, response); + strTokenArray, response); ocmw_free_pointer(strTokenArray); return (ret != 0) ? FAILED : SUCCESS; } else { - ret = (strTokenCount < 3 ? - ocmw_frame_errorString(cmdStr, - INSUFFICIENT_PARAM, response) : - ocmw_frame_errorString(cmdStr, - INVALID_SYNTAX, response)); + ret = + (strTokenCount < 3 ? + ocmw_frame_errorString( + cmdStr, INSUFFICIENT_PARAM, + response) : + ocmw_frame_errorString( + cmdStr, INVALID_SYNTAX, response)); ocmw_free_pointer(strTokenArray); return FAILED; } break; case DEBUG_STR: if (strncmp("debug.I2C", strTokenArray[0], - strlen("debug.I2C")) == 0) { + strlen("debug.I2C")) == 0) { if (strTokenCount == 6) { ret = ocmw_handle_debug_command_function( - strTokenArray, response); + strTokenArray, response); ocmw_free_pointer(strTokenArray); return (ret != 0) ? FAILED : SUCCESS; } else { ret = (strTokenCount < 6 ? - ocmw_frame_errorString(cmdStr, - INSUFFICIENT_PARAM, response) : - ocmw_frame_errorString(cmdStr, - INVALID_SYNTAX, response)); + ocmw_frame_errorString( + cmdStr, INSUFFICIENT_PARAM, + response) : + ocmw_frame_errorString( + cmdStr, INVALID_SYNTAX, + response)); ocmw_free_pointer(strTokenArray); return FAILED; } @@ -950,10 +1070,12 @@ int32_t ocmw_clicmd_handler(const char *cmdStr, char *response) return (ret != 0) ? FAILED : SUCCESS; } else { ret = (strTokenCount < 4 ? - ocmw_frame_errorString(cmdStr, - INSUFFICIENT_PARAM, response) : - ocmw_frame_errorString(cmdStr, - INVALID_SYNTAX, response)); + ocmw_frame_errorString( + cmdStr, INSUFFICIENT_PARAM, + response) : + ocmw_frame_errorString( + cmdStr, INVALID_SYNTAX, + response)); ocmw_free_pointer(strTokenArray); return FAILED; } @@ -961,14 +1083,17 @@ int32_t ocmw_clicmd_handler(const char *cmdStr, char *response) break; case ENABLE_SET_STR: if (strTokenCount == 2) { - ret = ocmw_handle_post_command(strTokenArray, response); + ret = ocmw_handle_post_command(strTokenArray, + response); return (ret != 0) ? FAILED : SUCCESS; } else { - ret = (strTokenCount < 2 ? - ocmw_frame_errorString(cmdStr, - INSUFFICIENT_PARAM, response) : - ocmw_frame_errorString(cmdStr, - INVALID_SYNTAX, response)); + ret = + (strTokenCount < 2 ? + ocmw_frame_errorString( + cmdStr, INSUFFICIENT_PARAM, + response) : + ocmw_frame_errorString( + cmdStr, INVALID_SYNTAX, response)); ocmw_free_pointer(strTokenArray); return FAILED; } @@ -977,26 +1102,29 @@ int32_t ocmw_clicmd_handler(const char *cmdStr, char *response) if (strTokenCount == 3) { ocmw_tokenize_class(paramStr, class, 2); if (strcmp("config", class) == 0) { - ret = ocmw_handle_set_config(&strTokenArray[0], - response); + ret = ocmw_handle_set_config( + &strTokenArray[0], response); ocmw_free_pointer(strTokenArray); return (ret != 0) ? FAILED : SUCCESS; } else { - if ((snprintf(response, - RES_STR_BUFF_SIZE, "[Error]: " - "Incorrect %s request '%s'", - strTokenArray[0],strTokenArray[1])) < 0) { + if ((snprintf(response, RES_STR_BUFF_SIZE, + "[Error]: " + "Incorrect %s request '%s'", + strTokenArray[0], + strTokenArray[1])) < 0) { return FAILED; } ocmw_free_pointer(strTokenArray); return FAILED; } } else { - ret = (strTokenCount < 3 ? - ocmw_frame_errorString(cmdStr, - INSUFFICIENT_PARAM, response) : - ocmw_frame_errorString(cmdStr, - INVALID_SYNTAX, response)); + ret = + (strTokenCount < 3 ? + ocmw_frame_errorString( + cmdStr, INSUFFICIENT_PARAM, + response) : + ocmw_frame_errorString( + cmdStr, INVALID_SYNTAX, response)); ocmw_free_pointer(strTokenArray); return FAILED; } @@ -1004,90 +1132,95 @@ int32_t ocmw_clicmd_handler(const char *cmdStr, char *response) } break; case GET_STR: - switch(ocmw_match_set_get_string(strTokenArray[0])) { + switch (ocmw_match_set_get_string(strTokenArray[0])) { case RESULT_STR: if (strTokenCount == 2) { - ret = ocmw_handle_post_command(strTokenArray, response); + ret = ocmw_handle_post_command(strTokenArray, + response); ocmw_free_pointer(strTokenArray); return (ret != 0) ? FAILED : SUCCESS; } else { - ret = (strTokenCount < 2 ? - ocmw_frame_errorString(cmdStr, - INSUFFICIENT_PARAM, response) : - ocmw_frame_errorString(cmdStr, - INVALID_SYNTAX, response)); + ret = + (strTokenCount < 2 ? + ocmw_frame_errorString( + cmdStr, INSUFFICIENT_PARAM, + response) : + ocmw_frame_errorString( + cmdStr, INVALID_SYNTAX, response)); ocmw_free_pointer(strTokenArray); return FAILED; } break; case DEBUG_STR: if (strncmp("debug.I2C", strTokenArray[0], - strlen("debug.I2C")) == 0) { + strlen("debug.I2C")) == 0) { if (strTokenCount == 5) { ret = ocmw_handle_debug_command_function( - strTokenArray, response); + strTokenArray, response); ocmw_free_pointer(strTokenArray); return (ret != 0) ? FAILED : SUCCESS; } else { ret = (strTokenCount < 5 ? - ocmw_frame_errorString(cmdStr, - INSUFFICIENT_PARAM, response) : - ocmw_frame_errorString(cmdStr, - INVALID_SYNTAX, response)); + ocmw_frame_errorString( + cmdStr, INSUFFICIENT_PARAM, + response) : + ocmw_frame_errorString( + cmdStr, INVALID_SYNTAX, + response)); ocmw_free_pointer(strTokenArray); return FAILED; } } else { if (strTokenCount == 3) { ret = ocmw_handle_debug_command_function( - strTokenArray, response); + strTokenArray, response); ocmw_free_pointer(strTokenArray); return (ret != 0) ? FAILED : SUCCESS; } else { ret = (strTokenCount < 3 ? - ocmw_frame_errorString(cmdStr, - INSUFFICIENT_PARAM, response) : - ocmw_frame_errorString(cmdStr, - INVALID_SYNTAX, response)); + ocmw_frame_errorString( + cmdStr, INSUFFICIENT_PARAM, + response) : + ocmw_frame_errorString( + cmdStr, INVALID_SYNTAX, + response)); ocmw_free_pointer(strTokenArray); return FAILED; } } break; - default : + default: if (strTokenCount == 2) { ocmw_tokenize_class(paramStr, class, 2); if (strcmp("config", class) == 0) { - ret = ocmw_handle_show_config(&strTokenArray[0], - response); + ret = ocmw_handle_show_config( + &strTokenArray[0], response); ocmw_free_pointer(strTokenArray); return (ret != 0) ? FAILED : SUCCESS; } else if (strcmp("status", class) == 0) { - ret = ocmw_handle_show_status(&strTokenArray[0], - response); + ret = ocmw_handle_show_status( + &strTokenArray[0], response); ocmw_free_pointer(strTokenArray); return (ret != 0) ? FAILED : SUCCESS; - } else if (strcmp("alerts", class) == 0) { - /* SCHEMA change :: Alert is not implimented */ - /* ret = ocmw_handle_show_alerts(&strTokenArray[0], response); - ocmw_free_pointer(strTokenArray); - return (ret != 0) ? FAILED : SUCCESS;*/ } else { - if ((snprintf(response, - RES_STR_BUFF_SIZE, "[Error]: " - "Incorrect %s request '%s'", - strTokenArray[0], strTokenArray[1])) < 0) { + if ((snprintf(response, RES_STR_BUFF_SIZE, + "[Error]: " + "Incorrect %s request '%s'", + strTokenArray[0], + strTokenArray[1])) < 0) { return FAILED; } ocmw_free_pointer(strTokenArray); return FAILED; } } else { - ret = (strTokenCount < 2 ? - ocmw_frame_errorString(cmdStr, - INSUFFICIENT_PARAM, response) : - ocmw_frame_errorString(cmdStr, - INVALID_SYNTAX, response)); + ret = + (strTokenCount < 2 ? + ocmw_frame_errorString( + cmdStr, INSUFFICIENT_PARAM, + response) : + ocmw_frame_errorString( + cmdStr, INVALID_SYNTAX, response)); ocmw_free_pointer(strTokenArray); return FAILED; } @@ -1099,16 +1232,17 @@ int32_t ocmw_clicmd_handler(const char *cmdStr, char *response) case ACTIVE_STR: case ECHO_STR: if (strTokenCount == 2) { - ret = ocmw_handle_command_function(strTokenArray, response); - ocmw_free_pointer(strTokenArray); + ret = ocmw_handle_command_function(strTokenArray, + response); + ocmw_free_pointer(strTokenArray); return (ret != 0) ? FAILED : SUCCESS; } else { ret = (strTokenCount < 2 ? - ocmw_frame_errorString(cmdStr, - INSUFFICIENT_PARAM, response) : - ocmw_frame_errorString(cmdStr, - INVALID_SYNTAX, response)); - ocmw_free_pointer(strTokenArray); + ocmw_frame_errorString( + cmdStr, INSUFFICIENT_PARAM, response) : + ocmw_frame_errorString( + cmdStr, INVALID_SYNTAX, response)); + ocmw_free_pointer(strTokenArray); return FAILED; } break; @@ -1116,84 +1250,100 @@ int32_t ocmw_clicmd_handler(const char *cmdStr, char *response) case CONNECT_STR: case ANSWER_STR: case HANGUP_STR: - if (strTokenCount == 2) { - ret = ocmw_handle_testmod_command_function(strTokenArray, - response); + if (strTokenCount == 2) { + ret = ocmw_handle_testmod_command_function( + strTokenArray, response); ocmw_free_pointer(strTokenArray); return (ret != 0) ? FAILED : SUCCESS; } else { ret = (strTokenCount < 2 ? - ocmw_frame_errorString(cmdStr, - INSUFFICIENT_PARAM, response) : - ocmw_frame_errorString(cmdStr, - INVALID_SYNTAX, response)); + ocmw_frame_errorString( + cmdStr, INSUFFICIENT_PARAM, response) : + ocmw_frame_errorString( + cmdStr, INVALID_SYNTAX, response)); ocmw_free_pointer(strTokenArray); return FAILED; } break; case SEND_STR: if (strTokenCount == 4) { - ret = ocmw_handle_testmod_command_function(strTokenArray, - response); - ocmw_free_pointer(strTokenArray); + ret = ocmw_handle_testmod_command_function( + strTokenArray, response); + ocmw_free_pointer(strTokenArray); return (ret != 0) ? FAILED : SUCCESS; } else { ret = (strTokenCount < 4 ? - ocmw_frame_errorString(cmdStr, - INSUFFICIENT_PARAM, response) : - ocmw_frame_errorString(cmdStr, - INVALID_SYNTAX, response)); - ocmw_free_pointer(strTokenArray); + ocmw_frame_errorString( + cmdStr, INSUFFICIENT_PARAM, response) : + ocmw_frame_errorString( + cmdStr, INVALID_SYNTAX, response)); + ocmw_free_pointer(strTokenArray); return FAILED; } break; case DIAL_STR: if (strTokenCount == 3) { - ret = ocmw_handle_testmod_command_function(strTokenArray, - response); - ocmw_free_pointer(strTokenArray); + ret = ocmw_handle_testmod_command_function( + strTokenArray, response); + ocmw_free_pointer(strTokenArray); return (ret != 0) ? FAILED : SUCCESS; } else { ret = (strTokenCount < 3 ? - ocmw_frame_errorString(cmdStr, - INSUFFICIENT_PARAM, response) : - ocmw_frame_errorString(cmdStr, - INVALID_SYNTAX, response)); - ocmw_free_pointer(strTokenArray); + ocmw_frame_errorString( + cmdStr, INSUFFICIENT_PARAM, response) : + ocmw_frame_errorString( + cmdStr, INVALID_SYNTAX, response)); + ocmw_free_pointer(strTokenArray); return FAILED; } break; - case ELOOPBK_STR: - case DLOOPBK_STR: - case EPKTGEN_STR: + case ELOOPBK_STR: + case DLOOPBK_STR: + case EPKTGEN_STR: if (strTokenCount == 3) { - ret = ocmw_handle_ethernet_command_function(strTokenArray, - response); - ocmw_free_pointer(strTokenArray); + ret = ocmw_handle_ethernet_command_function( + strTokenArray, response); + ocmw_free_pointer(strTokenArray); return (ret != 0) ? FAILED : SUCCESS; } else { ret = (strTokenCount < 3 ? - ocmw_frame_errorString(cmdStr, - INSUFFICIENT_PARAM, response) : - ocmw_frame_errorString(cmdStr, - INVALID_SYNTAX, response)); - ocmw_free_pointer(strTokenArray); + ocmw_frame_errorString( + cmdStr, INSUFFICIENT_PARAM, response) : + ocmw_frame_errorString( + cmdStr, INVALID_SYNTAX, response)); + ocmw_free_pointer(strTokenArray); return FAILED; } break; case DPKTGEN_STR: if (strTokenCount == 2) { - ret = ocmw_handle_ethernet_command_function(strTokenArray, - response); - ocmw_free_pointer(strTokenArray); + ret = ocmw_handle_ethernet_command_function( + strTokenArray, response); + ocmw_free_pointer(strTokenArray); return (ret != 0) ? FAILED : SUCCESS; } else { ret = (strTokenCount < 2 ? - ocmw_frame_errorString(cmdStr, - INSUFFICIENT_PARAM, response) : - ocmw_frame_errorString(cmdStr, - INVALID_SYNTAX, response)); - ocmw_free_pointer(strTokenArray); + ocmw_frame_errorString( + cmdStr, INSUFFICIENT_PARAM, response) : + ocmw_frame_errorString( + cmdStr, INVALID_SYNTAX, response)); + ocmw_free_pointer(strTokenArray); + return FAILED; + } + break; + case ALERTLOG_STR: + if (strTokenCount == 2) { + ret = ocmw_handle_show_all_alerts(&strTokenArray[0], + response); + ocmw_free_pointer(strTokenArray); + return (ret != 0) ? FAILED : SUCCESS; + } else { + ret = (strTokenCount < 2 ? + ocmw_frame_errorString( + cmdStr, INSUFFICIENT_PARAM, response) : + ocmw_frame_errorString( + cmdStr, INVALID_SYNTAX, response)); + ocmw_free_pointer(strTokenArray); return FAILED; } break; @@ -1201,10 +1351,12 @@ int32_t ocmw_clicmd_handler(const char *cmdStr, char *response) break; } } else { - if ((snprintf(response, RES_STR_BUFF_SIZE, + if ((snprintf( + response, RES_STR_BUFF_SIZE, "%s : Error : Invalid parameters \n Please refer help menu" ":\n\" --help or " - ". --help\"", cmdStr)) < 0) { + ". --help\"", + cmdStr)) < 0) { return FAILED; } ocmw_free_pointer(strTokenArray); diff --git a/firmware/host/ocmw/ocmw_core.c b/firmware/host/ocmw/ocmw_core.c index 7cb38bce0b..113bc49101 100644 --- a/firmware/host/ocmw/ocmw_core.c +++ b/firmware/host/ocmw/ocmw_core.c @@ -30,19 +30,22 @@ extern const Component sys_schema[]; subSystemInfo systemInfo; extern ocwarePostResultData ocwarePostArray[TEMP_STR_BUFF_SIZE]; -extern uint8_t ocwarePostArrayIndex; +extern uint8_t ocwarePostArrayIndex; +int8_t alertRecord = 1; +extern int8_t alertFlag; + ocwarePostReplyCode ocmwReplyCode[] = { /* Message Type, reply code, Description */ - {OCMP_MSG_TYPE_POST, POST_DEV_NOSTATUS , "POST DEV NOSTATUS"}, - {OCMP_MSG_TYPE_POST, POST_DEV_MISSING, "DEV MISSING"}, - {OCMP_MSG_TYPE_POST, POST_DEV_ID_MISMATCH, "DEV ID MISMATCH"}, - {OCMP_MSG_TYPE_POST, POST_DEV_FOUND, "DEV FOUND"}, - {OCMP_MSG_TYPE_POST, POST_DEV_CFG_DONE, "CFG DONE"}, - {OCMP_MSG_TYPE_POST, POST_DEV_NO_CFG_REQ, "NO CFG REQUIRED"}, - {OCMP_MSG_TYPE_POST, POST_DEV_CFG_FAIL, "CFG FAILED"}, - {OCMP_MSG_TYPE_POST, POST_DEV_FAULTY, "FAULT"}, - {OCMP_MSG_TYPE_POST, POST_DEV_CRITICAL_FAULT, "CRITICAL FAULT"}, - {OCMP_MSG_TYPE_POST, POST_DEV_NO_DRIVER_EXIST, "NO DRIVER EXIST"} + { OCMP_MSG_TYPE_POST, POST_DEV_NOSTATUS, "POST DEV NOSTATUS" }, + { OCMP_MSG_TYPE_POST, POST_DEV_MISSING, "DEV MISSING" }, + { OCMP_MSG_TYPE_POST, POST_DEV_ID_MISMATCH, "DEV ID MISMATCH" }, + { OCMP_MSG_TYPE_POST, POST_DEV_FOUND, "DEV FOUND" }, + { OCMP_MSG_TYPE_POST, POST_DEV_CFG_DONE, "CFG DONE" }, + { OCMP_MSG_TYPE_POST, POST_DEV_NO_CFG_REQ, "NO CFG REQUIRED" }, + { OCMP_MSG_TYPE_POST, POST_DEV_CFG_FAIL, "CFG FAILED" }, + { OCMP_MSG_TYPE_POST, POST_DEV_FAULTY, "FAULT" }, + { OCMP_MSG_TYPE_POST, POST_DEV_CRITICAL_FAULT, "CRITICAL FAULT" }, + { OCMP_MSG_TYPE_POST, POST_DEV_NO_DRIVER_EXIST, "NO DRIVER EXIST" } }; /****************************************************************************** * Function Name : ocmw_free_global_pointer @@ -50,10 +53,10 @@ ocwarePostReplyCode ocmwReplyCode[] = { * global variable * Input(s) : ptr * Output(s) : -******************************************************************************/ + ******************************************************************************/ void ocmw_free_global_pointer(void **ptr) { - if(*ptr != NULL) { + if (*ptr != NULL) { free(*ptr); *ptr = NULL; } @@ -65,10 +68,9 @@ void ocmw_free_global_pointer(void **ptr) * Input(s) : postResult * Output(s) : ******************************************************************************/ -char ocmw_retrieve_post_results_count (ocwarePostResults *postResult) +char ocmw_retrieve_post_results_count(ocwarePostResults *postResult) { - postResult->count = - sizeof(ocwarePostArray)/sizeof(ocwarePostArray[0]); + postResult->count = sizeof(ocwarePostArray) / sizeof(ocwarePostArray[0]); return SUCCESS; } @@ -78,11 +80,11 @@ char ocmw_retrieve_post_results_count (ocwarePostResults *postResult) * Input(s) : postResult * Output(s) : ******************************************************************************/ -char ocmw_retrieve_post_results (ocwarePostResults *postResult) +char ocmw_retrieve_post_results(ocwarePostResults *postResult) { memcpy(postResult->results, ocwarePostArray, - postResult->count * sizeof(ocwarePostResultData)); - memset(ocwarePostArray,0,sizeof(ocwarePostResultData)); + postResult->count * sizeof(ocwarePostResultData)); + memset(ocwarePostArray, 0, sizeof(ocwarePostResultData)); return SUCCESS; } @@ -93,16 +95,16 @@ char ocmw_retrieve_post_results (ocwarePostResults *postResult) * Input(s) : replyCode * Output(s) : ******************************************************************************/ -char ocmw_retrieve_reply_code_desc (ocwarePostReplyCode *replyCode) +char ocmw_retrieve_reply_code_desc(ocwarePostReplyCode *replyCode) { int32_t postSize = 0; int32_t sysIndex = 0; - postSize = sizeof(ocmwReplyCode)/sizeof(ocmwReplyCode[0]); + postSize = sizeof(ocmwReplyCode) / sizeof(ocmwReplyCode[0]); for (sysIndex = 0; sysIndex < postSize; sysIndex++) { if ((ocmwReplyCode[sysIndex].msgtype == replyCode->msgtype) && - (ocmwReplyCode[sysIndex].replycode == replyCode->replycode)) { + (ocmwReplyCode[sysIndex].replycode == replyCode->replycode)) { memset(replyCode->desc, 0, OCMW_POST_DESC_SIZE); strncpy(replyCode->desc, ocmwReplyCode[sysIndex].desc, strlen(ocmwReplyCode[sysIndex].desc)); @@ -118,8 +120,7 @@ char ocmw_retrieve_reply_code_desc (ocwarePostReplyCode *replyCode) * Input(s) : subsystem, devsn, status * Output(s) : ******************************************************************************/ -char ocmw_update_post_status(uint8_t subsystem, uint8_t devsn, - uint8_t status) +char ocmw_update_post_status(uint8_t subsystem, uint8_t devsn, uint8_t status) { int32_t sysIndex = 0; for (sysIndex = 0; sysIndex < ocwarePostArrayIndex; sysIndex++) { @@ -174,7 +175,7 @@ int32_t ocmw_init() * the msg coming from ethernet ec to ap */ ret = pthread_create(ðMsgPaserThreadId, NULL, - ocmw_thread_ethmsgparser, NULL); + ocmw_thread_ethmsgparser, NULL); if (ret != 0) { return ret; } @@ -183,7 +184,7 @@ int32_t ocmw_init() * the msg coming from uart ec to ap */ ret = pthread_create(&uartMsgPaserThreadId, NULL, - ocmw_thread_uartmsgparser, NULL); + ocmw_thread_uartmsgparser, NULL); if (ret != 0) { logerr("pthread_create() failed."); } @@ -194,24 +195,23 @@ int32_t ocmw_init() /************************************************************************** * Function Name : ocmw_tokenize_class_str - * Description : This Function used to extract the Subsystem,componentID, Messagetype, - * parameter and Subcomponent from the param string - * Input(s) : str + * Description : This Function used to extract the Subsystem,componentID, + *Messagetype, parameter and Subcomponent from the param string Input(s) : str * Output(s) : msgFrame ***************************************************************************/ -static int32_t ocmw_tokenize_class_str( const int8_t *str, - strMsgFrame *msgFrame, uint8_t msgtype) +static int32_t ocmw_tokenize_class_str(const int8_t *str, strMsgFrame *msgFrame, + uint8_t msgtype) { char *token; int32_t count = 0; - char *tempstr = (char *)malloc(PARAM_STR_MAX_BUFF_SIZE); + char *tempstr = (char *)malloc(PARAM_STR_MAX_BUFF_SIZE); - if(str == NULL) + if (str == NULL) return FAILED; - memset(tempstr,0,PARAM_STR_MAX_BUFF_SIZE); - memcpy(tempstr, str,PARAM_STR_MAX_BUFF_SIZE); - memset(msgFrame,0,sizeof(strMsgFrame)); + memset(tempstr, 0, PARAM_STR_MAX_BUFF_SIZE); + memcpy(tempstr, str, PARAM_STR_MAX_BUFF_SIZE); + memset(msgFrame, 0, sizeof(strMsgFrame)); token = strtok(tempstr, " ."); @@ -219,8 +219,7 @@ static int32_t ocmw_tokenize_class_str( const int8_t *str, return FAILED; if (msgtype == OCMP_MSG_TYPE_COMMAND) { - if ((strcmp(token,"set") != 0) && - ((strcmp(token,"get") != 0))) { + if ((strcmp(token, "set") != 0) && ((strcmp(token, "get") != 0))) { strcpy(msgFrame->parameter, token); while (token) { if (count == 1) { @@ -229,7 +228,7 @@ static int32_t ocmw_tokenize_class_str( const int8_t *str, strcpy(msgFrame->component, token); } token = strtok(NULL, " ."); - count ++; + count++; if (token == NULL) break; } @@ -248,14 +247,13 @@ static int32_t ocmw_tokenize_class_str( const int8_t *str, strcpy(msgFrame->parameter, token); } token = strtok(NULL, " ."); - count ++; + count++; if (token == NULL) break; } if (count == 2) { strcpy(msgFrame->component, "comp_all"); } - } } else { strcpy(msgFrame->subsystem, token); @@ -266,7 +264,7 @@ static int32_t ocmw_tokenize_class_str( const int8_t *str, strcpy(msgFrame->msgtype, token); } else if (count == 3) { strcpy(msgFrame->subcomponent, token); - } else if(count == 4) { + } else if (count == 4) { strcpy(msgFrame->parameter, token); } token = strtok(NULL, " ."); @@ -276,7 +274,7 @@ static int32_t ocmw_tokenize_class_str( const int8_t *str, strcpy(msgFrame->parameter, msgFrame->subcomponent); } - if (strncmp (msgFrame->component, "post", strlen("post")) == 0) { + if (strncmp(msgFrame->component, "post", strlen("post")) == 0) { strcpy(msgFrame->component, "post"); strcpy(msgFrame->msgtype, "post"); strcpy(msgFrame->parameter, msgFrame->subcomponent); @@ -293,32 +291,33 @@ static int32_t ocmw_tokenize_class_str( const int8_t *str, * Input(s) :strTokenArray, msgFrame, ecMsgFrame, paramVal * Output(s) : ******************************************************************************/ -void ocmw_fill_payload_data_for_commands(char * strTokenArray[], - strMsgFrame *msgFrame, OCMPMessageFrame *ecMsgFrame, void* paramVal) +void ocmw_fill_payload_data_for_commands(char *strTokenArray[], + strMsgFrame *msgFrame, + OCMPMessageFrame *ecMsgFrame, + void *paramVal) { if (msgFrame == NULL) { return; } // Handling sending data for test module if (strncmp("testmodule", msgFrame->subsystem, - strlen(msgFrame->subsystem)) == 0 ) { + strlen(msgFrame->subsystem)) == 0) { if ((strncmp(strTokenArray[1], "send", strlen("send")) == 0) || (strncmp(strTokenArray[1], "dial", strlen("dial")) == 0)) { - memcpy(&ecMsgFrame->message.info[0], paramVal, - MAX_PARM_COUNT); + memcpy(&ecMsgFrame->message.info[0], paramVal, MAX_PARM_COUNT); } else { memset(ecMsgFrame->message.info, 0, MAX_PARM_COUNT); } } // Handling ethernet packet genrator command - if (strncmp("ethernet", msgFrame->subsystem, - strlen(msgFrame->subsystem)) == 0 ) { - if(strstr(strTokenArray[1], "loopBk")) { + if (strncmp("ethernet", msgFrame->subsystem, strlen(msgFrame->subsystem)) == + 0) { + if (strstr(strTokenArray[1], "loopBk")) { memcpy(&ecMsgFrame->message.info[0], paramVal, sizeof(uint8_t)); } else if ((strncmp(strTokenArray[1], "en_pktGen", - strlen("en_pktGen")) == 0)) { - memcpy(&ecMsgFrame->message.info[0], - (uint16_t *)paramVal, sizeof(uint16_t)); + strlen("en_pktGen")) == 0)) { + memcpy(&ecMsgFrame->message.info[0], (uint16_t *)paramVal, + sizeof(uint16_t)); } } } @@ -328,8 +327,9 @@ void ocmw_fill_payload_data_for_commands(char * strTokenArray[], * Input(s) :actionType, msgType, paramStr, interface, paramVal * Output(s) : ******************************************************************************/ -int32_t ocmw_msg_packetize_and_send(char * strTokenArray[], uint8_t action, - uint8_t msgType, const int8_t * paramStr, uint8_t interface, void* paramVal) +int32_t ocmw_msg_packetize_and_send(char *strTokenArray[], uint8_t action, + uint8_t msgType, const int8_t *paramStr, + uint8_t interface, void *paramVal) { int32_t ret = 0; int32_t paramValue = 0; @@ -348,36 +348,34 @@ int32_t ocmw_msg_packetize_and_send(char * strTokenArray[], uint8_t action, paramValLen = strlen((char *)paramVal); if (!((msgType == OCMP_MSG_TYPE_COMMAND) && - ((strncmp(strTokenArray[1], "get", strlen("get")) == 0) || - (strncmp(strTokenArray[1], "set", strlen("get")) == 0)))) { + ((strcmp(strTokenArray[1], "get")) || + (strncmp(strTokenArray[1], "set", strlen("get")) == 0)))) { if (paramValLen == 1 || paramValLen <= 5) { - logdebug ("Paramvalue is of integer type : %d\n", atoi( paramVal)); - } - else { + logdebug("Paramvalue is of integer type : %d\n", atoi(paramVal)); + } else { paramValFlag = 1; - logdebug ("Paramvalue is of string type : %s \n", (char *)paramVal); + logdebug("Paramvalue is of string type : %s \n", (char *)paramVal); } } else { paramValFlag = 1; - logdebug ("Paramvalue is of string type : %s \n", (char *)paramVal); + logdebug("Paramvalue is of string type : %s \n", (char *)paramVal); } if (paramStr == NULL) { logdebug(" Paramstr is NULL \n"); return ret = FAILED; } else { - - ocmw_tokenize_class_str(tempStr,&msgFramestruct,msgType); + ocmw_tokenize_class_str(tempStr, &msgFramestruct, msgType); if (msgType == OCMP_MSG_TYPE_COMMAND) { - ret = ocmw_parse_command_msgframe(sys_schema, &msgFramestruct, - action, &ecSendBuf); + ret = ocmw_parse_command_msgframe(sys_schema, &msgFramestruct, + action, &ecSendBuf); } else if (msgType == OCMP_MSG_TYPE_POST) { - strcpy((char*)s_paramInfoBackup,msgFramestruct.parameter); - ret = ocmw_parse_post_msgframe(sys_schema, &msgFramestruct, - action, &ecSendBuf); + strcpy((char *)s_paramInfoBackup, msgFramestruct.parameter); + ret = ocmw_parse_post_msgframe(sys_schema, &msgFramestruct, action, + &ecSendBuf); } else { ret = ocmw_parse_msgframe(sys_schema, &msgFramestruct, action, - &ecSendBuf); + &ecSendBuf); } if (ret < 0) { return ret; @@ -393,7 +391,7 @@ int32_t ocmw_msg_packetize_and_send(char * strTokenArray[], uint8_t action, /* Frame the Core packet for sending data to ec */ ecCoreMsg.action = ecSendBuf.actionType; - ecCoreMsg.msgtype = ecSendBuf.msgType; + ecCoreMsg.msgtype = ecSendBuf.msgType; ecCoreMsg.componentID = ecSendBuf.componentId; ecCoreMsg.parameters = ecSendBuf.paramId; ecCoreMsg.subsystem = ecSendBuf.subsystem; @@ -403,35 +401,33 @@ int32_t ocmw_msg_packetize_and_send(char * strTokenArray[], uint8_t action, ecMsgFrame.message = ecCoreMsg; /* Populate the Core packet payload */ - ecMsgFrame.message.info = (int8_t *) malloc( - sizeof(int8_t) * MAX_PARM_COUNT); + ecMsgFrame.message.info = (int8_t *)malloc(sizeof(int8_t) * MAX_PARM_COUNT); if (ecMsgFrame.message.info == NULL) { logdebug("\n Memory allocation failed \n"); return ret = FAILED; } memset(ecMsgFrame.message.info, 0, MAX_PARM_COUNT); if ((msgType == OCMP_MSG_TYPE_POST) && - (strncmp(strTokenArray[1], "set", strlen("set"))== 0)) { + (strncmp(strTokenArray[1], "set", strlen("set")) == 0)) { logdebug("OCMP_MSG_TYPE_POST:ENABLE:%s()\n", __func__); } - if(strncmp(msgFramestruct.subsystem,"debug",strlen("debug")) == 0) { - if (strncmp(msgFramestruct.component,"I2C", - strlen("I2C")) == 0) { - if((strncmp(strTokenArray[1], "get", strlen("get")) == 0)) { - dataSize = 3 * sizeof (int8_t); + if (strncmp(msgFramestruct.subsystem, "debug", strlen("debug")) == 0) { + if (strncmp(msgFramestruct.component, "I2C", strlen("I2C")) == 0) { + if ((strncmp(strTokenArray[1], "get", strlen("get")) == 0)) { + dataSize = 3 * sizeof(int8_t); } else { dataSize = sizeof(debugI2CData); } - } else if (strncmp(msgFramestruct.component,"ethernet", - strlen("ethernet")) == 0) { - if((strncmp(strTokenArray[1], "get", strlen("get")) == 0)) { - dataSize = sizeof (uint16_t); + } else if (strncmp(msgFramestruct.component, "ethernet", + strlen("ethernet")) == 0) { + if ((strncmp(strTokenArray[1], "get", strlen("get")) == 0)) { + dataSize = sizeof(uint16_t); } else { dataSize = sizeof(debugMDIOData); } } else { - if((strncmp(strTokenArray[1], "get", strlen("get")) == 0)) { - dataSize = sizeof (int8_t); + if ((strncmp(strTokenArray[1], "get", strlen("get")) == 0)) { + dataSize = sizeof(int8_t); } else { dataSize = sizeof(debugGPIOData); } @@ -440,61 +436,54 @@ int32_t ocmw_msg_packetize_and_send(char * strTokenArray[], uint8_t action, } else { dataSize = ecSendBuf.paramSize; } - if((strncmp(strTokenArray[1], "set", strlen("set")) == 0) && - (msgType != OCMP_MSG_TYPE_POST)) { + if ((strncmp(strTokenArray[1], "set", strlen("set")) == 0) && + (msgType != OCMP_MSG_TYPE_POST)) { pos = ecSendBuf.paramPos; if (paramValFlag == 0) { - paramValue = atoi( paramVal); + paramValue = atoi(paramVal); memcpy(&ecMsgFrame.message.info[pos], ¶mValue, dataSize); } else { - if (strncmp(msgFramestruct.component,"I2C", - strlen("I2C")) == 0) { + if (strncmp(msgFramestruct.component, "I2C", strlen("I2C")) == 0) { ecMsgFrame.message.info[pos] = I2CInfo.slaveAddress; - ecMsgFrame.message.info[pos + 1] = - I2CInfo.numOfBytes; - ecMsgFrame.message.info[pos + 2] = - I2CInfo.regAddress; + ecMsgFrame.message.info[pos + 1] = I2CInfo.numOfBytes; + ecMsgFrame.message.info[pos + 2] = I2CInfo.regAddress; if (I2CInfo.numOfBytes == 1) { ecMsgFrame.message.info[pos + 3] = - (uint8_t)I2CInfo.regValue; + (uint8_t)I2CInfo.regValue; } else { ecMsgFrame.message.info[pos + 4] = - (uint8_t)(I2CInfo.regValue & 0xff); + (uint8_t)(I2CInfo.regValue & 0xff); ecMsgFrame.message.info[pos + 3] = - (uint8_t) - ((I2CInfo.regValue & 0xff00) >> 8); + (uint8_t)((I2CInfo.regValue & 0xff00) >> 8); } - } else if (strncmp(msgFramestruct.component,"ethernet", - strlen("ethernet")) == 0) { - ecMsgFrame.message.info[pos] = (uint8_t) - (MDIOInfo.regAddress & 0xff); - ecMsgFrame.message.info[pos + 1] = (uint8_t) - ((MDIOInfo.regAddress & 0xff00) >> 8); + } else if (strncmp(msgFramestruct.component, "ethernet", + strlen("ethernet")) == 0) { + ecMsgFrame.message.info[pos] = + (uint8_t)(MDIOInfo.regAddress & 0xff); + ecMsgFrame.message.info[pos + 1] = + (uint8_t)((MDIOInfo.regAddress & 0xff00) >> 8); ecMsgFrame.message.info[pos + 2] = - (uint8_t)(MDIOInfo.regValue & 0xff); + (uint8_t)(MDIOInfo.regValue & 0xff); ecMsgFrame.message.info[pos + 3] = - (uint8_t) - ((MDIOInfo.regValue & 0xff00) >> 8); + (uint8_t)((MDIOInfo.regValue & 0xff00) >> 8); } else { - memcpy(&ecMsgFrame.message.info[pos], (char *) paramVal, - paramValLen); + memcpy(&ecMsgFrame.message.info[pos], (char *)paramVal, + paramValLen); } } } - if((strncmp(strTokenArray[1], "get", strlen("get")) == 0) && - (ecMsgFrame.message.subsystem == DEBUG_SUBSYSTEM_NBR)) { + if ((strncmp(strTokenArray[1], "get", strlen("get")) == 0) && + (ecMsgFrame.message.subsystem == DEBUG_SUBSYSTEM_NBR)) { pos = ecSendBuf.paramPos; - memcpy(&ecMsgFrame.message.info[pos], (char *) paramVal, - paramValLen); - + memcpy(&ecMsgFrame.message.info[pos], (char *)paramVal, paramValLen); } - //Fill payload data for commands + // Fill payload data for commands ocmw_fill_payload_data_for_commands(&strTokenArray[0], &msgFramestruct, - &ecMsgFrame, paramVal); + &ecMsgFrame, paramVal); if (!((msgType == OCMP_MSG_TYPE_POST) && - (strncmp(strTokenArray[1], "get", strlen("get")) == 0))) { + (strncmp(strTokenArray[1], "get", strlen("get")) == 0))) { ocmw_send_msg(ecMsgFrame, interface); } @@ -507,9 +496,8 @@ int32_t ocmw_msg_packetize_and_send(char * strTokenArray[], uint8_t action, loopCountSend = systemInfo.Info[0].number; loopCountPost = systemInfo.Info[0].number; - while(loopCountSend < s_totalSubsystem) { - memset(&(ecMsgFrame.message.info[0]), - loopCountSend, 1); + while (loopCountSend < s_totalSubsystem) { + memset(&(ecMsgFrame.message.info[0]), loopCountSend, 1); /* Send the message to ec */ ocmw_send_msg(ecMsgFrame, interface); loopCountSend++; @@ -562,7 +550,7 @@ int32_t ocmw_msg_packetize_and_send(char * strTokenArray[], uint8_t action, * Input(s) : pthreadData * Output(s) : ******************************************************************************/ -void * ocmw_thread_uartmsgparser(void *pthreadData) +void *ocmw_thread_uartmsgparser(void *pthreadData) { logdebug("Uart task created \n"); while (1) { @@ -579,14 +567,14 @@ void * ocmw_thread_uartmsgparser(void *pthreadData) * Input(s) : pthreadData * Output(s) : ******************************************************************************/ -void * ocmw_thread_ethmsgparser(void *pthreadData) +void *ocmw_thread_ethmsgparser(void *pthreadData) { - int8_t ethRecvBuf[OCMP_MSG_SIZE] = {0}; + int8_t ethRecvBuf[OCMP_MSG_SIZE] = { 0 }; logdebug("Ethernet task created \n"); while (1) { memset(ethRecvBuf, 0, sizeof(ethRecvBuf)); - ocmw_recv_eth_msgfrom_ec(ethRecvBuf, sizeof(ethRecvBuf),OCMW_EC_DEV); + ocmw_recv_eth_msgfrom_ec(ethRecvBuf, sizeof(ethRecvBuf), OCMW_EC_DEV); ocmw_ec_msgparser(); } } @@ -610,58 +598,58 @@ void ocmw_ec_msgparser(void) int32_t sendPktNonpayloadSize = 0; sMsgParam dmsgFrameParam; OCMPMessageFrame ecReceivedMsg; + alertRecord = 1; - sendPktNonpayloadSize = (sizeof(OCMPMessage) - sizeof(void *) - + sizeof(OCMPHeader)); + sendPktNonpayloadSize = + (sizeof(OCMPMessage) - sizeof(void *) + sizeof(OCMPHeader)); - ecReceivedMsg.message.info = (void *) malloc( - sizeof(char) * MAX_PARM_COUNT); + ecReceivedMsg.message.info = (void *)malloc(sizeof(char) * MAX_PARM_COUNT); if (ecReceivedMsg.message.info == NULL) { logerr("Memory allocation failed for " - "ecReceivedMsg.message.info \n"); + "ecReceivedMsg.message.info \n"); return; } /* parse the data packet */ - memcpy((void *) &ecReceivedMsg, (void *) mcuMsgBuf, sendPktNonpayloadSize); + memcpy((void *)&ecReceivedMsg, (void *)mcuMsgBuf, sendPktNonpayloadSize); memcpy(ecReceivedMsg.message.info, &mcuMsgBuf[sendPktNonpayloadSize], - MAX_PARM_COUNT); + MAX_PARM_COUNT); msgType = ecReceivedMsg.message.msgtype; actionType = ecReceivedMsg.message.action; paramInfo = ecReceivedMsg.message.parameters; - /* - * TODO:Temporary fix for handling alerts - */ - if (msgType == OCMP_MSG_TYPE_ALERT) { - free(ecReceivedMsg.message.info); - return; - } - printf("Received from ec :\n"); for (indexCount = 0; indexCount < OCMP_MSG_SIZE; indexCount++) { printf("0x%x ", mcuMsgBuf[indexCount]); } printf("\n"); - + /* + * Alerts handling + */ + if ((msgType == OCMP_MSG_TYPE_ALERT) || (alertFlag > 0)) { + ocmw_handle_alert_msg(sys_schema, &ecReceivedMsg, &alertRecord); + responseCount++; + ocmw_free_global_pointer((void **)&ecSendBufBkp); + return; + } /* In case of timeout, return from the thread * without processing the data to avoid sync issue. */ if (s_semTimeOut) { s_semTimeOut = 0; - ocmw_free_global_pointer((void**)&ecSendBufBkp); + ocmw_free_global_pointer((void **)&ecSendBufBkp); return; } if ((msgType == OCMP_MSG_TYPE_POST) && - strcmp((char*)s_paramInfoBackup,"set") == 0) { + strcmp((char *)s_paramInfoBackup, "set") == 0) { if (actionType == OCMP_AXN_TYPE_REPLY) { responseCount++; } /* Release the lock on which cli is waiting */ - ocmw_free_global_pointer((void**)&ecSendBufBkp); + ocmw_free_global_pointer((void **)&ecSendBufBkp); sem_post(&semCliReturn); return; } @@ -669,7 +657,7 @@ void ocmw_ec_msgparser(void) /* Release the lock on the POST msgtype semaphore */ if (msgType == OCMP_MSG_TYPE_POST) { if (actionType != OCMP_AXN_TYPE_REPLY) { - ocmw_free_global_pointer((void**)&ecSendBufBkp); + ocmw_free_global_pointer((void **)&ecSendBufBkp); ret = sem_post(&semCommandPost); if (ret != 0) { perror("sem_wait"); @@ -680,15 +668,15 @@ void ocmw_ec_msgparser(void) for (; loopCountPost < s_totalSubsystem;) { /* Waiting on the lock to be released by receiving thread */ for (indexCount = 0; indexCount < paramInfo; indexCount++) { - subsystemPost = ecReceivedMsg.message.info[indexCount - * POST_MAIN_PAYLOAD_SIZE - + POST_MAIN_PAYLOAD_SUBSYSTEM_OFFSET]; - devsn = ecReceivedMsg.message.info[indexCount - * POST_MAIN_PAYLOAD_SIZE - + POST_MAIN_PAYLOAD_DEVSN_OFFSET]; - status = ecReceivedMsg.message.info[indexCount - * POST_MAIN_PAYLOAD_SIZE - + POST_MAIN_PAYLOAD_STATUS_OFFSET]; + subsystemPost = ecReceivedMsg.message + .info[indexCount * POST_MAIN_PAYLOAD_SIZE + + POST_MAIN_PAYLOAD_SUBSYSTEM_OFFSET]; + devsn = ecReceivedMsg.message + .info[indexCount * POST_MAIN_PAYLOAD_SIZE + + POST_MAIN_PAYLOAD_DEVSN_OFFSET]; + status = ecReceivedMsg.message + .info[indexCount * POST_MAIN_PAYLOAD_SIZE + + POST_MAIN_PAYLOAD_STATUS_OFFSET]; ret = ocmw_update_post_status(subsystemPost, devsn, status); } @@ -703,7 +691,7 @@ void ocmw_ec_msgparser(void) } else { /* Release the lock on which watchdog thread is waiting */ responseCount++; - ocmw_free_global_pointer((void**)&ecSendBufBkp); + ocmw_free_global_pointer((void **)&ecSendBufBkp); sem_post(&semCliReturn); } return; @@ -736,8 +724,8 @@ int32_t ocmw_send_msg(OCMPMessageFrame ecMsgFrame, uint8_t interface) case OCMP_COMM_IFACE_UART: case OCMP_COMM_IFACE_USB: /* Send the packetize data to ec through uart*/ - ret = ocmw_send_uart_msg_to_ec((uint8_t *) &ecMsgFrame, - OCMP_MSG_SIZE); + ret = + ocmw_send_uart_msg_to_ec((uint8_t *)&ecMsgFrame, OCMP_MSG_SIZE); break; case OCMP_COMM_IFACE_ETHERNET: @@ -748,12 +736,24 @@ int32_t ocmw_send_msg(OCMPMessageFrame ecMsgFrame, uint8_t interface) sentDev = OCMW_EC_DEV; #endif /* Send the packetize data to ec through ethernet*/ - ret = ocmw_send_eth_msgto_ec((int8_t *) &ecMsgFrame, - OCMP_MSG_SIZE, sentDev); + ret = ocmw_send_eth_msgto_ec((int8_t *)&ecMsgFrame, OCMP_MSG_SIZE, + sentDev); #ifdef INTERFACE_STUB_EC - memset(ethRecvBuf, 0, sizeof(ethRecvBuf)); - ocmw_recv_eth_msgfrom_ec(ethRecvBuf, sizeof(ethRecvBuf), OCMW_EC_STUB_DEV); - ocmw_ec_msgparser(); + if (alertFlag > 0) { + while (1) { + memset(ethRecvBuf, 0, sizeof(ethRecvBuf)); + ocmw_recv_eth_msgfrom_ec(ethRecvBuf, sizeof(ethRecvBuf), + OCMW_EC_STUB_DEV); + ocmw_ec_msgparser(); + if (alertRecord == 0) + break; + } + } else { + memset(ethRecvBuf, 0, sizeof(ethRecvBuf)); + ocmw_recv_eth_msgfrom_ec(ethRecvBuf, sizeof(ethRecvBuf), + OCMW_EC_STUB_DEV); + ocmw_ec_msgparser(); + } #endif break; diff --git a/firmware/host/ocmw/ocmw_eth_comm.c b/firmware/host/ocmw/ocmw_eth_comm.c index 2dd8e75286..aced06e35d 100644 --- a/firmware/host/ocmw/ocmw_eth_comm.c +++ b/firmware/host/ocmw/ocmw_eth_comm.c @@ -17,8 +17,8 @@ #include #include -#define OCMW_ERR_STR_LEN 80 -#define OCWARE_STUB_TIMEOUT_PERIOD 12 +#define OCMW_ERR_STR_LEN 80 +#define OCWARE_STUB_TIMEOUT_PERIOD 12 extern uint8_t mcuMsgBuf[OCMP_MSG_SIZE]; @@ -40,10 +40,10 @@ int32_t ocmw_init_eth_comm(int32_t sentDev) struct timeval timeValObj; timeValObj.tv_sec = OCWARE_STUB_TIMEOUT_PERIOD; timeValObj.tv_usec = 0; - if (sentDev == OCMW_EC_DEV){ - /* Create socket */ + if (sentDev == OCMW_EC_DEV) { + /* Create socket */ comSockfd = socket(OCMW_ETH_SOCK_DOMAIN, OCMW_ETH_SOCK_TYPE, - OCMW_ETH_SOCK_PROTOCOL); + OCMW_ETH_SOCK_PROTOCOL); if (comSockfd < 0) { rc = -errno; logerr("socket creation error [%d-%s]", errno, strerror(errno)); @@ -59,8 +59,8 @@ int32_t ocmw_init_eth_comm(int32_t sentDev) rc = -1; } - rc = connect(comSockfd, (struct sockaddr *) &sicomServer, - sizeof(sicomServer)); + rc = connect(comSockfd, (struct sockaddr *)&sicomServer, + sizeof(sicomServer)); if (rc != 0) { perror("socket connect failed:"); } @@ -73,7 +73,7 @@ int32_t ocmw_init_eth_comm(int32_t sentDev) } else { /* Create socket */ stub_sockfd = socket(OCMW_SOCK_STUB_DOMAIN, OCMW_SOCK_STUB_TYPE, - OCMW_SOCK_STUB_PROTOCOL); + OCMW_SOCK_STUB_PROTOCOL); if (stub_sockfd < 0) { rc = -errno; logerr("socket creation error [%d-%s]", errno, strerror(errno)); @@ -91,7 +91,7 @@ int32_t ocmw_init_eth_comm(int32_t sentDev) } if (setsockopt(stub_sockfd, SOL_SOCKET, SO_RCVTIMEO, &timeValObj, - sizeof(timeValObj)) < 0) { + sizeof(timeValObj)) < 0) { logerr("setsockopt failed"); rc = -1; return rc; @@ -113,9 +113,9 @@ int32_t ocmw_init_eth_comm(int32_t sentDev) * Input(s) : * Output(s) : ***************************************************************************/ -int32_t ocmw_deinit_eth_comm( int sentDev) +int32_t ocmw_deinit_eth_comm(int sentDev) { - if (sentDev == OCMW_EC_DEV){ + if (sentDev == OCMW_EC_DEV) { close(comSockfd); comSockfd = 0; /* Close the IPC socket */ } else { @@ -150,15 +150,15 @@ int32_t ocmw_send_eth_msgto_ec(const int8_t *cmd, int32_t cmdlen, int sentDev) return -EMSGSIZE; } - ecMsgFrame = (OCMPMessageFrame *) cmd; - sendPktNonpayloadSize = (sizeof(OCMPMessage) - sizeof(void *) - + sizeof(OCMPHeader)); + ecMsgFrame = (OCMPMessageFrame *)cmd; + sendPktNonpayloadSize = + (sizeof(OCMPMessage) - sizeof(void *) + sizeof(OCMPHeader)); /* create message frame */ memset(buf, 0, sizeof(buf)); memcpy(buf, ecMsgFrame, sendPktNonpayloadSize); memcpy(&buf[sendPktNonpayloadSize], ((ecMsgFrame->message).info), - MAX_PARM_COUNT); + MAX_PARM_COUNT); #ifndef MSG_LOG printf(" \n send_msg_to_ec \n"); for (loopCount = 0; loopCount < OCMP_MSG_SIZE; loopCount++) { @@ -167,7 +167,7 @@ int32_t ocmw_send_eth_msgto_ec(const int8_t *cmd, int32_t cmdlen, int sentDev) printf("\n"); #endif /* MSG_LOG */ - if (sentDev == OCMW_EC_DEV){ + if (sentDev == OCMW_EC_DEV) { rc = send(comSockfd, buf, OCMP_MSG_SIZE, 0); if (rc < 0) { strerror_r(errno, errstr, errstrLen); @@ -175,7 +175,7 @@ int32_t ocmw_send_eth_msgto_ec(const int8_t *cmd, int32_t cmdlen, int sentDev) } } else { rc = sendto(stub_sockfd, buf, OCMP_MSG_SIZE, 0, - (struct sockaddr *) &stub_server, sizeof(stub_server) ); + (struct sockaddr *)&stub_server, sizeof(stub_server)); if (rc < 0) { strerror_r(errno, errstr, errstrLen); logerr("Error: 'send' [%d-%s]", errno, errstr); @@ -215,8 +215,7 @@ int32_t ocmw_recv_eth_msgfrom_ec(int8_t *resp, int32_t resplen, int sentDev) #endif #ifdef INTERFACE_STUB_EC rc = recvfrom(stub_sockfd, resp, OCMP_MSG_SIZE, 0, - (struct sockaddr *) &stub_server, - (socklen_t*)&dataLen); + (struct sockaddr *)&stub_server, (socklen_t *)&dataLen); if (rc < 0) { strerror_r(rc, errstr, errstrLen); logerr("Error: 'recv' [%d-%s]", rc, errstr); diff --git a/firmware/host/ocmw/ocmw_helper.c b/firmware/host/ocmw/ocmw_helper.c index e37429b477..8b00bd4a49 100644 --- a/firmware/host/ocmw/ocmw_helper.c +++ b/firmware/host/ocmw/ocmw_helper.c @@ -16,7 +16,7 @@ #include #include -#define SIZE_INT sizeof (int32_t) +#define SIZE_INT sizeof(int32_t) int8_t eepromStatusFlag = 0; @@ -45,7 +45,7 @@ inline int32_t ocmw_sem_wait_nointr(sem_t *sem) * Output(s) : ******************************************************************************/ inline int32_t ocmw_sem_timedwait_nointr(sem_t *sem, - const struct timespec *timeout) + const struct timespec *timeout) { while (sem_timedwait(sem, timeout)) if (errno == EINTR) @@ -62,7 +62,7 @@ inline int32_t ocmw_sem_timedwait_nointr(sem_t *sem, * Output(s) : dataSize, pos ******************************************************************************/ void ocmw_dataparsing_from_db(int32_t paramIndex, int32_t *paramSizebuf, - int32_t *dataSize, int32_t *pos) + int32_t *dataSize, int32_t *pos) { int32_t count; int32_t paramIdPresence; @@ -80,7 +80,7 @@ void ocmw_dataparsing_from_db(int32_t paramIndex, int32_t *paramSizebuf, *pos = 0; for (count = 0; count < MAX_PARM_COUNT; count++) { - paramIdPresence = (paramIndex) / ((int) pow(2, count)); + paramIdPresence = (paramIndex) / ((int)pow(2, count)); if (paramIdPresence == 1) { break; } @@ -100,8 +100,7 @@ void ocmw_dataparsing_from_db(int32_t paramIndex, int32_t *paramSizebuf, * Input(s) : input, bufParamStruct * Output(s) : ******************************************************************************/ -void ocmw_dataparsing_from_ec(ocmwSendRecvBuf *input, - bufParam * bufParamStruct) +void ocmw_dataparsing_from_ec(ocmwSendRecvBuf *input, bufParam *bufParamStruct) { int32_t count = 0; int32_t paramIdPresence = 0; @@ -120,11 +119,11 @@ void ocmw_dataparsing_from_ec(ocmwSendRecvBuf *input, int32_t *paramSizebuf = input->paramSizebuf; for (count = 0; count < numOfele; count++) { - bufParamStruct[count].paramindex = (paramInfo & ((int32_t) pow(2, - count + index))); + bufParamStruct[count].paramindex = + (paramInfo & ((int32_t)pow(2, count + index))); - paramIdPresence = bufParamStruct[count].paramindex / pow(2, - count + index); + paramIdPresence = + bufParamStruct[count].paramindex / pow(2, count + index); if (paramIdPresence == 0) { paramidSize = 0; @@ -137,15 +136,15 @@ void ocmw_dataparsing_from_ec(ocmwSendRecvBuf *input, bufParamStruct[count].paramval = 0; break; case CHAR: - bufParamStruct[count].paramval = *((int8_t *) &pbuf[pos]); + bufParamStruct[count].paramval = *((int8_t *)&pbuf[pos]); break; case SHORT: - bufParamStruct[count].paramval = *((int16_t *) &pbuf[pos]); + bufParamStruct[count].paramval = *((int16_t *)&pbuf[pos]); break; case INT: - bufParamStruct[count].paramval = *((int32_t *) &pbuf[pos]); + bufParamStruct[count].paramval = *((int32_t *)&pbuf[pos]); break; default: diff --git a/firmware/host/ocmw/ocmw_main.c b/firmware/host/ocmw/ocmw_main.c index 09b2eb5778..2c072f1a22 100644 --- a/firmware/host/ocmw/ocmw_main.c +++ b/firmware/host/ocmw/ocmw_main.c @@ -32,8 +32,8 @@ uint8_t mcuMsgBuf[OCMP_MSG_SIZE]; ***************************************************************************/ int32_t main(int32_t argc, char **argv) { - char cmdstr[CMD_STR_BUFF_SIZE] = {0}; - char response[RES_STR_BUFF_SIZE] = {0}; + char cmdstr[CMD_STR_BUFF_SIZE] = { 0 }; + char response[RES_STR_BUFF_SIZE] = { 0 }; int32_t ret = 0; /* Initialize logging */ @@ -54,16 +54,16 @@ int32_t main(int32_t argc, char **argv) #ifdef INTERFACE_ETHERNET ret = ocmw_init_eth_comm(OCMW_EC_DEV); - if(ret != 0) { - printf ("ocmw_init_eth_comm() failed \n"); + if (ret != 0) { + printf("ocmw_init_eth_comm() failed \n"); return FAILED; } #endif /* INTERFACE_ETHERNET */ #ifdef INTERFACE_STUB_EC ret = ocmw_init_eth_comm(OCMW_EC_STUB_DEV); - if(ret != 0) { - printf ("init_eth_comm() failed \n"); + if (ret != 0) { + printf("init_eth_comm() failed \n"); return FAILED; } #endif /* INTERFACE_ETHERNET */ diff --git a/firmware/host/ocmw/ocmw_msgproc.c b/firmware/host/ocmw/ocmw_msgproc.c old mode 100755 new mode 100644 index 69980f8b2a..91042d989e --- a/firmware/host/ocmw/ocmw_msgproc.c +++ b/firmware/host/ocmw/ocmw_msgproc.c @@ -21,8 +21,8 @@ * Input(s) : strTokenArray, action, msgtype, paramstr * Output(s) : paramvalue ***************************************************************************/ -int ocmw_msgproc_send_msg(char * strTokenArray[], uint8_t action, - int8_t msgtype, const int8_t* paramstr, void *paramvalue) +int ocmw_msgproc_send_msg(char *strTokenArray[], uint8_t action, int8_t msgtype, + const int8_t *paramstr, void *paramvalue) { int32_t ret = 0; uint8_t interface = 0; @@ -34,10 +34,9 @@ int ocmw_msgproc_send_msg(char * strTokenArray[], uint8_t action, interface = OCMP_COMM_IFACE_UART; #endif /* INTERFACE_ETHERNET */ ret = ocmw_msg_packetize_and_send(&strTokenArray[0], action, msgtype, - paramstr, interface, paramvalue); + paramstr, interface, paramvalue); if (ret != 0) { logerr("ocmw_msg_packetize_and_send failed \n"); } return ret; } - diff --git a/firmware/host/ocmw/ocmw_occli_comm.c b/firmware/host/ocmw/ocmw_occli_comm.c index c2f943b4e9..127fa9e7f5 100644 --- a/firmware/host/ocmw/ocmw_occli_comm.c +++ b/firmware/host/ocmw/ocmw_occli_comm.c @@ -57,7 +57,7 @@ int32_t ocmw_init_occli_comm() s_siServer.sin_port = htons(OCMW_SOCK_SERVER_PORT); /* Bind host address to the socket */ - ret = bind(s_ssockFd, (struct sockaddr*) &s_siServer, sizeof(s_siServer)); + ret = bind(s_ssockFd, (struct sockaddr *)&s_siServer, sizeof(s_siServer)); if (ret < 0) { ret = -errno; logerr("bind error [%d-%s]", errno, strerror(errno)); @@ -71,8 +71,8 @@ int32_t ocmw_init_occli_comm() /***** Alert related socket init *****/ /* Create socket */ - s_ssockfdAlert = socket(OCMW_SOCK_DOMAIN, OCMW_SOCK_TYPE, - OCMW_SOCK_PROTOCOL); + s_ssockfdAlert = + socket(OCMW_SOCK_DOMAIN, OCMW_SOCK_TYPE, OCMW_SOCK_PROTOCOL); if (s_ssockfdAlert < 0) { ret = -errno; logerr("socket creation error [%d-%s]", errno, strerror(errno)); @@ -123,7 +123,7 @@ int32_t ocmw_deinit_occli_alert_comm(void) * Input(s) : buf, buflen * Output(s) : ***************************************************************************/ -int32_t ocmw_send_clicmd_resp_to_occli(const char* buf, int32_t buflen) +int32_t ocmw_send_clicmd_resp_to_occli(const char *buf, int32_t buflen) { char errstr[OCMW_SOCKET_ERROR_SIZE]; int32_t ret = 0; @@ -131,7 +131,7 @@ int32_t ocmw_send_clicmd_resp_to_occli(const char* buf, int32_t buflen) /* Send the message buffer over IPC */ ret = sendto(s_ssockFd, buf, buflen, 0, - (const struct sockaddr *) &s_siClient, destLen); + (const struct sockaddr *)&s_siClient, destLen); if (ret == -1) { strerror_r(errno, errstr, OCMW_SOCKET_ERROR_SIZE); logerr("Error: 'sendto' [%d-%s]", errno, errstr); @@ -145,15 +145,15 @@ int32_t ocmw_send_clicmd_resp_to_occli(const char* buf, int32_t buflen) * Input(s) : buflen * Output(s) : buf ***************************************************************************/ -int32_t ocmw_recv_clicmd_from_occli(char* buf, int32_t buflen) +int32_t ocmw_recv_clicmd_from_occli(char *buf, int32_t buflen) { char errstr[OCMW_SOCKET_ERROR_SIZE]; int32_t ret = 0; int32_t destLen = sizeof(s_siClient); /* Receive oc messages from other processes */ - ret = recvfrom(s_ssockFd, buf, buflen, 0, - (struct sockaddr*) &s_siClient, (socklen_t*) &destLen); + ret = recvfrom(s_ssockFd, buf, buflen, 0, (struct sockaddr *)&s_siClient, + (socklen_t *)&destLen); if (ret <= 0) { strerror_r(errno, errstr, OCMW_SOCKET_ERROR_SIZE); logerr("Error: 'recvfrom' [%d-%s]", errno, errstr); @@ -168,7 +168,7 @@ int32_t ocmw_recv_clicmd_from_occli(char* buf, int32_t buflen) * Input(s) : buf, buflen * Output(s) : ***************************************************************************/ -int32_t ocmw_send_alert_to_occli(const char* buf, int32_t buflen) +int32_t ocmw_send_alert_to_occli(const char *buf, int32_t buflen) { char errstr[OCMW_SOCKET_ERROR_SIZE]; int32_t ret = 0; @@ -176,7 +176,7 @@ int32_t ocmw_send_alert_to_occli(const char* buf, int32_t buflen) /* Send the message buffer over IPC */ ret = sendto(s_ssockfdAlert, buf, buflen, 0, - (const struct sockaddr *) &s_siServerAlert, destLen); + (const struct sockaddr *)&s_siServerAlert, destLen); if (ret == -1) { strerror_r(errno, errstr, OCMW_SOCKET_ERROR_SIZE); logerr("Error: 'sendto' [%d-%s]", errno, errstr); diff --git a/firmware/host/ocmw/ocmw_schema.c b/firmware/host/ocmw/ocmw_schema.c index 2fbcc87dc1..2b75f8208a 100644 --- a/firmware/host/ocmw/ocmw_schema.c +++ b/firmware/host/ocmw/ocmw_schema.c @@ -6,24 +6,27 @@ int64_t recvdParamVal; extern int32_t responseCount; int32_t eepromFlag; static int32_t s_typeFlag; -char dataOutBufFromEc[PARAM_STR_BUFF_SIZE] = {0}; -static char *s_paramEnumValue[OCMW_VALUE_TYPE_MFG] = {0}; +char dataOutBufFromEc[PARAM_STR_BUFF_SIZE] = { 0 }; +static char *s_paramEnumValue[OCMW_VALUE_TYPE_MFG] = { 0 }; ocmwSchemaSendBuf *ecSendBufBkp; -ocwarePostResultData ocwarePostArray[TEMP_STR_BUFF_SIZE] = {{0}}; -uint8_t ocwarePostArrayIndex; +ocwarePostResultData ocwarePostArray[TEMP_STR_BUFF_SIZE] = { { 0 } }; +uint8_t ocwarePostArrayIndex; +extern alertlist alerts; +static uint8_t s_alertIndex = 0; +extern int8_t alertFlag; /****************************************************************************** * Function Name : ocmw_parse_eepromdata_from_ec * Description : parse the eeprom data coming from EC to AP * Input(s) : ecInputData * Output(s) : ******************************************************************************/ -int8_t ocmw_parse_eepromdata_from_ec (ocmwSendRecvBuf ecInputData) +int8_t ocmw_parse_eepromdata_from_ec(ocmwSendRecvBuf ecInputData) { memset(dataOutBufFromEc, 0, sizeof(dataOutBufFromEc)); if (ecInputData.msgType == OCMP_MSG_TYPE_STATUS) { memcpy(dataOutBufFromEc, &ecInputData.pbuf[ecSendBufBkp->paramPos], sizeof(ecInputData.pbuf)); - }else if (ecInputData.msgType == OCMP_MSG_TYPE_CONFIG) { + } else if (ecInputData.msgType == OCMP_MSG_TYPE_CONFIG) { memcpy(dataOutBufFromEc, ecInputData.pbuf, EEPROM_CONFIG_SIZE); } @@ -45,9 +48,9 @@ int32_t ocmw_parse_testingmodule_struct_from_ec(ocmwSendRecvBuf ecInputData) memset(dataOutBufFromEc, 0, sizeof(dataOutBufFromEc)); size = sizeof(dataOutBufFromEc); - paramVal = *((uint8_t *) - &(ecInputData.pbuf[TWO_G_SIM_NET_OPTR_STATUS_OFFSET])); - paramVal2 = *((uint16_t *) ecInputData.pbuf); + paramVal = + *((uint8_t *)&(ecInputData.pbuf[TWO_G_SIM_NET_OPTR_STATUS_OFFSET])); + paramVal2 = *((uint16_t *)ecInputData.pbuf); switch (paramVal) { case TWOG_SIM_STAT_UNKNOWN: snprintf(dataOutBufFromEc, size, @@ -63,14 +66,14 @@ int32_t ocmw_parse_testingmodule_struct_from_ec(ocmwSendRecvBuf ecInputData) case TWOG_SIM_STAT_CURRENT: snprintf(dataOutBufFromEc, size, - "Operator code : %u Operator status : %u(STAT_CURRENT)", - paramVal2, paramVal); + "Operator code : %u Operator status : %u(STAT_CURRENT)", + paramVal2, paramVal); break; case TWOG_SIM_STAT_FORBIDDEN: snprintf(dataOutBufFromEc, size, - "Operator code : %u Operator status : %u(STAT_FORBIDDEN)", - paramVal2, paramVal); + "Operator code : %u Operator status : %u(STAT_FORBIDDEN)", + paramVal2, paramVal); break; default: @@ -95,25 +98,25 @@ int32_t ocmw_parse_obc_struct_from_ec(ocmwSendRecvBuf ecInputData) size = sizeof(dataOutBufFromEc); paramVal = (ecInputData.pbuf[ecSendBufBkp->paramPos]); - paramVal2 = *((uint16_t *) - &(ecInputData.pbuf[IRIDIUM_LASTERR_ERROR_CODE_OFFSET])); + paramVal2 = + *((uint16_t *)&(ecInputData.pbuf[IRIDIUM_LASTERR_ERROR_CODE_OFFSET])); switch (paramVal) { case ERR_RC_INTERNAL: snprintf(dataOutBufFromEc, size, - "Error Source : %u(ERR_RC_INTERNAL) Error Code : %u", - paramVal, paramVal2); + "Error Source : %u(ERR_RC_INTERNAL) Error Code : %u", + paramVal, paramVal2); break; case ERR_SRC_CMS: snprintf(dataOutBufFromEc, size, - "Error Source : %u(ERR_SRC_CMS) Error Code : %u", - paramVal, paramVal2); + "Error Source : %u(ERR_SRC_CMS) Error Code : %u", paramVal, + paramVal2); break; case ERR_SRC_CME: snprintf(dataOutBufFromEc, size, - "Error Source : %u(ERR_SRC_CME) Error Code : %u", - paramVal, paramVal2); + "Error Source : %u(ERR_SRC_CME) Error Code : %u", paramVal, + paramVal2); break; default: @@ -129,8 +132,8 @@ int32_t ocmw_parse_obc_struct_from_ec(ocmwSendRecvBuf ecInputData) * Input(s) : paramtype, msgtype, param_name * Output(s) : ******************************************************************************/ -int8_t ocmw_get_paramSize(const char* paramtype, int8_t msgtype, - const char* param_name) +int8_t ocmw_get_paramSize(const char *paramtype, int8_t msgtype, + const char *param_name) { int8_t paramSize = 0; @@ -139,26 +142,26 @@ int8_t ocmw_get_paramSize(const char* paramtype, int8_t msgtype, return FAILED; } - if (!strcmp("uint16",paramtype)) { + if (!strcmp("uint16", paramtype)) { paramSize = sizeof(uint16_t); s_typeFlag = OCMW_VALUE_TYPE_UINT16; - } else if (!strcmp("int16",paramtype)) { + } else if (!strcmp("int16", paramtype)) { paramSize = sizeof(int16_t); s_typeFlag = OCMW_VALUE_TYPE_INT16; - } else if (!strcmp("uint8",paramtype)) { + } else if (!strcmp("uint8", paramtype)) { paramSize = sizeof(uint8_t); s_typeFlag = OCMW_VALUE_TYPE_UINT8; - } else if (!strcmp("int8",paramtype)) { + } else if (!strcmp("int8", paramtype)) { paramSize = sizeof(int8_t); s_typeFlag = OCMW_VALUE_TYPE_INT8; - } else if (!strcmp("uint32",paramtype)) { + } else if (!strcmp("uint32", paramtype)) { paramSize = sizeof(uint32_t); s_typeFlag = OCMW_VALUE_TYPE_UINT32; - } else if (!strcmp("uint64",paramtype)) { + } else if (!strcmp("uint64", paramtype)) { paramSize = sizeof(uint64_t); - } else if (!strcmp("enum",paramtype)) { - s_typeFlag = OCMW_VALUE_TYPE_STRUCT; - paramSize = OCMW_VALUE_TYPE_ENUM; + } else if (!strcmp("enum", paramtype)) { + s_typeFlag = OCMW_VALUE_TYPE_STRUCT; + paramSize = OCMW_VALUE_TYPE_ENUM; } else { paramSize = sizeof(int8_t); } @@ -173,15 +176,15 @@ int8_t ocmw_get_paramSize(const char* paramtype, int8_t msgtype, * Output(s) : ******************************************************************************/ int32_t ocmw_frame_subsystem_from_schema(const Component *subSystem, - subSystemInfo *systemInfo) + subSystemInfo *systemInfo) { int32_t index = 0; - memset(&systemInfo->totalNum,0,sizeof(0)); + memset(&systemInfo->totalNum, 0, sizeof(0)); while (subSystem && subSystem->name) { systemInfo->totalNum += 1; systemInfo->Info[index].number = index; strncpy(systemInfo->Info[index].name, subSystem->name, - strlen(subSystem->name)); + strlen(subSystem->name)); index++; subSystem += 1; } @@ -201,54 +204,53 @@ int32_t ocmw_frame_postTable_from_schema(const Component *subSystem) const Component *component = NULL; const Component *subComponent = NULL; uint8_t subSystemNum = 0; - char tempComp[PARAM_STR_BUFF_SIZE] = {0}; - char tempCompdev[PARAM_STR_BUFF_SIZE] = {0}; + char tempComp[PARAM_STR_BUFF_SIZE] = { 0 }; + char tempCompdev[PARAM_STR_BUFF_SIZE] = { 0 }; ocwarePostArrayIndex = 0; while (subSystem && subSystem->name) { count = 1; component = subSystem->components; while (component && component->name) { subComponent = component->components; - if ((subComponent == NULL) && - ((!(component->postDisabled)))) { + if ((subComponent == NULL) && ((!(component->postDisabled)))) { memset(tempComp, 0, strlen(tempComp)); - strncpy(tempComp,component->name,strlen(component->name)); + strncpy(tempComp, component->name, strlen(component->name)); tempComp[0] = toupper(tempComp[0]); - strncpy((ocwarePostArray[index].subsysName), - subSystem->name, strlen(subSystem->name)); - strncpy((ocwarePostArray[index].deviceName), - tempComp, strlen(tempComp)); + strncpy((ocwarePostArray[index].subsysName), subSystem->name, + strlen(subSystem->name)); + strncpy((ocwarePostArray[index].deviceName), tempComp, + strlen(tempComp)); ocwarePostArray[index].devsn = count++; - ocwarePostArray[index].subsystem = subSystemNum; + ocwarePostArray[index].subsystem = subSystemNum; ocwarePostArrayIndex++; index++; } while (subComponent && subComponent->name) { if (!(subComponent->postDisabled)) { - strncpy(ocwarePostArray[index].subsysName, - subSystem->name, strlen(subSystem->name)); + strncpy(ocwarePostArray[index].subsysName, subSystem->name, + strlen(subSystem->name)); memset(ocwarePostArray[index].deviceName, 0, - sizeof(ocwarePostArray[index].deviceName)); + sizeof(ocwarePostArray[index].deviceName)); memset(tempComp, 0, strlen(tempComp)); memset(tempCompdev, 0, strlen(tempCompdev)); strncpy(tempComp, component->name, strlen(component->name)); strncpy(tempCompdev, subComponent->name, - strlen(subComponent->name)); + strlen(subComponent->name)); tempComp[0] = toupper(tempComp[0]); tempCompdev[0] = toupper(tempCompdev[0]); - if (!strcmp(component->name,"comp_all")) { + if (!strcmp(component->name, "comp_all")) { strcpy((ocwarePostArray[index].deviceName), - tempCompdev); + tempCompdev); } else { if ((snprintf(ocwarePostArray[index].deviceName, - OCMW_POST_DEVICE_SIZE, "%s %s", - tempComp, tempCompdev)) < 0) { + OCMW_POST_DEVICE_SIZE, "%s %s", tempComp, + tempCompdev)) < 0) { return FAILED; } } ocwarePostArray[index].devsn = count++; - ocwarePostArray[index].subsystem = subSystemNum; + ocwarePostArray[index].subsystem = subSystemNum; ocwarePostArrayIndex++; index++; } @@ -270,14 +272,14 @@ int32_t ocmw_frame_postTable_from_schema(const Component *subSystem) * Output(s) : noOfElement, size ******************************************************************************/ void ocmw_get_noOfElements(const Parameter *param_list, int32_t *noOfElement, - int32_t *size) + int32_t *size) { int8_t elementCount = 0; int8_t pSize = 0; if (param_list == NULL) { *noOfElement = 0; - *size = 0; + *size = 0; return; } while (param_list->name) { @@ -293,7 +295,249 @@ void ocmw_get_noOfElements(const Parameter *param_list, int32_t *noOfElement, *noOfElement = elementCount; *size = pSize; } +/****************************************************************************** + * Function Name : ocmw_get_alert_value + * Description : get the alert value from message + * Input(s) : paramtype, ecReceivedMsg + * Output(s) : recvdAlertVal + ******************************************************************************/ +void ocmw_get_alert_value(const Parameter *param, const char *paramtype, + char *alertVal, char *alertVal1, + OCMPMessageFrame *ecReceivedMsg) +{ + int8_t paramPos = 7; + int32_t recvdAlertVal = 0; + int32_t recvdAlertVal1 = 0; + char *alertEnumValue[2] = { 0 }; + char regStr[BUF_SIZE] = { 0 }; + char regStr1[BUF_SIZE] = { 0 }; + int8_t enumCount = 0; + int8_t strCount = 0; + int8_t index = 0; + if ((param == NULL) || (paramtype == NULL)) { + logdebug("Invalid paramtype\n"); + return; + } + + if (strcmp("uint16", paramtype) == 0) { + recvdAlertVal = *((uint16_t *)&(ecReceivedMsg->message.info[paramPos])); + recvdAlertVal1 = + *((uint16_t *)&(ecReceivedMsg->message.info[paramPos + 2])); + } else if (strcmp("int16", paramtype) == 0) { + recvdAlertVal = *((int16_t *)&(ecReceivedMsg->message.info[paramPos])); + recvdAlertVal1 = + *((int16_t *)&(ecReceivedMsg->message.info[paramPos + 2])); + } else if (strcmp("uint8", paramtype) == 0) { + recvdAlertVal = *((uint8_t *)&(ecReceivedMsg->message.info[paramPos])); + recvdAlertVal1 = + *((uint8_t *)&(ecReceivedMsg->message.info[paramPos + 2])); + } else if (strcmp("string", paramtype) == 0) { + memcpy(regStr, &ecReceivedMsg->message.info[paramPos], param->size); + memcpy(regStr1, &ecReceivedMsg->message.info[paramPos + 2], + param->size); + strCount++; + /*} else if (strcmp("enum",paramtype) == 0) { + valueEnum = param->values; + while (valueEnum && valueEnum->name) { + paramVal = valueEnum->value; + alertEnumValue[paramVal] = (char *) + realloc(alertEnumValue[paramVal], BUF_SIZE); + if (!alertEnumValue[paramVal]) { + logerr("Memory allocation failed\n"); + return; + } + enumCount++; + strncpy((alertEnumValue[paramVal]), valueEnum->name, + ENUM_BUF_SIZE); valueEnum += 1; + } + recvdAlertVal = *((uint8_t *) + &(ecReceivedMsg->message.info[paramPos])); strcpy(regStr, + paramEnumValue[recvdAlertVal]); strcpy(regStr1, + paramEnumValue[recvdAlertVal]);*/ + } + + if (enumCount) { + sprintf(alertVal, "%u(%s)", recvdAlertVal, regStr); + sprintf(alertVal1, "%u(%s)", recvdAlertVal1, regStr1); + } else if (strCount) { + sprintf(alertVal, "%s", regStr); + sprintf(alertVal1, "%s", regStr1); + } else { + sprintf(alertVal, "%u", recvdAlertVal); + sprintf(alertVal1, "%u", recvdAlertVal1); + } + for (index = 0; index < enumCount; index++) { + ocmw_free_global_pointer((void **)&alertEnumValue[index]); + } + + return; +} + +/****************************************************************************** + * Function Name : ocmw_extract_dateTime_from_msgFrame + * Description : extract date time for alerts + * Input(s) : ecReceivedMsg + * Output(s) : + ******************************************************************************/ +void ocmw_extract_dateTime_from_msgFrame(OCMPMessageFrame *ecReceivedMsg) +{ + uint8_t hour = 0; + uint8_t minuts = 0; + uint8_t second = 0; + uint8_t day = 0; + uint8_t month = 0; + uint8_t year = 0; + int8_t paramPos = 1; + + hour = *((uint8_t *)&(ecReceivedMsg->message.info[paramPos])); + minuts = *((uint8_t *)&(ecReceivedMsg->message.info[paramPos + 1])); + second = *((uint8_t *)&(ecReceivedMsg->message.info[paramPos + 2])); + day = *((uint8_t *)&(ecReceivedMsg->message.info[paramPos + 3])); + month = *((uint8_t *)&(ecReceivedMsg->message.info[paramPos + 4])); + year = *((uint8_t *)&(ecReceivedMsg->message.info[paramPos + 5])); + sprintf(alerts.list[s_alertIndex].datetime, "%d:%d:%d %d/%d/20%d", hour, + minuts, second, day, month, year); + return; +} + +/****************************************************************************** + * Function Name : ocmw_handle_alert_msg + * Description : parse schema for alert message + * Input(s) : compBase, ecReceivedMsg + * Output(s) : + ******************************************************************************/ +void ocmw_handle_alert_msg(const Component *compBase, + OCMPMessageFrame *ecReceivedMsg, int8_t *alertRecord) +{ + const Component *component = NULL; + const Component *subComponent = NULL; + const Component *subSystem = compBase; + const Driver *devDriver = NULL; + const Parameter *param = NULL; + char response[RES_STR_BUFF_SIZE] = { 0 }; + int8_t count = 0; + int8_t countParamId = 0; + int8_t ret = 0; + int32_t alertElements = 0; + int32_t alertElementsTemp = 0; + int32_t size = 0; + static int8_t alertCount = 0; + + sMsgParam *sMsgFrameParam = (sMsgParam *)malloc(sizeof(sMsgParam)); + + if ((subSystem == NULL) || (sMsgFrameParam == NULL)) { + logdebug("Invalid Memory\n"); + return; + } + if ((alertFlag == 0) && (alerts.nalerts == 0)) { + alerts.list = (struct allAlertEvent *)calloc( + ALERT_MAX_BUFF_SIZE, sizeof(struct allAlertEvent)); + } + memset(sMsgFrameParam, 0, sizeof(sMsgParam)); + sMsgFrameParam->component = 1; + while (subSystem && subSystem->name) { + if (sMsgFrameParam->subsystem == ecReceivedMsg->message.subsystem) { + component = subSystem->components; + while (component && component->name) { + if (ecReceivedMsg->message.componentID == + sMsgFrameParam->component) { + devDriver = component->driver; + if (devDriver != NULL) { + param = devDriver->alerts; + while (param && param->name) { + if (ecReceivedMsg->message.parameters == + pow(2, countParamId)) { + sprintf(alerts.list[s_alertIndex].string, + "%s.%s.alerts.%s", subSystem->name, + component->name, param->name); + ocmw_get_alert_value( + param, DATA_TYPE_MAP[param->type], + alerts.list[s_alertIndex].value, + alerts.list[s_alertIndex].actualValue, + ecReceivedMsg); + alertCount++; + break; + } + countParamId = countParamId + 1; + param += 1; + } + } + subComponent = component->components; + while (subComponent && subComponent->name) { + countParamId = 0; + devDriver = subComponent->driver; + if (devDriver != NULL) { + param = devDriver->alerts; + ocmw_get_noOfElements(param, &alertElements, &size); + while (param && param->name) { + if (ecReceivedMsg->message.parameters == + pow(2, countParamId + alertElementsTemp)) { + sprintf(alerts.list[s_alertIndex].string, + "%s.%s.alerts.%s.%s", + subSystem->name, component->name, + subComponent->name, param->name); + ocmw_get_alert_value( + param, DATA_TYPE_MAP[param->type], + alerts.list[s_alertIndex].value, + alerts.list[s_alertIndex].actualValue, + ecReceivedMsg); + count++; + alertCount++; + break; + } + countParamId = countParamId + 1; + param += 1; + } + } + if (count > 0) + break; + alertElementsTemp = alertElementsTemp + alertElements; + subComponent += 1; + } + break; + } + sMsgFrameParam->component += 1; + component += 1; + } + break; + } + sMsgFrameParam->subsystem += 1; + subSystem += 1; + } + if (ecReceivedMsg->message.action == OCMP_AXN_TYPE_ACTIVE) { + strcpy(alerts.list[s_alertIndex].action, "ACTIVE"); + } else if (ecReceivedMsg->message.action == OCMP_AXN_TYPE_CLEAR) { + strcpy(alerts.list[s_alertIndex].action, "CLEAR"); + } + ocmw_extract_dateTime_from_msgFrame(ecReceivedMsg); + logdebug("Alert : %25s%10s%5s\n", alerts.list[s_alertIndex].string, + alerts.list[s_alertIndex].action, alerts.list[s_alertIndex].value); + alerts.nalerts = s_alertIndex; + if ((alertFlag > 0) && + (ecReceivedMsg->message.action == OCMP_AXN_TYPE_REPLY)) { + *alertRecord = 0; + if (alertCount > 0) { + alerts.nalerts = s_alertIndex - 1; + alertCount = 0; + } else { + alerts.nalerts = 0; + } + sem_post(&semCliReturn); + s_alertIndex = 0; + alertFlag = 0; + } else if (alertFlag == 0) { + *alertRecord = 0; + ret = ocmw_handle_show_alerts(response); + if (ret == FAILED) + logdebug("Alert send error\n"); + s_alertIndex = 0; + alertCount = 0; + } + free(sMsgFrameParam); + s_alertIndex++; + return; +} /****************************************************************************** * Function Name : ocmw_parse_command_msgframe * Description : parse the command @@ -301,15 +545,15 @@ void ocmw_get_noOfElements(const Parameter *param_list, int32_t *noOfElement, * Output(s) : ******************************************************************************/ int32_t ocmw_parse_command_msgframe(const Component *compBase, - strMsgFrame *msgFrame, uint8_t actiontype, - ocmwSchemaSendBuf *ecSendBuf) + strMsgFrame *msgFrame, uint8_t actiontype, + ocmwSchemaSendBuf *ecSendBuf) { const Component *component = NULL; const Component *subSystem = compBase; const Component *subcomponent = NULL; const Command *comm = NULL; const Driver *driver = NULL; - sMsgParam *sMsgFrameParam = (sMsgParam *) malloc(sizeof(sMsgParam)); + sMsgParam *sMsgFrameParam = (sMsgParam *)malloc(sizeof(sMsgParam)); int16_t paramId = 0; int8_t subCount = 0; int8_t actionType = 0; @@ -330,8 +574,7 @@ int32_t ocmw_parse_command_msgframe(const Component *compBase, } memset(sMsgFrameParam, 0, sizeof(sMsgParam)); if (ecSendBufBkp == NULL) { - ecSendBufBkp = - (ocmwSchemaSendBuf *) malloc(sizeof(ocmwSchemaSendBuf)); + ecSendBufBkp = (ocmwSchemaSendBuf *)malloc(sizeof(ocmwSchemaSendBuf)); } if (ecSendBufBkp == NULL) { return -1; @@ -341,7 +584,7 @@ int32_t ocmw_parse_command_msgframe(const Component *compBase, sMsgFrameParam->component = 1; while (subSystem && subSystem->name) { if (strncmp(subSystem->name, msgFrame->subsystem, - strlen(msgFrame->subsystem)) == 0) { + strlen(msgFrame->subsystem)) == 0) { ecSendBuf->subsystem = (sMsgFrameParam->subsystem); component = subSystem->components; while (component && component->name) { @@ -357,7 +600,7 @@ int32_t ocmw_parse_command_msgframe(const Component *compBase, strlen(msgFrame->parameter)) == 0) { paramId = 0; actionType = count; - subCount ++; + subCount++; break; } count++; @@ -371,14 +614,14 @@ int32_t ocmw_parse_command_msgframe(const Component *compBase, * subsystem->component->driver->command */ componentCount = 0; - if(driver != NULL) { + if (driver != NULL) { comm = driver->commands; while (comm && comm->name) { if (strncmp(comm->name, msgFrame->parameter, strlen(msgFrame->parameter)) == 0) { paramId = 0; actionType = componentCount; - subCount ++; + subCount++; break; } componentCount++; @@ -394,21 +637,22 @@ int32_t ocmw_parse_command_msgframe(const Component *compBase, count = 1; subcomponent = component->components; while (subcomponent && subcomponent->name) { - if (strcmp(subcomponent->name, msgFrame->subcomponent) - == 0) { + if (strcmp(subcomponent->name, + msgFrame->subcomponent) == 0) { driver = subcomponent->driver; - if(driver != NULL) { + if (driver != NULL) { comm = driver->commands; componentCount = 0; while (comm && comm->name) { if (strncmp(comm->name, msgFrame->parameter, - strlen(msgFrame->parameter)) == 0) { + strlen(msgFrame->parameter)) == + 0) { /* - * Here subcomponentId = paramId - */ + * Here subcomponentId = paramId + */ paramId = count; actionType = componentCount; - subCount ++; + subCount++; /*break as we found the command */ break; } @@ -439,17 +683,16 @@ int32_t ocmw_parse_command_msgframe(const Component *compBase, ecSendBuf->paramPos = paramPos; ecSendBuf->paramId = paramId; ecSendBuf->paramSize = paramSize; - if(msgFrame->parameter) { - memset(ecSendBuf->commandType, 0, - strlen(ecSendBuf->commandType)); + if (msgFrame->parameter) { + memset(ecSendBuf->commandType, 0, strlen(ecSendBuf->commandType)); strncpy(ecSendBuf->commandType, msgFrame->parameter, - strlen(msgFrame->parameter)); + strlen(msgFrame->parameter)); } - memcpy(ecSendBufBkp,ecSendBuf,sizeof(ocmwSchemaSendBuf)); + memcpy(ecSendBufBkp, ecSendBuf, sizeof(ocmwSchemaSendBuf)); free(sMsgFrameParam); - if (subCount == 0) { + if (subCount == 0) { return FAILED; } @@ -463,8 +706,8 @@ int32_t ocmw_parse_command_msgframe(const Component *compBase, * Output(s) : ******************************************************************************/ int32_t ocmw_parse_post_msgframe(const Component *compBase, - strMsgFrame *msgFrame, uint8_t actiontype, - ocmwSchemaSendBuf *ecSendBuf) + strMsgFrame *msgFrame, uint8_t actiontype, + ocmwSchemaSendBuf *ecSendBuf) { const Component *component = NULL; const Component *subSystem = compBase; @@ -474,13 +717,12 @@ int32_t ocmw_parse_post_msgframe(const Component *compBase, int8_t count = 0; int8_t paramSize = 0; int8_t paramPos = 0; - sMsgParam *sMsgFrameParam = (sMsgParam *) malloc(sizeof(sMsgParam)); + sMsgParam *sMsgFrameParam = (sMsgParam *)malloc(sizeof(sMsgParam)); if (sMsgFrameParam == NULL) { return FAILED; } if (ecSendBufBkp == NULL) { - ecSendBufBkp = - (ocmwSchemaSendBuf *) malloc(sizeof(ocmwSchemaSendBuf)); + ecSendBufBkp = (ocmwSchemaSendBuf *)malloc(sizeof(ocmwSchemaSendBuf)); } if (ecSendBufBkp == NULL) { return FAILED; @@ -497,7 +739,7 @@ int32_t ocmw_parse_post_msgframe(const Component *compBase, memset(ecSendBufBkp, 0, sizeof(ocmwSchemaSendBuf)); while (subSystem && subSystem->name) { if (strncmp(subSystem->name, msgFrame->subsystem, - strlen(msgFrame->subsystem)) == 0) { + strlen(msgFrame->subsystem)) == 0) { ecSendBuf->subsystem = (sMsgFrameParam->subsystem); component = subSystem->components; while (component && component->name) { @@ -509,8 +751,8 @@ int32_t ocmw_parse_post_msgframe(const Component *compBase, param = devDriver->post; while (param && param->name) { if (strncmp(param->name, msgFrame->subcomponent, - strlen(msgFrame->subcomponent)) == 0) { - paramId = pow(2,count); + strlen(msgFrame->subcomponent)) == 0) { + paramId = pow(2, count); break; } count++; @@ -541,8 +783,9 @@ int32_t ocmw_parse_post_msgframe(const Component *compBase, * Output(s) : ******************************************************************************/ int32_t ocmw_parse_driver_from_component(strMsgFrame *msgFrame, - ocmwSchemaSendBuf *ecSendBuf, const Driver *devDriver, - uint8_t actiontype) + ocmwSchemaSendBuf *ecSendBuf, + const Driver *devDriver, + uint8_t actiontype) { const Parameter *param = NULL; Enum_Map *value_enum = NULL; @@ -556,20 +799,20 @@ int32_t ocmw_parse_driver_from_component(strMsgFrame *msgFrame, ecSendBuf->actionType = actiontype; while (param && param->name) { if (strncmp(param->name, msgFrame->parameter, - strlen(msgFrame->parameter)) == 0) { - ecSendBuf->paramId = pow(2,count); + strlen(msgFrame->parameter)) == 0) { + ecSendBuf->paramId = pow(2, count); ecSendBuf->paramPos = temp + ecSendBuf->paramPos; - ecSendBuf->paramSize = ocmw_get_paramSize ( - DATA_TYPE_MAP[param->type], - OCMP_MSG_TYPE_CONFIG, param->name); + ecSendBuf->paramSize = + ocmw_get_paramSize(DATA_TYPE_MAP[param->type], + OCMP_MSG_TYPE_CONFIG, param->name); break; } count = count + 1; if ((!strcmp("uint16", DATA_TYPE_MAP[param->type])) || - (!strcmp("int16", DATA_TYPE_MAP[param->type]))) { + (!strcmp("int16", DATA_TYPE_MAP[param->type]))) { ecSendBuf->paramPos = ecSendBuf->paramPos + sizeof(uint16_t); } else if ((!strcmp("uint8", DATA_TYPE_MAP[param->type])) || - (!strcmp("int8", DATA_TYPE_MAP[param->type]))) { + (!strcmp("int8", DATA_TYPE_MAP[param->type]))) { ecSendBuf->paramPos = ecSendBuf->paramPos + sizeof(uint8_t); } param += 1; @@ -580,55 +823,55 @@ int32_t ocmw_parse_driver_from_component(strMsgFrame *msgFrame, ecSendBuf->actionType = actiontype; while (param && param->name) { if (strncmp(param->name, msgFrame->parameter, - strlen(msgFrame->parameter)) == 0) { - ecSendBuf->paramId = pow(2,count); - if ((strncmp(param->name,"registration", - strlen(msgFrame->parameter)) == 0) || - (strncmp(param->name,"gps_lock", - strlen(msgFrame->parameter)) == 0)) { + strlen(msgFrame->parameter)) == 0) { + ecSendBuf->paramId = pow(2, count); + if ((strncmp(param->name, "registration", + strlen(msgFrame->parameter)) == 0) || + (strncmp(param->name, "gps_lock", + strlen(msgFrame->parameter)) == 0)) { value_enum = param->values; - for (index =index; index < OCMW_VALUE_TYPE_MFG; index++) { + for (index = index; index < OCMW_VALUE_TYPE_MFG; index++) { s_paramEnumValue[index] = (char *)malloc(BUF_SIZE); } while (value_enum && value_enum->name) { regValue = value_enum->value; strncpy((s_paramEnumValue[regValue]), value_enum->name, - ENUM_BUF_SIZE); + ENUM_BUF_SIZE); value_enum += 1; } s_typeFlag = OCMW_VALUE_TYPE_STRUCT; - } else if(strncmp(param->name, "network_operatorinfo", - strlen(msgFrame->parameter)) == 0) { + } else if (strncmp(param->name, "network_operatorinfo", + strlen(msgFrame->parameter)) == 0) { s_typeFlag = OCMW_VALUE_TYPE_NWOP_STRUCT; } if ((strncmp(msgFrame->subsystem, "obc", - strlen(msgFrame->subsystem)) == 0) || - (strncmp(msgFrame->subsystem, "testmodule", - strlen(msgFrame->subsystem)) == 0)) { + strlen(msgFrame->subsystem)) == 0) || + (strncmp(msgFrame->subsystem, "testmodule", + strlen(msgFrame->subsystem)) == 0)) { ecSendBuf->paramPos = 0; } else { ecSendBuf->paramPos = temp + ecSendBuf->paramPos; } if ((param->size) && - (strcmp(DATA_TYPE_MAP[param->type],"enum") != 0)) { + (strcmp(DATA_TYPE_MAP[param->type], "enum") != 0)) { ecSendBuf->paramSize = param->size; } else { - ecSendBuf->paramSize = ocmw_get_paramSize( - DATA_TYPE_MAP[param->type], - OCMP_MSG_TYPE_STATUS, param->name); + ecSendBuf->paramSize = + ocmw_get_paramSize(DATA_TYPE_MAP[param->type], + OCMP_MSG_TYPE_STATUS, param->name); } break; } count = count + 1; if ((!strcmp("uint16", DATA_TYPE_MAP[param->type])) || - (!strcmp("int16", DATA_TYPE_MAP[param->type]))) { + (!strcmp("int16", DATA_TYPE_MAP[param->type]))) { ecSendBuf->paramPos = ecSendBuf->paramPos + sizeof(uint16_t); } else if ((!strcmp("uint8", DATA_TYPE_MAP[param->type])) || - (!strcmp("int8", DATA_TYPE_MAP[param->type]))) { + (!strcmp("int8", DATA_TYPE_MAP[param->type]))) { ecSendBuf->paramPos = ecSendBuf->paramPos + sizeof(uint8_t); } else if (!strcmp("string", DATA_TYPE_MAP[param->type])) { - ecSendBuf->paramPos = ecSendBuf->paramPos + - EEPROM_STATUS_MAX_SIZE; + ecSendBuf->paramPos = + ecSendBuf->paramPos + EEPROM_STATUS_MAX_SIZE; } param += 1; } @@ -644,9 +887,10 @@ int32_t ocmw_parse_driver_from_component(strMsgFrame *msgFrame, * Input(s) : msgFrame, ecSendBuf, subComponent, actiontype * Output(s) : ******************************************************************************/ -int32_t ocmw_parse_driver_from_subcomponent (strMsgFrame *msgFrame, - ocmwSchemaSendBuf *ecSendBuf, const Component *subComponent, - uint8_t actiontype) +int32_t ocmw_parse_driver_from_subcomponent(strMsgFrame *msgFrame, + ocmwSchemaSendBuf *ecSendBuf, + const Component *subComponent, + uint8_t actiontype) { const Driver *devDriver = NULL; const Parameter *param = NULL; @@ -660,14 +904,14 @@ int32_t ocmw_parse_driver_from_subcomponent (strMsgFrame *msgFrame, temp = temp + size; if (strncmp(msgFrame->msgtype, "config", strlen("config")) == 0) { param = devDriver->config; - ocmw_get_noOfElements(param,&noOfElement, &size); - } else if (strncmp(msgFrame->msgtype, "status", - strlen("status")) == 0) { + ocmw_get_noOfElements(param, &noOfElement, &size); + } else if (strncmp(msgFrame->msgtype, "status", strlen("status")) == + 0) { param = devDriver->status; - ocmw_get_noOfElements(param,&noOfElement, &size); + ocmw_get_noOfElements(param, &noOfElement, &size); } if (strncmp(subComponent->name, msgFrame->subcomponent, - strlen(msgFrame->subcomponent)) == 0) { + strlen(msgFrame->subcomponent)) == 0) { devDriver = subComponent->driver; if (strncmp(msgFrame->msgtype, "config", strlen("config")) == 0) { param = devDriver->config; @@ -675,68 +919,66 @@ int32_t ocmw_parse_driver_from_subcomponent (strMsgFrame *msgFrame, ecSendBuf->actionType = actiontype; while (param && param->name) { if (strncmp(param->name, msgFrame->parameter, - strlen(msgFrame->parameter)) == 0) { - ecSendBuf->paramId = pow(2, - count + noOfElementTemp); + strlen(msgFrame->parameter)) == 0) { + ecSendBuf->paramId = pow(2, count + noOfElementTemp); ecSendBuf->paramPos = temp + ecSendBuf->paramPos; if (param->size) { ecSendBuf->paramSize = param->size; } else { ecSendBuf->paramSize = ocmw_get_paramSize( - DATA_TYPE_MAP[param->type], - OCMP_MSG_TYPE_CONFIG, param->name); + DATA_TYPE_MAP[param->type], + OCMP_MSG_TYPE_CONFIG, param->name); } break; } count = count + 1; if ((!strcmp("uint16", DATA_TYPE_MAP[param->type])) || - (!strcmp("int16", DATA_TYPE_MAP[param->type]))) { + (!strcmp("int16", DATA_TYPE_MAP[param->type]))) { ecSendBuf->paramPos = - ecSendBuf->paramPos + sizeof(uint16_t); - } else if ((!strcmp("uint8", DATA_TYPE_MAP[param->type])) - || (!strcmp("int8", DATA_TYPE_MAP[param->type]))) { + ecSendBuf->paramPos + sizeof(uint16_t); + } else if ((!strcmp("uint8", DATA_TYPE_MAP[param->type])) || + (!strcmp("int8", DATA_TYPE_MAP[param->type]))) { ecSendBuf->paramPos = ecSendBuf->paramPos + sizeof(uint8_t); } param += 1; } - } else if (strncmp(msgFrame->msgtype, "status", - strlen("status")) == 0) { + } else if (strncmp(msgFrame->msgtype, "status", strlen("status")) == + 0) { param = devDriver->status; ecSendBuf->msgType = OCMP_MSG_TYPE_STATUS; ecSendBuf->actionType = actiontype; while (param && param->name) { if (strncmp(param->name, msgFrame->parameter, - strlen(msgFrame->parameter)) == 0) { - ecSendBuf->paramId = - pow(2, count + noOfElementTemp); + strlen(msgFrame->parameter)) == 0) { + ecSendBuf->paramId = pow(2, count + noOfElementTemp); ecSendBuf->paramPos = temp + ecSendBuf->paramPos; if (param->size) { ecSendBuf->paramSize = param->size; } else { - ecSendBuf->paramSize = ocmw_get_paramSize ( - DATA_TYPE_MAP[param->type], - OCMP_MSG_TYPE_STATUS, param->name); + ecSendBuf->paramSize = ocmw_get_paramSize( + DATA_TYPE_MAP[param->type], + OCMP_MSG_TYPE_STATUS, param->name); } break; } count = count + 1; if ((!strcmp("uint16", DATA_TYPE_MAP[param->type])) || - (!strcmp("int16", DATA_TYPE_MAP[param->type]))) { + (!strcmp("int16", DATA_TYPE_MAP[param->type]))) { ecSendBuf->paramPos = ecSendBuf->paramPos + sizeof(uint16_t); - } else if ((!strcmp("uint8", DATA_TYPE_MAP[param->type])) - || (!strcmp("int8", DATA_TYPE_MAP[param->type]))) { + } else if ((!strcmp("uint8", DATA_TYPE_MAP[param->type])) || + (!strcmp("int8", DATA_TYPE_MAP[param->type]))) { ecSendBuf->paramPos = - ecSendBuf->paramPos + sizeof(uint8_t); + ecSendBuf->paramPos + sizeof(uint8_t); } else if (!strcmp("string", DATA_TYPE_MAP[param->type])) { - ecSendBuf->paramPos = ecSendBuf->paramPos + - EEPROM_STATUS_MAX_SIZE; + ecSendBuf->paramPos = + ecSendBuf->paramPos + EEPROM_STATUS_MAX_SIZE; } param += 1; } - } else if (strncmp(msgFrame->msgtype, "alerts", - strlen("alerts")) == 0) { + } else if (strncmp(msgFrame->msgtype, "alerts", strlen("alerts")) == + 0) { param = devDriver->alerts; } break; @@ -754,13 +996,13 @@ int32_t ocmw_parse_driver_from_subcomponent (strMsgFrame *msgFrame, * Output(s) : ******************************************************************************/ int32_t ocmw_parse_msgframe(const Component *compBase, strMsgFrame *msgFrame, - uint8_t actiontype,ocmwSchemaSendBuf *ecSendBuf) + uint8_t actiontype, ocmwSchemaSendBuf *ecSendBuf) { const Component *component = NULL; const Component *subComponent = NULL; const Component *subSystem = compBase; const Driver *devDriver = NULL; - sMsgParam *sMsgFrameParam = (sMsgParam *) malloc(sizeof(sMsgParam)); + sMsgParam *sMsgFrameParam = (sMsgParam *)malloc(sizeof(sMsgParam)); recvdParamVal = 0; eepromFlag = 0; s_typeFlag = 0; @@ -772,8 +1014,7 @@ int32_t ocmw_parse_msgframe(const Component *compBase, strMsgFrame *msgFrame, memset(sMsgFrameParam, 0, sizeof(sMsgParam)); if (ecSendBufBkp == NULL) { - ecSendBufBkp = - (ocmwSchemaSendBuf *) malloc(sizeof(ocmwSchemaSendBuf)); + ecSendBufBkp = (ocmwSchemaSendBuf *)malloc(sizeof(ocmwSchemaSendBuf)); } if (ecSendBufBkp == NULL) { return -1; @@ -788,7 +1029,7 @@ int32_t ocmw_parse_msgframe(const Component *compBase, strMsgFrame *msgFrame, sMsgFrameParam->component = 1; while (subSystem && subSystem->name) { if (strncmp(subSystem->name, msgFrame->subsystem, - strlen(msgFrame->subsystem)) == 0) { + strlen(msgFrame->subsystem)) == 0) { ecSendBuf->subsystem = (sMsgFrameParam->subsystem); component = subSystem->components; while (component && component->name) { @@ -796,13 +1037,13 @@ int32_t ocmw_parse_msgframe(const Component *compBase, strMsgFrame *msgFrame, ecSendBuf->componentId = sMsgFrameParam->component; devDriver = component->driver; if (devDriver != NULL) { - ocmw_parse_driver_from_component(msgFrame, - ecSendBuf,devDriver,actiontype); + ocmw_parse_driver_from_component(msgFrame, ecSendBuf, + devDriver, actiontype); } subComponent = component->components; - if (subComponent != NULL){ - ocmw_parse_driver_from_subcomponent(msgFrame, - ecSendBuf,subComponent,actiontype); + if (subComponent != NULL) { + ocmw_parse_driver_from_subcomponent( + msgFrame, ecSendBuf, subComponent, actiontype); } break; } @@ -831,54 +1072,46 @@ int32_t ocmw_parse_message_fram_from_ec(OCMPMessageFrame *ecReceivedMsg) int32_t ret = 0; int32_t index = 0; int32_t paramVal = 0; - char regStr[BUF_SIZE] = {0}; + char regStr[BUF_SIZE] = { 0 }; size_t size = 0; ocmwSendRecvBuf ecInputData; - switch(ecSendBufBkp->paramSize) { + switch (ecSendBufBkp->paramSize) { case (sizeof(uint16_t)): if (s_typeFlag == OCMW_VALUE_TYPE_UINT16) { - recvdParamVal = - *((uint16_t *) - &(ecReceivedMsg->message.info[ecSendBufBkp->paramPos])); + recvdParamVal = *((uint16_t *)&( + ecReceivedMsg->message.info[ecSendBufBkp->paramPos])); } else if (s_typeFlag == OCMW_VALUE_TYPE_INT16) { - recvdParamVal = - *((int16_t *) - &(ecReceivedMsg->message.info[ecSendBufBkp->paramPos])); + recvdParamVal = *((int16_t *)&( + ecReceivedMsg->message.info[ecSendBufBkp->paramPos])); } break; - case (sizeof(uint8_t)) : + case (sizeof(uint8_t)): if (s_typeFlag == OCMW_VALUE_TYPE_UINT8) { - recvdParamVal = - *((uint8_t *) - &(ecReceivedMsg->message.info[ecSendBufBkp->paramPos])); + recvdParamVal = *((uint8_t *)&( + ecReceivedMsg->message.info[ecSendBufBkp->paramPos])); } else if (s_typeFlag == OCMW_VALUE_TYPE_INT8) { - recvdParamVal = - *((int8_t *) - &(ecReceivedMsg->message.info[ecSendBufBkp->paramPos])); + recvdParamVal = *((int8_t *)&( + ecReceivedMsg->message.info[ecSendBufBkp->paramPos])); } else if (s_typeFlag == OCMW_VALUE_TYPE_ENUM) { - recvdParamVal = - *((int8_t *) - &(ecReceivedMsg->message.info[ecSendBufBkp->paramPos])); + recvdParamVal = *((int8_t *)&( + ecReceivedMsg->message.info[ecSendBufBkp->paramPos])); } break; case (sizeof(uint32_t)): if (s_typeFlag == OCMW_VALUE_TYPE_UINT32) { - recvdParamVal = - *((uint32_t *) - &(ecReceivedMsg->message.info[ecSendBufBkp->paramPos])); + recvdParamVal = *((uint32_t *)&( + ecReceivedMsg->message.info[ecSendBufBkp->paramPos])); } else { - memset(dataOutBufFromEc, 0 , - sizeof(dataOutBufFromEc)); + memset(dataOutBufFromEc, 0, sizeof(dataOutBufFromEc)); memcpy(dataOutBufFromEc, ecReceivedMsg->message.info, - OCMW_VALUE_TYPE_MODEL); + OCMW_VALUE_TYPE_MODEL); eepromFlag++; } break; case (sizeof(uint64_t)): - recvdParamVal = - *((uint64_t *) - &(ecReceivedMsg->message.info[ecSendBufBkp->paramPos])); + recvdParamVal = *((uint64_t *)&( + ecReceivedMsg->message.info[ecSendBufBkp->paramPos])); break; case EEPROM_CONFIG_MAX_SIZE: case EEPROM_CONFIG_SIZE: @@ -892,20 +1125,20 @@ int32_t ocmw_parse_message_fram_from_ec(OCMPMessageFrame *ecReceivedMsg) ecInputData.actionType = ecReceivedMsg->message.action; ecInputData.subsystem = ecReceivedMsg->message.subsystem; memcpy(ecInputData.pbuf, ecReceivedMsg->message.info, - MAX_PARM_COUNT); + MAX_PARM_COUNT); ret = ocmw_parse_eepromdata_from_ec(ecInputData); eepromFlag++; break; case OCMW_VALUE_TYPE_MFG: memset(dataOutBufFromEc, 0, sizeof(dataOutBufFromEc)); - memcpy(dataOutBufFromEc,ecReceivedMsg->message.info, - OCMW_VALUE_TYPE_MFG); + memcpy(dataOutBufFromEc, ecReceivedMsg->message.info, + OCMW_VALUE_TYPE_MFG); eepromFlag++; break; case OCMW_VALUE_TYPE_GETMODEL: memset(dataOutBufFromEc, 0, sizeof(dataOutBufFromEc)); memcpy(dataOutBufFromEc, ecReceivedMsg->message.info, - OCMW_VALUE_TYPE_GETMODEL); + OCMW_VALUE_TYPE_GETMODEL); eepromFlag++; break; case OCMW_VALUE_TYPE_ENUM: @@ -918,21 +1151,21 @@ int32_t ocmw_parse_message_fram_from_ec(OCMPMessageFrame *ecReceivedMsg) ecInputData.actionType = ecReceivedMsg->message.action; ecInputData.subsystem = ecReceivedMsg->message.subsystem; memcpy(ecInputData.pbuf, ecReceivedMsg->message.info, - MAX_PARM_COUNT); + MAX_PARM_COUNT); if (s_typeFlag == OCMW_VALUE_TYPE_STRUCT) { - paramVal = *((uint8_t *) ecInputData.pbuf); + paramVal = *((uint8_t *)ecInputData.pbuf); memset(dataOutBufFromEc, 0, sizeof(dataOutBufFromEc)); size = sizeof(dataOutBufFromEc); if (s_paramEnumValue[paramVal]) { - strcpy(regStr,s_paramEnumValue[paramVal]); - snprintf(dataOutBufFromEc, size, - "%u(%s) ", paramVal,regStr); + strcpy(regStr, s_paramEnumValue[paramVal]); + snprintf(dataOutBufFromEc, size, "%u(%s) ", paramVal, + regStr); for (index = 0; index < OCMW_VALUE_TYPE_MFG; index++) { ocmw_free_global_pointer( - (void**)&s_paramEnumValue[index]); + (void **)&s_paramEnumValue[index]); } } - }else if (s_typeFlag == OCMW_VALUE_TYPE_NWOP_STRUCT) { + } else if (s_typeFlag == OCMW_VALUE_TYPE_NWOP_STRUCT) { ret = ocmw_parse_testingmodule_struct_from_ec(ecInputData); } else { ret = ocmw_parse_obc_struct_from_ec(ecInputData); @@ -962,13 +1195,13 @@ void ocmw_deserialise_debug_gpio_value(OCMPMessageFrame *ecReceivedMsg) int8_t value = 0; size_t size = 0; - memset(dataOutBufFromEc, 0, sizeof(dataOutBufFromEc)); + memset(dataOutBufFromEc, 0, sizeof(dataOutBufFromEc)); size = sizeof(dataOutBufFromEc); pin = *((uint8_t *)&(ecReceivedMsg->message.info[ecSendBufBkp->paramPos])); - value = *((uint8_t *)&(ecReceivedMsg->message.info[ecSendBufBkp->paramPos + - 1])); + value = *( + (uint8_t *)&(ecReceivedMsg->message.info[ecSendBufBkp->paramPos + 1])); snprintf(dataOutBufFromEc, size, "(Pin No : %d) %s = %d", pin, - ecSendBufBkp->commandType, value); + ecSendBufBkp->commandType, value); return; } /****************************************************************************** @@ -982,14 +1215,14 @@ void ocmw_deserialise_debug_mdio_value(OCMPMessageFrame *ecReceivedMsg) uint16_t registerAddress = 0; uint16_t registerData = 0; size_t size = 0; - registerAddress = *((uint16_t *) - &(ecReceivedMsg->message.info[ecSendBufBkp->paramPos])); - registerData = *((uint16_t *) - &(ecReceivedMsg->message.info[ecSendBufBkp->paramPos + 2])); + registerAddress = + *((uint16_t *)&(ecReceivedMsg->message.info[ecSendBufBkp->paramPos])); + registerData = *( + (uint16_t *)&(ecReceivedMsg->message.info[ecSendBufBkp->paramPos + 2])); memset(dataOutBufFromEc, 0, sizeof(dataOutBufFromEc)); size = sizeof(dataOutBufFromEc); snprintf(dataOutBufFromEc, size, "(Register Address : %d) %s = %d", - registerAddress, ecSendBufBkp->commandType, registerData); + registerAddress, ecSendBufBkp->commandType, registerData); return; } /****************************************************************************** @@ -1006,30 +1239,34 @@ void ocmw_deserialise_debug_i2c_value(OCMPMessageFrame *ecReceivedMsg) uint16_t registerData = 0; size_t size = 0; - slaveAddress = *((uint8_t *) - &(ecReceivedMsg->message.info[ecSendBufBkp->paramPos])); - noOfBytes = *((uint8_t *) - &(ecReceivedMsg->message.info[ecSendBufBkp->paramPos + 1])); - registerAddress = *((uint8_t *) - &(ecReceivedMsg->message.info[ecSendBufBkp->paramPos + 2])); + slaveAddress = + *((uint8_t *)&(ecReceivedMsg->message.info[ecSendBufBkp->paramPos])); + noOfBytes = *( + (uint8_t *)&(ecReceivedMsg->message.info[ecSendBufBkp->paramPos + 1])); + registerAddress = *( + (uint8_t *)&(ecReceivedMsg->message.info[ecSendBufBkp->paramPos + 2])); if (noOfBytes == OCMW_VALUE_TYPE_UINT8) { - registerData = *((uint8_t *) - &(ecReceivedMsg->message.info[ecSendBufBkp->paramPos + 3])); + registerData = *((uint8_t *)&( + ecReceivedMsg->message.info[ecSendBufBkp->paramPos + 3])); } else { - registerData = ((uint16_t )((((uint8_t) - (ecReceivedMsg->message.info[ecSendBufBkp->paramPos - + 3]) & 0xff) << 8) | - ((uint8_t) - ((ecReceivedMsg->message.info[ecSendBufBkp->paramPos - + 4])) & 0xff))); + registerData = ((uint16_t)( + (((uint8_t)( + ecReceivedMsg->message.info[ecSendBufBkp->paramPos + 3]) & + 0xff) + << 8) | + ((uint8_t)( + (ecReceivedMsg->message.info[ecSendBufBkp->paramPos + 4])) & + 0xff))); } memset(dataOutBufFromEc, 0, sizeof(dataOutBufFromEc)); size = sizeof(dataOutBufFromEc); - snprintf(dataOutBufFromEc, size, "(slave address :%d noOfBytes :%d Register" - " Address :%d) %s = %d", slaveAddress, noOfBytes, - registerAddress, ecSendBufBkp->commandType, registerData); + snprintf(dataOutBufFromEc, size, + "(slave address :%d noOfBytes :%d Register" + " Address :%d) %s = %d", + slaveAddress, noOfBytes, registerAddress, + ecSendBufBkp->commandType, registerData); if (strcmp(ecSendBufBkp->commandType, "set") == 0) { strcat(dataOutBufFromEc, " : Success"); @@ -1043,7 +1280,8 @@ void ocmw_deserialise_debug_i2c_value(OCMPMessageFrame *ecReceivedMsg) * Output(s) : dMsgFrameParam ******************************************************************************/ void ocmw_deserialization_msgframe(const Component *subSystem, - sMsgParam *dMsgFrameParam, OCMPMessageFrame *ecReceivedMsg) + sMsgParam *dMsgFrameParam, + OCMPMessageFrame *ecReceivedMsg) { int32_t ret = 0; int8_t index = 0; @@ -1053,17 +1291,11 @@ void ocmw_deserialization_msgframe(const Component *subSystem, } if (ecReceivedMsg->message.parameters != 0) { - if ((ecReceivedMsg->message.subsystem == - ecSendBufBkp->subsystem) && - (ecReceivedMsg->message.componentID == - ecSendBufBkp->componentId) && - (ecReceivedMsg->message.msgtype == - ecSendBufBkp->msgType) && - (ecReceivedMsg->message.action == - OCMP_AXN_TYPE_REPLY) && - (ecReceivedMsg->message.parameters == - ecSendBufBkp->paramId)) { - + if ((ecReceivedMsg->message.subsystem == ecSendBufBkp->subsystem) && + (ecReceivedMsg->message.componentID == ecSendBufBkp->componentId) && + (ecReceivedMsg->message.msgtype == ecSendBufBkp->msgType) && + (ecReceivedMsg->message.action == OCMP_AXN_TYPE_REPLY) && + (ecReceivedMsg->message.parameters == ecSendBufBkp->paramId)) { ret = ocmw_parse_message_fram_from_ec(ecReceivedMsg); if (ret < 0) { printf("\nocmw_parse_message_fram_from_ec error"); @@ -1071,21 +1303,15 @@ void ocmw_deserialization_msgframe(const Component *subSystem, } } if (ecReceivedMsg->message.msgtype == OCMP_MSG_TYPE_COMMAND) { - if ((ecReceivedMsg->message.subsystem == - ecSendBufBkp->subsystem) && - (ecReceivedMsg->message.componentID == - ecSendBufBkp->componentId) && - (ecReceivedMsg->message.msgtype == - ecSendBufBkp->msgType) && - (ecReceivedMsg->message.action == - OCMP_AXN_TYPE_REPLY) && - (ecReceivedMsg->message.parameters == - ecSendBufBkp->paramId)) { + if ((ecReceivedMsg->message.subsystem == ecSendBufBkp->subsystem) && + (ecReceivedMsg->message.componentID == ecSendBufBkp->componentId) && + (ecReceivedMsg->message.msgtype == ecSendBufBkp->msgType) && + (ecReceivedMsg->message.action == OCMP_AXN_TYPE_REPLY) && + (ecReceivedMsg->message.parameters == ecSendBufBkp->paramId)) { if ((ecReceivedMsg->message.subsystem == DEBUG_SUBSYSTEM_NBR)) { if (ecReceivedMsg->message.componentID < DEBUG_I2C) { ocmw_deserialise_debug_i2c_value(ecReceivedMsg); - } else if (ecReceivedMsg->message.componentID == - DEBUG_MDIO) { + } else if (ecReceivedMsg->message.componentID == DEBUG_MDIO) { ocmw_deserialise_debug_mdio_value(ecReceivedMsg); } else { ocmw_deserialise_debug_gpio_value(ecReceivedMsg); @@ -1096,9 +1322,9 @@ void ocmw_deserialization_msgframe(const Component *subSystem, } /* Free backup info if stored */ for (index = 0; index < OCMW_VALUE_TYPE_MFG; index++) { - ocmw_free_global_pointer((void**)&s_paramEnumValue[index]); + ocmw_free_global_pointer((void **)&s_paramEnumValue[index]); } if (ecSendBufBkp) { - ocmw_free_global_pointer((void**)&ecSendBufBkp); + ocmw_free_global_pointer((void **)&ecSendBufBkp); } } diff --git a/firmware/host/ocmw/ocmw_uart_comm.c b/firmware/host/ocmw/ocmw_uart_comm.c index 445814cff9..09b3e22256 100644 --- a/firmware/host/ocmw/ocmw_uart_comm.c +++ b/firmware/host/ocmw/ocmw_uart_comm.c @@ -40,7 +40,7 @@ extern uint8_t mcuMsgBuf[OCMP_MSG_SIZE]; * Input(s) : msgstr, msgsize * Output(s) : ***************************************************************************/ -void ocmw_ec_uart_msg_hndlr(const unsigned char* msgstr, int32_t msgsize) +void ocmw_ec_uart_msg_hndlr(const unsigned char *msgstr, int32_t msgsize) { /* Process the OC message received from EC */ if (msgsize > OCMP_MSG_SIZE) { @@ -63,10 +63,10 @@ void ocmw_ec_uart_msg_hndlr(const unsigned char* msgstr, int32_t msgsize) * Input(s) : * Output(s) : args ***************************************************************************/ -static void* ocmw_recv_uart_msg_service(void* args) +static void *ocmw_recv_uart_msg_service(void *args) { - unsigned char msg[OCMP_MSG_SIZE] = {0}; - unsigned char buf[OCMP_MSG_SIZE] = {0}; + unsigned char msg[OCMP_MSG_SIZE] = { 0 }; + unsigned char buf[OCMP_MSG_SIZE] = { 0 }; int32_t ret = 0; const unsigned int msglen = OCMP_MSG_SIZE; @@ -84,7 +84,7 @@ static void* ocmw_recv_uart_msg_service(void* args) ret = read(s_fd, msg, msglen); if (ret < 0) { logerr("Error reading from %s (%d - %s)", ECTTY, errno, - strerror(errno)); + strerror(errno)); continue; } if (memcmp(msg, buf, OCMP_MSG_SIZE) == 0) { @@ -120,19 +120,19 @@ static void sa_handler_read(int32_t status) ***************************************************************************/ int32_t ocmw_init_ec_comm(handle_msg_from_ec_t msghndlr) { - char pathName[100] = {0}; + char pathName[100] = { 0 }; int32_t ret = 0; struct termios newtio; struct sigaction saio; memset(pathName, 0, sizeof(pathName)); -#ifdef INTERFACE_USB +#ifdef INTERFACE_USB ret = ocmw_find_ttyacm_port(pathName); if (ret != 0) { return ret; } #else - memcpy(pathName, (char *) ECTTY, sizeof(ECTTY)); + memcpy(pathName, (char *)ECTTY, sizeof(ECTTY)); #endif /* * Open the HSUART-1 port for communicating with EC @@ -143,8 +143,7 @@ int32_t ocmw_init_ec_comm(handle_msg_from_ec_t msghndlr) s_fd = open(pathName, O_RDWR | O_NOCTTY | O_NONBLOCK); if (s_fd == -1) { if (s_fd == -1) { - logerr("Error opening %s (%d - %s)", ECTTY, errno, - strerror(errno)); + logerr("Error opening %s (%d - %s)", ECTTY, errno, strerror(errno)); return -1; } } @@ -168,14 +167,14 @@ int32_t ocmw_init_ec_comm(handle_msg_from_ec_t msghndlr) cfsetospeed(&newtio, B115200); newtio.c_cflag &= ~PARENB; /* No parity check */ newtio.c_cflag &= ~CSTOPB; /* 1 STOP bit */ - newtio.c_cflag &= ~CSIZE; /* 8 DATA bits */ + newtio.c_cflag &= ~CSIZE; /* 8 DATA bits */ newtio.c_cflag |= CS8; newtio.c_cflag &= ~CRTSCTS; /* No HW flow control */ /* Enable always. CREAD - Enable receiver. * CLOCAL - program doesn't own the tty. */ newtio.c_cflag |= (CLOCAL | CREAD); newtio.c_cc[VTIME] = 10; /* Inter character TIME=t*0.1s, where t=10. */ - newtio.c_cc[VMIN] = 0; //33; /* EC message frame size = 32 bytes */ + newtio.c_cc[VMIN] = 0; // 33; /* EC message frame size = 32 bytes */ newtio.c_iflag &= ~(IXON | IXOFF | IXANY); /* No SW flow control */ newtio.c_lflag &= ~(ICANON | ECHO | ECHOE | ISIG); newtio.c_oflag &= ~OPOST; @@ -183,8 +182,8 @@ int32_t ocmw_init_ec_comm(handle_msg_from_ec_t msghndlr) tcsetattr(s_fd, TCSANOW, &newtio); S_STOP_UART_RX_SERVICE = false; - ret = pthread_create(&s_uartrxthread, NULL, ocmw_recv_uart_msg_service, - NULL); + ret = + pthread_create(&s_uartrxthread, NULL, ocmw_recv_uart_msg_service, NULL); if (ret != 0) { logerr("pthread creation failed [%d-%s]", errno, strerror(errno)); } else { @@ -223,18 +222,18 @@ int32_t ocmw_deinit_ec_comm(void) * Input(s) : msgstr, msgsize * Output(s) : ***************************************************************************/ -int32_t ocmw_send_uart_msg_to_ec(const uint8_t* msgstr, int32_t msgsize) +int32_t ocmw_send_uart_msg_to_ec(const uint8_t *msgstr, int32_t msgsize) { - uint8_t buf[OCMP_MSG_SIZE] = {0}; + uint8_t buf[OCMP_MSG_SIZE] = { 0 }; int32_t ret = 0, bufWriteCount = 0; int32_t sendPktNonpayloadSize = 0; int32_t loopCount = 0; OCMPMessageFrame *ecMsgFrame; - ecMsgFrame = (OCMPMessageFrame *) msgstr; + ecMsgFrame = (OCMPMessageFrame *)msgstr; - sendPktNonpayloadSize = (sizeof(OCMPMessage) - sizeof(void *) - + sizeof(OCMPHeader)); + sendPktNonpayloadSize = + (sizeof(OCMPMessage) - sizeof(void *) + sizeof(OCMPHeader)); if (msgstr == NULL) { logerr("Error: Memory allocation problem"); @@ -250,7 +249,7 @@ int32_t ocmw_send_uart_msg_to_ec(const uint8_t* msgstr, int32_t msgsize) memset(buf, 0, sizeof(buf)); memcpy(buf, msgstr, sendPktNonpayloadSize); memcpy(&buf[sendPktNonpayloadSize], ((ecMsgFrame->message).info), - MAX_PARM_COUNT); + MAX_PARM_COUNT); /* Write message frame to tty */ bufWriteCount = write(s_fd, buf, sizeof(buf)); diff --git a/firmware/host/ocwarestub/ocware_stub_database.c b/firmware/host/ocwarestub/ocware_stub_database.c old mode 100755 new mode 100644 index 3bfc7037de..92a01dae13 --- a/firmware/host/ocwarestub/ocware_stub_database.c +++ b/firmware/host/ocwarestub/ocware_stub_database.c @@ -13,6 +13,7 @@ static OCWareStubsizeflag s_typeFlag; static OCWareStubDatabase s_ocwareGlobalData[MAX_NUMBER_PARAM]; static OCWareStubPostData s_postGlobalArray[MAX_POST_DEVICE]; +static OCWareStubAlertData alertGlobalData[MAX_NUMBER_PARAM]; static int16_t s_defInt16Val = DEFAULT_INT16; static int64_t s_defInt64Val = DEFAULT_INT64; @@ -25,6 +26,7 @@ int8_t debugGetCommand = STUB_FAILED; int8_t debugSetCommand = STUB_FAILED; int8_t PostResult = STUB_FAILED; int8_t PostEnable = STUB_FAILED; +int16_t allAlertCount = 0; extern const Component sys_schema[]; /****************************************************************************** * Function Name : ocware_stub_set_gpioinfo @@ -36,8 +38,7 @@ extern const Component sys_schema[]; * @return STUB_SUCCESS - for success * STUB_FAILED - for failure ******************************************************************************/ -ocware_stub_ret ocware_stub_set_gpioinfo(int16_t gStructIndex, - char *payload) +ocware_stub_ret ocware_stub_set_gpioinfo(int16_t gStructIndex, char *payload) { OCWareDebugGPIOinfo **GPIOInfo; ocware_stub_ret ret = STUB_FAILED; @@ -48,8 +49,8 @@ ocware_stub_ret ocware_stub_set_gpioinfo(int16_t gStructIndex, return ret; } - GPIOInfo = (OCWareDebugGPIOinfo**)&s_ocwareGlobalData[gStructIndex].data; - for(index = 0; index< MAX_GPIO_COMP_NBR; index++) { + GPIOInfo = (OCWareDebugGPIOinfo **)&s_ocwareGlobalData[gStructIndex].data; + for (index = 0; index < MAX_GPIO_COMP_NBR; index++) { if (GPIOInfo[index]->pin_nbr == payload[pos]) { ret = STUB_SUCCESS; GPIOInfo[index]->value = payload[pos + 1]; @@ -70,8 +71,7 @@ ocware_stub_ret ocware_stub_set_gpioinfo(int16_t gStructIndex, * @return STUB_SUCCESS - for success * STUB_FAILED - for failure ******************************************************************************/ -ocware_stub_ret ocware_stub_set_i2cinfo(int16_t gStructIndex, - char *payload) +ocware_stub_ret ocware_stub_set_i2cinfo(int16_t gStructIndex, char *payload) { OCWareDebugI2Cinfo **I2CInfo; ocware_stub_ret ret = STUB_FAILED; @@ -81,26 +81,25 @@ ocware_stub_ret ocware_stub_set_i2cinfo(int16_t gStructIndex, return ret; } I2CInfo = (OCWareDebugI2Cinfo **)&s_ocwareGlobalData[gStructIndex].data; - for(index = 0; index < MAX_I2C_COMP_NBR; index++) { + for (index = 0; index < MAX_I2C_COMP_NBR; index++) { if (I2CInfo[index]->slaveAddress == payload[pos]) { ret = STUB_SUCCESS; break; } } - if (ret !=STUB_SUCCESS) + if (ret != STUB_SUCCESS) return ret; - I2CInfo[index]->slaveAddress = payload[pos]; + I2CInfo[index]->slaveAddress = payload[pos]; I2CInfo[index]->numOfBytes = payload[pos + 1]; I2CInfo[index]->regAddress = payload[pos + 2]; if (I2CInfo[index]->numOfBytes == 1) { I2CInfo[index]->regValue = payload[pos + 3]; } else { - I2CInfo[index]->regValue = ((uint8_t)payload[pos + 3] << 0x08) - + payload[pos + 4]; - payload[pos + 4] = - (uint8_t)(I2CInfo[index]->regValue & MASK_LSB); + I2CInfo[index]->regValue = + ((uint8_t)payload[pos + 3] << 0x08) + payload[pos + 4]; + payload[pos + 4] = (uint8_t)(I2CInfo[index]->regValue & MASK_LSB); payload[pos + 3] = (uint8_t)((I2CInfo[index]->regValue & MASK_MSB) >> SHIFT_NIBBLE); } @@ -116,8 +115,7 @@ ocware_stub_ret ocware_stub_set_i2cinfo(int16_t gStructIndex, * @return STUB_SUCCESS - for success * STUB_FAILED - for failure ******************************************************************************/ -ocware_stub_ret ocware_stub_set_mdioinfo(int16_t gStructIndex, - char *payload) +ocware_stub_ret ocware_stub_set_mdioinfo(int16_t gStructIndex, char *payload) { OCWareDebugMDIOinfo **MDIOInfo; ocware_stub_ret ret = STUB_FAILED; @@ -127,22 +125,21 @@ ocware_stub_ret ocware_stub_set_mdioinfo(int16_t gStructIndex, return ret; } MDIOInfo = (OCWareDebugMDIOinfo **)&s_ocwareGlobalData[gStructIndex].data; - for(index = 0; index< MAX_MDIO_COMP_NBR; index++) { + for (index = 0; index < MAX_MDIO_COMP_NBR; index++) { if (MDIOInfo[index]->regAddress == payload[pos]) { ret = STUB_SUCCESS; break; } } - if (ret !=STUB_SUCCESS) + if (ret != STUB_SUCCESS) return ret; MDIOInfo[index]->regAddress = payload[pos]; - MDIOInfo[index]->regValue = ((uint8_t)payload[pos + 3] << 0x08) - + payload[pos + 2]; - payload[pos + 2] = - (uint8_t)(MDIOInfo[index]->regValue & MASK_LSB); + MDIOInfo[index]->regValue = + ((uint8_t)payload[pos + 3] << 0x08) + payload[pos + 2]; + payload[pos + 2] = (uint8_t)(MDIOInfo[index]->regValue & MASK_LSB); payload[pos + 3] = - (uint8_t)((MDIOInfo[index]->regValue & MASK_MSB) >> SHIFT_NIBBLE); + (uint8_t)((MDIOInfo[index]->regValue & MASK_MSB) >> SHIFT_NIBBLE); return ret; } /****************************************************************************** @@ -163,22 +160,117 @@ ocware_stub_ret ocware_stub_get_post_database(OCMPMessage *msgFrameData, int16_t index = 0; uint8_t pos = 0; - for(index = 0; index < MAX_POST_DEVICE; index++) { - if ((s_postGlobalArray[index].SubsystemId - == payload[0]) && + for (index = 0; index < MAX_POST_DEVICE; index++) { + if ((s_postGlobalArray[index].SubsystemId == payload[0]) && (s_postGlobalArray[index].DeviceNumber > 0)) { - payload[pos] = s_postGlobalArray[index].SubsystemId; - payload[pos + 1] = - s_postGlobalArray[index].DeviceNumber; - payload[pos + 2] = - s_postGlobalArray[index].Status; + payload[pos + 1] = s_postGlobalArray[index].DeviceNumber; + payload[pos + 2] = s_postGlobalArray[index].Status; pos = pos + 3; } } - msgFrameData->parameters = pos/3; + msgFrameData->parameters = pos / 3; return STUB_SUCCESS; } + +/****************************************************************************** + * Function Name : ocware_stub_frame_alert_msgframe + * Description : extract alert data from based on subsystem + * + * @param msgFrameData - output pointer to the OCMPheader field of the message + * from MW (by reference) + * @param payload - output pointer to the payload field of the message from MW + * + * @return STUB_SUCCESS - for success + * STUB_FAILED - for failure + ******************************************************************************/ +ocware_stub_ret ocware_stub_frame_alert_msgframe(char *buffer) +{ + uint32_t ret = 0; + uint32_t subSystemNbr = 0; + uint32_t index = 0; + uint32_t alertIndex = 0; + uint32_t subsystemIndex = 0; + uint8_t printIndex = 0; + uint8_t tempAlertCount = allAlertCount; + + OCMPMessageFrame *msgFrame = (OCMPMessageFrame *)buffer; + OCMPMessage *msgFrameData = (OCMPMessage *)&msgFrame->message; + subSystemNbr = msgFrameData->subsystem; + if (subSystemNbr != 0) { + for (subsystemIndex = 0; subsystemIndex < allAlertCount; + subsystemIndex++) { + if (alertGlobalData[subsystemIndex].subsystemId == subSystemNbr) + break; + } + alertIndex = subsystemIndex; + while (alertGlobalData[alertIndex].subsystemId == subSystemNbr) + alertIndex++; + allAlertCount = alertIndex; + } + for (index = subsystemIndex; index < allAlertCount; index++) { + /*create the msgframe*/ + ret = ocware_stub_parse_alert_get_message(buffer, index); + printf(" \n Sending Data :\n"); + for (printIndex = 0; printIndex < OC_EC_MSG_SIZE; printIndex++) { + printf("0x%x ", buffer[printIndex] & 0xff); + } + ret = ocware_stub_send_msgframe_middleware(&buffer, + sizeof(OCMPMessageFrame)); + if (ret != STUB_SUCCESS) { + printf("ocware_stub_send_msgframe_middleware failed: error value :" + "%d\n", + ret); + return STUB_FAILED; + } + } + allAlertCount = tempAlertCount; + return STUB_SUCCESS; +} +/****************************************************************************** + * Function Name : ocware_stub_get_alert_database + * Description : extract alert data from lookup table + * + * @param msgFrameData - output pointer to the OCMPheader field of the message + * from MW (by reference) + * @param payload - output pointer to the payload field of the message from MW + * + * @return STUB_SUCCESS - for success + * STUB_FAILED - for failure + ******************************************************************************/ +ocware_stub_ret ocware_stub_get_alert_database(OCMPMessage *msgFrameData, + char *payload, int8_t index) +{ + uint8_t pos = 0; + uint8_t defHour = 10; + uint8_t defMinut = 22; + uint8_t defSecond = 15; + uint8_t defDay = 2; + uint8_t defMonth = 7; + uint8_t defYear = 18; + if (index == (allAlertCount - 1)) { + msgFrameData->action = OCMP_AXN_TYPE_REPLY; + } else { + msgFrameData->action = OCMP_AXN_TYPE_ACTIVE; + } + payload[pos + 1] = 2; + strcpy(&payload[pos + 1], (char *)&defHour); + strcpy(&payload[pos + 2], (char *)&defMinut); + strcpy(&payload[pos + 3], (char *)&defSecond); + strcpy(&payload[pos + 4], (char *)&defDay); + strcpy(&payload[pos + 5], (char *)&defMonth); + strcpy(&payload[pos + 6], (char *)&defYear); + strncpy(&payload[pos + 7], (char *)alertGlobalData[index].data, + alertGlobalData[index].paramSize); + strncpy(&payload[pos + 9], (char *)alertGlobalData[index].data, + alertGlobalData[index].paramSize); + msgFrameData->subsystem = alertGlobalData[index].subsystemId; + msgFrameData->componentID = alertGlobalData[index].componentId; + msgFrameData->parameters = alertGlobalData[index].paramId; + + return STUB_SUCCESS; +} + /****************************************************************************** * Function Name : ocware_stub_get_gpioinfo * Description : retrieve the GPIO information in the DB for debug @@ -191,8 +283,7 @@ ocware_stub_ret ocware_stub_get_post_database(OCMPMessage *msgFrameData, * @return STUB_SUCCESS - for success * STUB_FAILED - for failure ******************************************************************************/ -ocware_stub_ret ocware_stub_get_gpioinfo(int16_t gStructIndex, - char *payload) +ocware_stub_ret ocware_stub_get_gpioinfo(int16_t gStructIndex, char *payload) { OCWareDebugGPIOinfo **GPIOInfo; ocware_stub_ret ret = STUB_FAILED; @@ -202,15 +293,15 @@ ocware_stub_ret ocware_stub_get_gpioinfo(int16_t gStructIndex, if (!(gStructIndex <= MAX_NUMBER_PARAM && payload)) { return ret; } - GPIOInfo = (OCWareDebugGPIOinfo**)&s_ocwareGlobalData[gStructIndex].data; - for(index = 0; index< MAX_GPIO_COMP_NBR; index++) { + GPIOInfo = (OCWareDebugGPIOinfo **)&s_ocwareGlobalData[gStructIndex].data; + for (index = 0; index < MAX_GPIO_COMP_NBR; index++) { if (GPIOInfo[index]->pin_nbr == payload[pos]) { ret = STUB_SUCCESS; break; } } - if(ret == STUB_SUCCESS) { + if (ret == STUB_SUCCESS) { payload[pos] = GPIOInfo[index]->pin_nbr; payload[pos + 1] = GPIOInfo[index]->value; } @@ -228,8 +319,7 @@ ocware_stub_ret ocware_stub_get_gpioinfo(int16_t gStructIndex, * @return STUB_SUCCESS - for success * STUB_FAILED - for failure ******************************************************************************/ -ocware_stub_ret ocware_stub_get_i2cinfo(int16_t gStructIndex, - char *payload) +ocware_stub_ret ocware_stub_get_i2cinfo(int16_t gStructIndex, char *payload) { OCWareDebugI2Cinfo **I2CInfo; ocware_stub_ret ret = STUB_FAILED; @@ -240,25 +330,24 @@ ocware_stub_ret ocware_stub_get_i2cinfo(int16_t gStructIndex, return ret; } - I2CInfo = (OCWareDebugI2Cinfo**)&s_ocwareGlobalData[gStructIndex].data; - for(index = 0; index< MAX_I2C_COMP_NBR; index++) { + I2CInfo = (OCWareDebugI2Cinfo **)&s_ocwareGlobalData[gStructIndex].data; + for (index = 0; index < MAX_I2C_COMP_NBR; index++) { if (I2CInfo[index]->slaveAddress == payload[pos]) { ret = STUB_SUCCESS; break; } } - if(ret == STUB_SUCCESS) { + if (ret == STUB_SUCCESS) { payload[pos] = I2CInfo[index]->slaveAddress; payload[pos + 1] = I2CInfo[index]->numOfBytes; payload[pos + 2] = I2CInfo[index]->regAddress; if (I2CInfo[index]->numOfBytes == 1) { payload[pos + 3] = (uint8_t)I2CInfo[index]->regValue; } else { - payload[pos + 4] - = (uint8_t)(I2CInfo[index]->regValue & MASK_LSB); - payload[pos + 3] = (uint8_t) - ((I2CInfo[index]->regValue & MASK_MSB) >> SHIFT_NIBBLE); + payload[pos + 4] = (uint8_t)(I2CInfo[index]->regValue & MASK_LSB); + payload[pos + 3] = (uint8_t)( + (I2CInfo[index]->regValue & MASK_MSB) >> SHIFT_NIBBLE); } } return ret; @@ -275,8 +364,7 @@ ocware_stub_ret ocware_stub_get_i2cinfo(int16_t gStructIndex, * @return STUB_SUCCESS - for success * STUB_FAILED - for failure ******************************************************************************/ -ocware_stub_ret ocware_stub_get_mdioinfo(int16_t gStructIndex, - char *payload) +ocware_stub_ret ocware_stub_get_mdioinfo(int16_t gStructIndex, char *payload) { OCWareDebugMDIOinfo **MDIOInfo; ocware_stub_ret ret = STUB_FAILED; @@ -287,20 +375,19 @@ ocware_stub_ret ocware_stub_get_mdioinfo(int16_t gStructIndex, return ret; } - MDIOInfo = (OCWareDebugMDIOinfo**)&s_ocwareGlobalData[gStructIndex].data; - for(index = 0; index < MAX_MDIO_COMP_NBR; index++) { + MDIOInfo = (OCWareDebugMDIOinfo **)&s_ocwareGlobalData[gStructIndex].data; + for (index = 0; index < MAX_MDIO_COMP_NBR; index++) { if (MDIOInfo[index]->regAddress == payload[pos]) { ret = STUB_SUCCESS; break; } } - if(ret == STUB_SUCCESS) { + if (ret == STUB_SUCCESS) { payload[pos] = MDIOInfo[index]->regAddress; - payload[pos + 2] = (uint8_t) - (MDIOInfo[index]->regValue & MASK_LSB); - payload[pos + 3] = (uint8_t) - ((MDIOInfo[index]->regValue & MASK_MSB) >> SHIFT_NIBBLE); + payload[pos + 2] = (uint8_t)(MDIOInfo[index]->regValue & MASK_LSB); + payload[pos + 3] = + (uint8_t)((MDIOInfo[index]->regValue & MASK_MSB) >> SHIFT_NIBBLE); } return ret; } @@ -315,30 +402,29 @@ ocware_stub_ret ocware_stub_get_mdioinfo(int16_t gStructIndex, * @return STUB_SUCCESS - for success * STUB_FAILED - for failure ******************************************************************************/ -ocware_stub_ret ocware_stub_debug_subsytem(int16_t gStructIndex, - char *payload, +ocware_stub_ret ocware_stub_debug_subsytem(int16_t gStructIndex, char *payload, int8_t flag) { if (!(gStructIndex <= MAX_NUMBER_PARAM && payload)) { return STUB_FAILED; } - switch(s_ocwareGlobalData[gStructIndex].componentId) { + switch (s_ocwareGlobalData[gStructIndex].componentId) { case 2: - if ( flag == OCMP_AXN_TYPE_GET) { + if (flag == OCMP_AXN_TYPE_GET) { ocware_stub_get_i2cinfo(gStructIndex, payload); } else { ocware_stub_set_i2cinfo(gStructIndex, payload); } break; case 8: - if ( flag == OCMP_AXN_TYPE_GET) { + if (flag == OCMP_AXN_TYPE_GET) { ocware_stub_get_mdioinfo(gStructIndex, payload); } else { ocware_stub_set_mdioinfo(gStructIndex, payload); } break; default: - if ( flag == OCMP_AXN_TYPE_GET) { + if (flag == OCMP_AXN_TYPE_GET) { ocware_stub_get_gpioinfo(gStructIndex, payload); } else { ocware_stub_set_gpioinfo(gStructIndex, payload); @@ -362,39 +448,38 @@ ocware_stub_ret ocware_stub_get_database(OCMPMessage *msgFrameData) ocware_stub_ret ret = STUB_FAILED; int8_t subsystem = 0; int8_t component = 0; - int8_t msgtype = 0; + int8_t msgtype = 0; int8_t parampos = 0; int16_t paramId = 0; int16_t gStructIndex = 0; - if(msgFrameData == NULL) { + if (msgFrameData == NULL) { return ret; } - payload = (char*)&msgFrameData->info; + payload = (char *)&msgFrameData->info; subsystem = msgFrameData->subsystem; component = msgFrameData->componentID; msgtype = msgFrameData->msgtype; paramId = msgFrameData->parameters; - for(gStructIndex = 0; gStructIndex < MAX_NUMBER_PARAM; gStructIndex++) { - if((subsystem == s_ocwareGlobalData[gStructIndex].subsystemId) && - (component == s_ocwareGlobalData[gStructIndex].componentId) && - (msgtype == s_ocwareGlobalData[gStructIndex].msgtype) && - (paramId == s_ocwareGlobalData[gStructIndex].paramId)) - { + for (gStructIndex = 0; gStructIndex < MAX_NUMBER_PARAM; gStructIndex++) { + if ((subsystem == s_ocwareGlobalData[gStructIndex].subsystemId) && + (component == s_ocwareGlobalData[gStructIndex].componentId) && + (msgtype == s_ocwareGlobalData[gStructIndex].msgtype) && + (paramId == s_ocwareGlobalData[gStructIndex].paramId)) { ret = STUB_SUCCESS; parampos = s_ocwareGlobalData[gStructIndex].paramPos; break; } } - if(ret == STUB_SUCCESS) { - if(subsystem == s_debugSubsystem) { + if (ret == STUB_SUCCESS) { + if (subsystem == s_debugSubsystem) { ret = ocware_stub_debug_subsytem(gStructIndex, payload, - OCMP_AXN_TYPE_GET); + OCMP_AXN_TYPE_GET); } else { strncpy(&payload[parampos], - (char*)s_ocwareGlobalData[gStructIndex].data, + (char *)s_ocwareGlobalData[gStructIndex].data, s_ocwareGlobalData[gStructIndex].paramSize); } } @@ -422,33 +507,32 @@ ocware_stub_ret ocware_stub_set_database(OCMPMessage *msgFrameData) int16_t paramId = 0; int16_t gStructIndex = 0; - if(msgFrameData == NULL) { + if (msgFrameData == NULL) { return ret; } - payload = (char*)&msgFrameData->info; + payload = (char *)&msgFrameData->info; subsystem = msgFrameData->subsystem; component = msgFrameData->componentID; msgtype = msgFrameData->msgtype; paramId = msgFrameData->parameters; - for(gStructIndex = 0; gStructIndex < MAX_NUMBER_PARAM; gStructIndex++) { - if( (subsystem == s_ocwareGlobalData[gStructIndex].subsystemId) && + for (gStructIndex = 0; gStructIndex < MAX_NUMBER_PARAM; gStructIndex++) { + if ((subsystem == s_ocwareGlobalData[gStructIndex].subsystemId) && (component == s_ocwareGlobalData[gStructIndex].componentId) && (msgtype == s_ocwareGlobalData[gStructIndex].msgtype) && - (paramId == s_ocwareGlobalData[gStructIndex].paramId)) - { + (paramId == s_ocwareGlobalData[gStructIndex].paramId)) { ret = STUB_SUCCESS; parampos = s_ocwareGlobalData[gStructIndex].paramPos; break; } } - if(ret == STUB_SUCCESS) { - if(subsystem == s_debugSubsystem) { + if (ret == STUB_SUCCESS) { + if (subsystem == s_debugSubsystem) { ret = ocware_stub_debug_subsytem(gStructIndex, payload, - OCMP_AXN_TYPE_SET); + OCMP_AXN_TYPE_SET); } else { - strncpy((char*)s_ocwareGlobalData[gStructIndex].data, + strncpy((char *)s_ocwareGlobalData[gStructIndex].data, &payload[parampos], s_ocwareGlobalData[gStructIndex].paramSize); } @@ -474,37 +558,37 @@ ocware_stub_ret ocware_stub_fill_init_value(const Parameter *param, int16_t def_lasterror = 0x101; int16_t def_netOp = 0x001; - if(param == NULL) { + if (param == NULL) { return STUB_FAILED; } paramtype = DATA_TYPE_MAP[param->type]; - if (!strcmp("lasterror",param->name)) { - strcpy(s_ocwareGlobalData[gStructIndex].data, (char*)&def_lasterror); + if (!strcmp("lasterror", param->name)) { + strcpy(s_ocwareGlobalData[gStructIndex].data, (char *)&def_lasterror); return STUB_SUCCESS; - } else if (!strcmp("network_operatorinfo",param->name)) { - strcpy(s_ocwareGlobalData[gStructIndex].data, (char*)&def_netOp); + } else if (!strcmp("network_operatorinfo", param->name)) { + strcpy(s_ocwareGlobalData[gStructIndex].data, (char *)&def_netOp); return STUB_SUCCESS; } - if (!strcmp("uint16",paramtype)) { + if (!strcmp("uint16", paramtype)) { strcpy(s_ocwareGlobalData[gStructIndex].data, (char *)&s_defInt16Val); - } else if (!strcmp("int16",paramtype)) { - strcpy(s_ocwareGlobalData[gStructIndex].data, (char*)&s_defInt16Val); - } else if (!strcmp("uint8",paramtype)) { - strcpy(s_ocwareGlobalData[gStructIndex].data, (char*)&s_defInt8Val); - } else if (!strcmp("int8",paramtype)) { - strcpy(s_ocwareGlobalData[gStructIndex].data, (char*)&s_defInt8Val); - } else if (!strcmp("uint32",paramtype)) { - strcpy(s_ocwareGlobalData[gStructIndex].data, (char*)&s_defInt32Val); - } else if (!strcmp("uint64",paramtype)) { + } else if (!strcmp("int16", paramtype)) { + strcpy(s_ocwareGlobalData[gStructIndex].data, (char *)&s_defInt16Val); + } else if (!strcmp("uint8", paramtype)) { + strcpy(s_ocwareGlobalData[gStructIndex].data, (char *)&s_defInt8Val); + } else if (!strcmp("int8", paramtype)) { + strcpy(s_ocwareGlobalData[gStructIndex].data, (char *)&s_defInt8Val); + } else if (!strcmp("uint32", paramtype)) { + strcpy(s_ocwareGlobalData[gStructIndex].data, (char *)&s_defInt32Val); + } else if (!strcmp("uint64", paramtype)) { strcpy(s_ocwareGlobalData[gStructIndex].data, (char *)&s_defInt64Val); - } else if (!strcmp("string",paramtype)) { + } else if (!strcmp("string", paramtype)) { strcpy(s_ocwareGlobalData[gStructIndex].data, DEFAULT_STRING); - } else if (!strcmp("enum",paramtype)) { - strcpy(s_ocwareGlobalData[gStructIndex].data, (char*)&s_defEnumVal); + } else if (!strcmp("enum", paramtype)) { + strcpy(s_ocwareGlobalData[gStructIndex].data, (char *)&s_defEnumVal); } else { - strcpy(s_ocwareGlobalData[gStructIndex].data, (char*)&s_defInt8Val); + strcpy(s_ocwareGlobalData[gStructIndex].data, (char *)&s_defInt8Val); } return STUB_SUCCESS; } @@ -520,9 +604,8 @@ ocware_stub_ret ocware_stub_fill_init_value(const Parameter *param, * @return Size of the parameter * ******************************************************************************/ -int8_t ocware_stub_get_paramSize(const char* paramtype, - int8_t msgtype, - const char* param_name) +int8_t ocware_stub_get_paramSize(const char *paramtype, int8_t msgtype, + const char *param_name) { int8_t paramSize = 0; @@ -531,46 +614,46 @@ int8_t ocware_stub_get_paramSize(const char* paramtype, return STUB_FAILED; } - if (!strcmp("uint16",paramtype)) { + if (!strcmp("uint16", paramtype)) { paramSize = sizeof(uint16_t); - } else if (!strcmp("int16",paramtype)) { + } else if (!strcmp("int16", paramtype)) { paramSize = sizeof(int16_t); - } else if (!strcmp("uint8",paramtype)) { + } else if (!strcmp("uint8", paramtype)) { paramSize = sizeof(uint8_t); - } else if (!strcmp("int8",paramtype)) { + } else if (!strcmp("int8", paramtype)) { paramSize = sizeof(int8_t); - } else if (!strcmp("uint32",paramtype)) { + } else if (!strcmp("uint32", paramtype)) { paramSize = sizeof(uint32_t); - } else if (!strcmp("uint64",paramtype)) { + } else if (!strcmp("uint64", paramtype)) { paramSize = sizeof(uint64_t); - } else if (!strcmp("string",paramtype)) { - if (s_typeFlag == OCSTUB_VALUE_TYPE_MFG) { - paramSize = SIZE_OF_TYPE_MFG; - } else if (s_typeFlag == OCSTUB_VALUE_TYPE_MODEL) { - paramSize = SIZE_OF_TYPE_MODEL; - } else if (s_typeFlag == OCSTUB_VALUE_TYPE_GETMODEL) { - paramSize = SIZE_OF_TYPE_GETMODEL; - } else if (s_typeFlag == OCSTUB_VALUE_TYPE_OCSERIAL_INFO) { - paramSize = SIZE_OF_TYPE_OCSERIAL_INFO; - } else if (s_typeFlag == OCSTUB_VALUE_TYPE_GBCBOARD_INFO) { - paramSize = SIZE_OF_TYPE_GBCBOARD_INFO; - } else { - if (msgtype == OCMP_MSG_TYPE_CONFIG) { - paramSize = EEPROM_CONFIG_MAX_SIZE; - } else if (msgtype == OCMP_MSG_TYPE_STATUS) { - paramSize = EEPROM_STATUS_MAX_SIZE; - } - } - } else if (!strcmp("enum",paramtype)) { - if (s_typeFlag == OCSTUB_VALUE_TYPE_REGISTRATION) { + } else if (!strcmp("string", paramtype)) { + if (s_typeFlag == OCSTUB_VALUE_TYPE_MFG) { + paramSize = SIZE_OF_TYPE_MFG; + } else if (s_typeFlag == OCSTUB_VALUE_TYPE_MODEL) { + paramSize = SIZE_OF_TYPE_MODEL; + } else if (s_typeFlag == OCSTUB_VALUE_TYPE_GETMODEL) { + paramSize = SIZE_OF_TYPE_GETMODEL; + } else if (s_typeFlag == OCSTUB_VALUE_TYPE_OCSERIAL_INFO) { + paramSize = SIZE_OF_TYPE_OCSERIAL_INFO; + } else if (s_typeFlag == OCSTUB_VALUE_TYPE_GBCBOARD_INFO) { + paramSize = SIZE_OF_TYPE_GBCBOARD_INFO; + } else { + if (msgtype == OCMP_MSG_TYPE_CONFIG) { + paramSize = EEPROM_CONFIG_MAX_SIZE; + } else if (msgtype == OCMP_MSG_TYPE_STATUS) { + paramSize = EEPROM_STATUS_MAX_SIZE; + } + } + } else if (!strcmp("enum", paramtype)) { + if (s_typeFlag == OCSTUB_VALUE_TYPE_REGISTRATION) { paramSize = SIZE_OF_TYPE_REGISTRATION; /* TO DO */ - } else if (s_typeFlag == OCSTUB_VALUE_TYPE_NWOP_STRUCT) { + } else if (s_typeFlag == OCSTUB_VALUE_TYPE_NWOP_STRUCT) { paramSize = SIZE_OF_NWOP_STRUCT; - } else if (s_typeFlag == OCSTUB_VALUE_TYPE_LAST_ERROR) { + } else if (s_typeFlag == OCSTUB_VALUE_TYPE_LAST_ERROR) { paramSize = SIZE_OF_LAST_ERROR; - } else { + } else { paramSize = OCMW_VALUE_TYPE_ENUM; - } + } } else { paramSize = sizeof(int8_t); } @@ -596,33 +679,33 @@ ocware_stub_ret ocware_stub_fill_init_debug_value(int16_t gStructIndex, OCWareDebugMDIOinfo MDIOInfo[MAX_MDIO_COMP_NBR]; uint8_t index = 0; - if(gStructIndex >= MAX_NUMBER_PARAM) { + if (gStructIndex >= MAX_NUMBER_PARAM) { return STUB_FAILED; } - if ( flag == OCSTUB_VALUE_TYPE_GPIO_DEBUG) { - for(index = 0; index < MAX_GPIO_COMP_NBR; index++) { + if (flag == OCSTUB_VALUE_TYPE_GPIO_DEBUG) { + for (index = 0; index < MAX_GPIO_COMP_NBR; index++) { GPIOInfo[index].pin_nbr = GPIO_PIN_NBR + index; GPIOInfo[index].value = GPIO_VALUE; } - memcpy(s_ocwareGlobalData[gStructIndex].data, - (char *)GPIOInfo, sizeof(GPIOInfo)*MAX_GPIO_COMP_NBR); + memcpy(s_ocwareGlobalData[gStructIndex].data, (char *)GPIOInfo, + sizeof(GPIOInfo) * MAX_GPIO_COMP_NBR); - } else if ( flag == OCSTUB_VALUE_TYPE_MDIO_DEBUG){ - for(index = 0; index < MAX_MDIO_COMP_NBR; index++) { + } else if (flag == OCSTUB_VALUE_TYPE_MDIO_DEBUG) { + for (index = 0; index < MAX_MDIO_COMP_NBR; index++) { MDIOInfo[index].regAddress = I2C_REG_ADDRESS + index; MDIOInfo[index].regValue = I2C_REG_VALUE; } - memcpy(s_ocwareGlobalData[gStructIndex].data, - (char *)MDIOInfo, sizeof(MDIOInfo)*MAX_MDIO_COMP_NBR); - }else { - for(index = 0; index < MAX_I2C_COMP_NBR; index++) { + memcpy(s_ocwareGlobalData[gStructIndex].data, (char *)MDIOInfo, + sizeof(MDIOInfo) * MAX_MDIO_COMP_NBR); + } else { + for (index = 0; index < MAX_I2C_COMP_NBR; index++) { I2CInfo[index].slaveAddress = I2C_SLAVE_ADDRESS + index; I2CInfo[index].numOfBytes = I2C_NUM_BYTES; I2CInfo[index].regAddress = I2C_REG_ADDRESS; I2CInfo[index].regValue = I2C_REG_VALUE; } - memcpy(s_ocwareGlobalData[gStructIndex].data, - (char *)I2CInfo, sizeof(I2CInfo)*MAX_I2C_COMP_NBR); + memcpy(s_ocwareGlobalData[gStructIndex].data, (char *)I2CInfo, + sizeof(I2CInfo) * MAX_I2C_COMP_NBR); } return STUB_SUCCESS; @@ -653,17 +736,17 @@ ocware_stub_ret ocware_create_command_debug_database(int8_t subsystemNbr, int8_t commandCount = 0; s_debugSubsystem = subsystemNbr; - if((gStructIndex == NULL) || (subSystem == NULL)) { + if ((gStructIndex == NULL) || (subSystem == NULL)) { return STUB_FAILED; } - for(component = subSystem->components; component && component->name; - component++) { + for (component = subSystem->components; component && component->name; + component++) { /* component loop */ subComponent = component->components; count = 1; while (subComponent && subComponent->name) { driver = subComponent->driver; - if(driver !=NULL) { + if (driver != NULL) { /* No Need to read every command as * current implementation is to have one entry * for one subsystem @@ -671,70 +754,69 @@ ocware_stub_ret ocware_create_command_debug_database(int8_t subsystemNbr, s_ocwareGlobalData[*gStructIndex].subsystemId = subsystemNbr; s_ocwareGlobalData[*gStructIndex].componentId = componentNbr; s_ocwareGlobalData[*gStructIndex].msgtype = - OCMP_MSG_TYPE_COMMAND; + OCMP_MSG_TYPE_COMMAND; s_ocwareGlobalData[*gStructIndex].paramPos = 0; - if (strncmp(component->name,"I2C", - strlen("I2C")) == 0) { + if (strncmp(component->name, "I2C", strlen("I2C")) == 0) { s_ocwareGlobalData[*gStructIndex].paramId = count; - s_ocwareGlobalData[*gStructIndex].paramSize - = sizeof(OCWareDebugI2Cinfo) * MAX_I2C_COMP_NBR; - s_ocwareGlobalData[*gStructIndex].data - = malloc(s_ocwareGlobalData[*gStructIndex].paramSize); + s_ocwareGlobalData[*gStructIndex].paramSize = + sizeof(OCWareDebugI2Cinfo) * MAX_I2C_COMP_NBR; + s_ocwareGlobalData[*gStructIndex].data = + malloc(s_ocwareGlobalData[*gStructIndex].paramSize); if (s_ocwareGlobalData[*gStructIndex].data == NULL) { printf("Malloc failed\n"); return STUB_FAILED; } else { memset(s_ocwareGlobalData[*gStructIndex].data, 0, - s_ocwareGlobalData[*gStructIndex].paramSize); + s_ocwareGlobalData[*gStructIndex].paramSize); } - ret = ocware_stub_fill_init_debug_value(*gStructIndex, - OCSTUB_VALUE_TYPE_I2C_DEBUG); - } else if (strncmp(component->name,"ethernet", - strlen("ethernet")) == 0) { + ret = ocware_stub_fill_init_debug_value( + *gStructIndex, OCSTUB_VALUE_TYPE_I2C_DEBUG); + } else if (strncmp(component->name, "ethernet", + strlen("ethernet")) == 0) { s_ocwareGlobalData[*gStructIndex].paramId = count; - s_ocwareGlobalData[*gStructIndex].paramSize - = sizeof(OCWareDebugMDIOinfo) * MAX_MDIO_COMP_NBR; - s_ocwareGlobalData[*gStructIndex].data - = malloc(s_ocwareGlobalData[*gStructIndex].paramSize); + s_ocwareGlobalData[*gStructIndex].paramSize = + sizeof(OCWareDebugMDIOinfo) * MAX_MDIO_COMP_NBR; + s_ocwareGlobalData[*gStructIndex].data = + malloc(s_ocwareGlobalData[*gStructIndex].paramSize); if (s_ocwareGlobalData[*gStructIndex].data == NULL) { printf("Malloc failed\n"); return STUB_FAILED; } else { memset(s_ocwareGlobalData[*gStructIndex].data, 0, - s_ocwareGlobalData[*gStructIndex].paramSize); + s_ocwareGlobalData[*gStructIndex].paramSize); } - ret = ocware_stub_fill_init_debug_value(*gStructIndex, - OCSTUB_VALUE_TYPE_MDIO_DEBUG); + ret = ocware_stub_fill_init_debug_value( + *gStructIndex, OCSTUB_VALUE_TYPE_MDIO_DEBUG); } else { /* Currently its all GPIO */ s_ocwareGlobalData[*gStructIndex].paramId = count; - s_ocwareGlobalData[*gStructIndex].paramSize - = sizeof(OCWareDebugGPIOinfo) * MAX_GPIO_COMP_NBR; - s_ocwareGlobalData[*gStructIndex].data - = malloc(s_ocwareGlobalData[*gStructIndex].paramSize); + s_ocwareGlobalData[*gStructIndex].paramSize = + sizeof(OCWareDebugGPIOinfo) * MAX_GPIO_COMP_NBR; + s_ocwareGlobalData[*gStructIndex].data = + malloc(s_ocwareGlobalData[*gStructIndex].paramSize); if (s_ocwareGlobalData[*gStructIndex].data == NULL) { printf("Malloc failed\n"); return STUB_FAILED; } else { memset(s_ocwareGlobalData[*gStructIndex].data, 0, - s_ocwareGlobalData[*gStructIndex].paramSize); + s_ocwareGlobalData[*gStructIndex].paramSize); } - ret = ocware_stub_fill_init_debug_value(*gStructIndex, - OCSTUB_VALUE_TYPE_GPIO_DEBUG); + ret = ocware_stub_fill_init_debug_value( + *gStructIndex, OCSTUB_VALUE_TYPE_GPIO_DEBUG); } (*gStructIndex)++; - if((debugGetCommand == STUB_FAILED) || - (debugSetCommand == STUB_FAILED)) { + if ((debugGetCommand == STUB_FAILED) || + (debugSetCommand == STUB_FAILED)) { command = driver->commands; commandCount = 0; - while(command && command->name) { + while (command && command->name) { if ((strncmp(command->name, "get", strlen("get"))) == - 0) { + 0) { debugGetCommand = commandCount; - } else if ((strncmp(command->name, "set",strlen("set"))) - == 0) { + } else if ((strncmp(command->name, "set", + strlen("set"))) == 0) { debugSetCommand = commandCount; } command += 1; @@ -743,12 +825,159 @@ ocware_stub_ret ocware_create_command_debug_database(int8_t subsystemNbr, } } subComponent += 1; - count ++; + count++; } componentNbr++; } return ret; } + +/****************************************************************************** + * Function Name : ocware_stub_fill_alert_value + * Description : Function to fill default alert value in the DB + * + * @param param - pointer to the parameter field in a particular subsytem and + * component (by value) + * gStructIndex - index to the DB (by value) + * + * @return STUB_SUCCESS - for success + * STUB_FAILED - for failure + *****************************************************************************/ +ocware_stub_ret ocware_stub_fill_alert_value(const Parameter *param, + uint16_t gStructIndex) +{ + const char *paramtype; + if (param == NULL) { + return STUB_FAILED; + } + + paramtype = DATA_TYPE_MAP[param->type]; + + if (!strcmp("uint16", paramtype)) { + strcpy(alertGlobalData[gStructIndex].data, (char *)&s_defInt16Val); + } else if (!strcmp("int16", paramtype)) { + strcpy(alertGlobalData[gStructIndex].data, (char *)&s_defInt16Val); + } else if (!strcmp("uint8", paramtype)) { + strcpy(alertGlobalData[gStructIndex].data, (char *)&s_defInt8Val); + } else if (!strcmp("int8", paramtype)) { + strcpy(alertGlobalData[gStructIndex].data, (char *)&s_defInt8Val); + } else if (!strcmp("string", paramtype)) { + strcpy(alertGlobalData[gStructIndex].data, DEFAULT_STRING); + } else if (!strcmp("enum", paramtype)) { + strcpy(alertGlobalData[gStructIndex].data, (char *)&s_defEnumVal); + } else { + strcpy(alertGlobalData[gStructIndex].data, (char *)&s_defInt8Val); + } + return STUB_SUCCESS; +} +/****************************************************************************** + * Function Name : ocware_stub_create_alert_database + * Description : Parse the schema and add alert entries in the DB + * + * @return STUB_SUCCESS - for success + * STUB_FAILED - for failure + ******************************************************************************/ +ocware_stub_ret ocware_stub_create_alert_database() +{ + ocware_stub_ret ret = STUB_FAILED; + int8_t subsystemNbr = 0; + int8_t componentNbr = 0; + const Component *component = NULL; + const Component *subComponent = NULL; + const Component *subSystem = NULL; + const Driver *devDriver = NULL; + const Parameter *param = NULL; + int8_t count = 0; + int8_t alertCount = 0; + int16_t gStructIndex = 0; + int16_t paramPos = 0; + + for (subSystem = sys_schema; subSystem && subSystem->name; subSystem++) { + /* Subsystem loop */ + componentNbr = 1; + for (component = subSystem->components; component && component->name; + component++) { + /* component loop */ + devDriver = component->driver; + if (devDriver != NULL) { + /* This is for componenets w/o any sub component */ + count = 0; + paramPos = 0; + param = devDriver->alerts; + /* Alert related parameters */ + while (param && param->name) { /*Parameter loop */ + alertGlobalData[gStructIndex].subsystemId = subsystemNbr; + alertGlobalData[gStructIndex].componentId = componentNbr; + alertGlobalData[gStructIndex].paramId = pow(2, count); + alertGlobalData[gStructIndex].paramSize = + ocware_stub_get_paramSize(DATA_TYPE_MAP[param->type], + OCMP_MSG_TYPE_CONFIG, + param->name); + alertGlobalData[gStructIndex].msgtype = + OCMP_MSG_TYPE_CONFIG; + alertGlobalData[gStructIndex].data = malloc( + sizeof(char) * alertGlobalData[gStructIndex].paramSize); + if (alertGlobalData[gStructIndex].data == NULL) { + printf("Malloc failed\n"); + return STUB_FAILED; + } else { + memset(alertGlobalData[gStructIndex].data, 0, + alertGlobalData[gStructIndex].paramSize); + } + ocware_stub_fill_alert_value(param, gStructIndex); + paramPos += alertGlobalData[gStructIndex].paramSize; + gStructIndex++; + param += 1; + count = count + 1; + allAlertCount++; + } + } + alertCount = 0; + subComponent = component->components; + while (subComponent && subComponent->name) { + devDriver = subComponent->driver; + if (devDriver == NULL) { + subComponent += 1; + continue; + } + param = devDriver->alerts; + /* Config related parameters */ + while (param && param->name) { /*Parameter loop */ + alertGlobalData[gStructIndex].subsystemId = subsystemNbr; + alertGlobalData[gStructIndex].componentId = componentNbr; + alertGlobalData[gStructIndex].paramId = pow(2, alertCount); + alertGlobalData[gStructIndex].paramSize = + ocware_stub_get_paramSize(DATA_TYPE_MAP[param->type], + OCMP_MSG_TYPE_CONFIG, + param->name); + alertGlobalData[gStructIndex].msgtype = + OCMP_MSG_TYPE_CONFIG; + // configPanramPos += + // alertGlobalData[gStructIndex].paramSize; + alertGlobalData[gStructIndex].data = + malloc(alertGlobalData[gStructIndex].paramSize); + if (alertGlobalData[gStructIndex].data == NULL) { + printf("Malloc failed\n"); + return STUB_FAILED; + } else { + memset(alertGlobalData[gStructIndex].data, 0, + alertGlobalData[gStructIndex].paramSize); + } + ocware_stub_fill_alert_value(param, gStructIndex); + gStructIndex++; + param += 1; + alertCount += 1; + allAlertCount++; + } + subComponent += 1; + } + componentNbr++; + } + subsystemNbr++; + } + return ret; +} + /****************************************************************************** * Function Name : ocware_stub_create_post_database * Description : Parse the schema and add post entries @@ -768,15 +997,28 @@ ocware_stub_ret ocware_stub_create_post_database() for (subSystem = sys_schema; subSystem && subSystem->name; subSystem++) { /* Subsystem loop */ count = 1; - for(component = subSystem->components; component && component->name; - component++) { + for (component = subSystem->components; component && component->name; + component++) { /* component loop */ - subComponent = component->components; - if ((subComponent == NULL) && - (component->postDisabled != POST_DISABLED)) { + subComponent = component->components; + if ((subComponent == NULL) && + (component->postDisabled != POST_DISABLED)) { + s_postGlobalArray[PostIndex].SubsystemId = subsystemNbr; + s_postGlobalArray[PostIndex].DeviceNumber = count; + if (count < 10) { + s_postGlobalArray[PostIndex].Status = count - 1; + } else { + s_postGlobalArray[PostIndex].Status = 9; + } + PostIndex++; + count++; + } + /* If subcomponents exist */ + while (subComponent && subComponent->name) { + if (subComponent->postDisabled != POST_DISABLED) { s_postGlobalArray[PostIndex].SubsystemId = subsystemNbr; s_postGlobalArray[PostIndex].DeviceNumber = count; - if(count < 10) { + if (count < 10) { s_postGlobalArray[PostIndex].Status = count - 1; } else { s_postGlobalArray[PostIndex].Status = 9; @@ -784,24 +1026,11 @@ ocware_stub_ret ocware_stub_create_post_database() PostIndex++; count++; } - /* If subcomponents exist */ - while (subComponent && subComponent->name) { - if (subComponent->postDisabled != POST_DISABLED) { - s_postGlobalArray[PostIndex].SubsystemId = subsystemNbr; - s_postGlobalArray[PostIndex].DeviceNumber = count; - if(count < 10) { - s_postGlobalArray[PostIndex].Status = count - 1; - } else { - s_postGlobalArray[PostIndex].Status = 9; - } - PostIndex++; - count++; - } - subComponent += 1; - } /* sub comp loop */ - } /* component loop */ + subComponent += 1; + } /* sub comp loop */ + } /* component loop */ subsystemNbr++; - }/*subsystem loop */ + } /*subsystem loop */ return STUB_SUCCESS; } @@ -820,16 +1049,14 @@ ocware_stub_ret ocware_stub_init_post(const Driver *devDriver) const Post *post = NULL; uint16_t count = 0; - if(devDriver == NULL) + if (devDriver == NULL) return ret; post = devDriver->post; while (post && post->name) { - if (strncmp(post->name, "results", - strlen(post->name)) == 0) { + if (strncmp(post->name, "results", strlen(post->name)) == 0) { PostResult = pow(2, count); - } else if (strncmp(post->name, "enable", - strlen(post->name)) == 0) { + } else if (strncmp(post->name, "enable", strlen(post->name)) == 0) { PostEnable = pow(2, count); } else { printf("Post init failed\n"); @@ -839,11 +1066,10 @@ ocware_stub_ret ocware_stub_init_post(const Driver *devDriver) post++; } - if ((PostResult != STUB_FAILED) && - (PostEnable != STUB_FAILED)) { + if ((PostResult != STUB_FAILED) && (PostEnable != STUB_FAILED)) { ret = STUB_SUCCESS; } else { - printf("Post init failed\n"); + printf("Post init failed\n"); } return ret; } @@ -857,7 +1083,6 @@ ocware_stub_ret ocware_stub_init_post(const Driver *devDriver) ******************************************************************************/ ocware_stub_ret ocware_stub_init_database() { - ocware_stub_ret ret = STUB_FAILED; int8_t subsystemNbr = 0; int8_t componentNbr = 0; @@ -877,21 +1102,21 @@ ocware_stub_ret ocware_stub_init_database() for (subSystem = sys_schema; subSystem && subSystem->name; subSystem++) { /* Subsystem loop */ componentNbr = 1; - if (strncmp(subSystem->name, "debug", - strlen(subSystem->name)) == 0) { - ocware_create_command_debug_database(subsystemNbr, - &gStructIndex, subSystem); + if (strncmp(subSystem->name, "debug", strlen(subSystem->name)) == 0) { + ocware_create_command_debug_database(subsystemNbr, &gStructIndex, + subSystem); } - for(component = subSystem->components; component && component->name; - component++) { + for (component = subSystem->components; component && component->name; + component++) { /* component loop */ devDriver = component->driver; if (devDriver != NULL) { if (devDriver->post != NULL) { - /* POST is currently designed to be existing in one driver */ + /* POST is currently designed to be existing in one driver + */ ret = ocware_stub_init_post(devDriver); - if(ret != STUB_SUCCESS) + if (ret != STUB_SUCCESS) return ret; } /* This is for componenets w/o any sub component */ @@ -902,23 +1127,23 @@ ocware_stub_ret ocware_stub_init_database() while (param && param->name) { /*Parameter loop */ s_ocwareGlobalData[gStructIndex].subsystemId = subsystemNbr; s_ocwareGlobalData[gStructIndex].componentId = componentNbr; - s_ocwareGlobalData[gStructIndex].paramId - = pow(2,count); + s_ocwareGlobalData[gStructIndex].paramId = pow(2, count); s_ocwareGlobalData[gStructIndex].paramSize = - ocware_stub_get_paramSize ( - DATA_TYPE_MAP[param->type], - OCMP_MSG_TYPE_CONFIG, param->name); + ocware_stub_get_paramSize(DATA_TYPE_MAP[param->type], + OCMP_MSG_TYPE_CONFIG, + param->name); s_ocwareGlobalData[gStructIndex].msgtype = - OCMP_MSG_TYPE_CONFIG; + OCMP_MSG_TYPE_CONFIG; s_ocwareGlobalData[gStructIndex].paramPos = paramPos; - s_ocwareGlobalData[gStructIndex].data = malloc(sizeof(char)* - s_ocwareGlobalData[gStructIndex].paramSize); + s_ocwareGlobalData[gStructIndex].data = + malloc(sizeof(char) * + s_ocwareGlobalData[gStructIndex].paramSize); if (s_ocwareGlobalData[gStructIndex].data == NULL) { printf("Malloc failed\n"); return STUB_FAILED; } else { memset(s_ocwareGlobalData[gStructIndex].data, 0, - s_ocwareGlobalData[gStructIndex].paramSize); + s_ocwareGlobalData[gStructIndex].paramSize); } ocware_stub_fill_init_value(param, gStructIndex); paramPos += s_ocwareGlobalData[gStructIndex].paramSize; @@ -932,70 +1157,67 @@ ocware_stub_ret ocware_stub_init_database() /* Status related parameters */ while (param && param->name) { /* Parameter loop */ if ((strncmp(subSystem->name, "obc", - strlen(subSystem->name)) == 0) || + strlen(subSystem->name)) == 0) || (strncmp(subSystem->name, "testmodule", - strlen(subSystem->name)) == 0) || + strlen(subSystem->name)) == 0) || (strncmp(subSystem->name, "system", - strlen(subSystem->name)) == 0)) { - if (strncmp(param->name, "mfg", - strlen(param->name))== 0) { + strlen(subSystem->name)) == 0)) { + if (strncmp(param->name, "mfg", strlen(param->name)) == + 0) { s_typeFlag = OCSTUB_VALUE_TYPE_MFG; - } else if (strncmp(param->name, - "model", strlen(param->name)) == 0) { + } else if (strncmp(param->name, "model", + strlen(param->name)) == 0) { if ((strncmp(subSystem->name, "testmodule", - strlen(subSystem->name))) == 0) { + strlen(subSystem->name))) == 0) { s_typeFlag = OCSTUB_VALUE_TYPE_GETMODEL; } else { s_typeFlag = OCSTUB_VALUE_TYPE_MODEL; } - } else if (strncmp(param->name, - "registration", strlen(param->name)) == 0) { + } else if (strncmp(param->name, "registration", + strlen(param->name)) == 0) { s_typeFlag = OCSTUB_VALUE_TYPE_REGISTRATION; - } else if(strncmp(param->name, "network_operatorinfo", - strlen(param->name)) == 0) { - s_typeFlag = - OCSTUB_VALUE_TYPE_NWOP_STRUCT; - } else if(strncmp(param->name, "lasterror", - strlen(param->name)) == 0) { - s_typeFlag = - OCSTUB_VALUE_TYPE_LAST_ERROR; - } else if(strncmp(param->name, "ocserialinfo", - strlen(param->name)) == 0) { - s_typeFlag = - OCSTUB_VALUE_TYPE_OCSERIAL_INFO; - } else if(strncmp(param->name, "gbcboardinfo", - strlen(param->name)) == 0) { - s_typeFlag = - OCSTUB_VALUE_TYPE_GBCBOARD_INFO; + } else if (strncmp(param->name, "network_operatorinfo", + strlen(param->name)) == 0) { + s_typeFlag = OCSTUB_VALUE_TYPE_NWOP_STRUCT; + } else if (strncmp(param->name, "lasterror", + strlen(param->name)) == 0) { + s_typeFlag = OCSTUB_VALUE_TYPE_LAST_ERROR; + } else if (strncmp(param->name, "ocserialinfo", + strlen(param->name)) == 0) { + s_typeFlag = OCSTUB_VALUE_TYPE_OCSERIAL_INFO; + } else if (strncmp(param->name, "gbcboardinfo", + strlen(param->name)) == 0) { + s_typeFlag = OCSTUB_VALUE_TYPE_GBCBOARD_INFO; } else { } } s_ocwareGlobalData[gStructIndex].subsystemId = subsystemNbr; s_ocwareGlobalData[gStructIndex].componentId = componentNbr; - s_ocwareGlobalData[gStructIndex].paramId = pow(2,count); + s_ocwareGlobalData[gStructIndex].paramId = pow(2, count); s_ocwareGlobalData[gStructIndex].paramSize = - ocware_stub_get_paramSize ( - DATA_TYPE_MAP[param->type], - OCMP_MSG_TYPE_STATUS, param->name); + ocware_stub_get_paramSize(DATA_TYPE_MAP[param->type], + OCMP_MSG_TYPE_STATUS, + param->name); s_ocwareGlobalData[gStructIndex].paramPos = paramPos; s_ocwareGlobalData[gStructIndex].msgtype = - OCMP_MSG_TYPE_STATUS; + OCMP_MSG_TYPE_STATUS; paramPos += s_ocwareGlobalData[gStructIndex].paramSize; - s_ocwareGlobalData[gStructIndex].data = malloc(sizeof(char)* - s_ocwareGlobalData[gStructIndex].paramSize); + s_ocwareGlobalData[gStructIndex].data = + malloc(sizeof(char) * + s_ocwareGlobalData[gStructIndex].paramSize); if (s_ocwareGlobalData[gStructIndex].data == NULL) { printf("Malloc failed\n"); return STUB_FAILED; } else { memset(s_ocwareGlobalData[gStructIndex].data, 0, - s_ocwareGlobalData[gStructIndex].paramSize); + s_ocwareGlobalData[gStructIndex].paramSize); } ocware_stub_fill_init_value(param, gStructIndex); if ((strncmp(subSystem->name, "obc", - strlen(subSystem->name)) == 0) || + strlen(subSystem->name)) == 0) || (strncmp(subSystem->name, "testmodule", - strlen(subSystem->name)) == 0)) { - s_ocwareGlobalData[gStructIndex].paramPos = 0; + strlen(subSystem->name)) == 0)) { + s_ocwareGlobalData[gStructIndex].paramPos = 0; } gStructIndex++; param += 1; @@ -1011,7 +1233,7 @@ ocware_stub_ret ocware_stub_init_database() while (subComponent && subComponent->name) { devDriver = subComponent->driver; - if(devDriver == NULL) { + if (devDriver == NULL) { subComponent += 1; continue; } @@ -1020,24 +1242,25 @@ ocware_stub_ret ocware_stub_init_database() while (param && param->name) { /*Parameter loop */ s_ocwareGlobalData[gStructIndex].subsystemId = subsystemNbr; s_ocwareGlobalData[gStructIndex].componentId = componentNbr; - s_ocwareGlobalData[gStructIndex].paramId - = pow(2,configCount); - s_ocwareGlobalData[gStructIndex].paramSize - = ocware_stub_get_paramSize ( - DATA_TYPE_MAP[param->type], - OCMP_MSG_TYPE_CONFIG, param->name); + s_ocwareGlobalData[gStructIndex].paramId = + pow(2, configCount); + s_ocwareGlobalData[gStructIndex].paramSize = + ocware_stub_get_paramSize(DATA_TYPE_MAP[param->type], + OCMP_MSG_TYPE_CONFIG, + param->name); s_ocwareGlobalData[gStructIndex].msgtype = - OCMP_MSG_TYPE_CONFIG; + OCMP_MSG_TYPE_CONFIG; s_ocwareGlobalData[gStructIndex].paramPos = configParamPos; - configParamPos += s_ocwareGlobalData[gStructIndex].paramSize; - s_ocwareGlobalData[gStructIndex].data - = malloc(s_ocwareGlobalData[gStructIndex].paramSize); + configParamPos += + s_ocwareGlobalData[gStructIndex].paramSize; + s_ocwareGlobalData[gStructIndex].data = + malloc(s_ocwareGlobalData[gStructIndex].paramSize); if (s_ocwareGlobalData[gStructIndex].data == NULL) { printf("Malloc failed\n"); return STUB_FAILED; } else { memset(s_ocwareGlobalData[gStructIndex].data, 0, - s_ocwareGlobalData[gStructIndex].paramSize); + s_ocwareGlobalData[gStructIndex].paramSize); } ocware_stub_fill_init_value(param, gStructIndex); gStructIndex++; @@ -1047,39 +1270,41 @@ ocware_stub_ret ocware_stub_init_database() param = devDriver->status; /* Status related parameters */ while (param && param->name) { /* Parameter loop */ - s_ocwareGlobalData[gStructIndex].subsystemId = subsystemNbr; - s_ocwareGlobalData[gStructIndex].componentId = componentNbr; - s_ocwareGlobalData[gStructIndex].paramId - = pow(2,statusCount); - s_ocwareGlobalData[gStructIndex].paramSize - = ocware_stub_get_paramSize ( - DATA_TYPE_MAP[param->type], - OCMP_MSG_TYPE_STATUS, param->name); - s_ocwareGlobalData[gStructIndex].paramPos = statusParamPos; - s_ocwareGlobalData[gStructIndex].msgtype = - OCMP_MSG_TYPE_STATUS; - statusParamPos += s_ocwareGlobalData[gStructIndex].paramSize; - s_ocwareGlobalData[gStructIndex].data - = malloc(s_ocwareGlobalData[gStructIndex].paramSize); - if (s_ocwareGlobalData[gStructIndex].data == NULL) { - printf("Malloc failed\n"); - return STUB_FAILED; - } else { - memset(s_ocwareGlobalData[gStructIndex].data, 0, - s_ocwareGlobalData[gStructIndex].paramSize); - } - ocware_stub_fill_init_value(param, gStructIndex); - gStructIndex++; - param += 1; - statusCount += 1; + s_ocwareGlobalData[gStructIndex].subsystemId = subsystemNbr; + s_ocwareGlobalData[gStructIndex].componentId = componentNbr; + s_ocwareGlobalData[gStructIndex].paramId = + pow(2, statusCount); + s_ocwareGlobalData[gStructIndex].paramSize = + ocware_stub_get_paramSize(DATA_TYPE_MAP[param->type], + OCMP_MSG_TYPE_STATUS, + param->name); + s_ocwareGlobalData[gStructIndex].paramPos = statusParamPos; + s_ocwareGlobalData[gStructIndex].msgtype = + OCMP_MSG_TYPE_STATUS; + statusParamPos += + s_ocwareGlobalData[gStructIndex].paramSize; + s_ocwareGlobalData[gStructIndex].data = + malloc(s_ocwareGlobalData[gStructIndex].paramSize); + if (s_ocwareGlobalData[gStructIndex].data == NULL) { + printf("Malloc failed\n"); + return STUB_FAILED; + } else { + memset(s_ocwareGlobalData[gStructIndex].data, 0, + s_ocwareGlobalData[gStructIndex].paramSize); + } + ocware_stub_fill_init_value(param, gStructIndex); + gStructIndex++; + param += 1; + statusCount += 1; } subComponent += 1; } - componentNbr++; + componentNbr++; } - subsystemNbr++; + subsystemNbr++; } ret = ocware_stub_create_post_database(); + ret = ocware_stub_create_alert_database(); return ret; } @@ -1092,10 +1317,11 @@ ocware_stub_ret ocware_stub_init_database() * @return STUB_SUCCESS - for success * STUB_FAILED - for failure ******************************************************************************/ -ocware_stub_ret ocware_stub_parse_command_message(char *buffer) +ocware_stub_ret ocware_stub_parse_command_message(char *buffer, + uint8_t *alertFlag) { OCMPMessageFrame *msgFrame = (OCMPMessageFrame *)buffer; - OCMPMessage *msgFrameData = (OCMPMessage*)&msgFrame->message; + OCMPMessage *msgFrameData = (OCMPMessage *)&msgFrame->message; ocware_stub_ret ret = STUB_FAILED; if (buffer == NULL) { @@ -1108,10 +1334,11 @@ ocware_stub_ret ocware_stub_parse_command_message(char *buffer) * similar to the get/set logic used in config msg type */ ret = STUB_SUCCESS; - if(s_debugSubsystem == msgFrameData->subsystem) { + if (s_debugSubsystem == msgFrameData->subsystem) { ocware_stub_parse_debug_actiontype(msgFrameData); ret = ocware_stub_get_set_params(msgFrameData); } + *alertFlag = ocware_stub_parse_command_from_schema(msgFrameData); msgFrameData->action = OCMP_AXN_TYPE_REPLY; return ret; } diff --git a/firmware/host/ocwarestub/ocware_stub_eth_comm.c b/firmware/host/ocwarestub/ocware_stub_eth_comm.c old mode 100755 new mode 100644 index 5ea8f5f95a..a3fbd5b82f --- a/firmware/host/ocwarestub/ocware_stub_eth_comm.c +++ b/firmware/host/ocwarestub/ocware_stub_eth_comm.c @@ -16,8 +16,8 @@ ocware_stub_ret ocware_stub_init_ethernet_comm(void) int32_t inet_atom = 0; /* Create socket */ - s_stubSockFd = socket(OCMW_STUB_ETH_SOCK_DOMAIN, - OCMW_STUB_ETH_SOCK_TYPE, OCMW_STUB_ETH_SOCK_PROTOCOL); + s_stubSockFd = socket(OCMW_STUB_ETH_SOCK_DOMAIN, OCMW_STUB_ETH_SOCK_TYPE, + OCMW_STUB_ETH_SOCK_PROTOCOL); if (s_stubSockFd < 0) { printf("socket creation error [%d-%s]", errno, strerror(errno)); return STUB_FAILED; @@ -28,8 +28,8 @@ ocware_stub_ret ocware_stub_init_ethernet_comm(void) s_ocmwStubServer.sin_family = OCMW_STUB_ETH_SOCK_DOMAIN; s_ocmwStubServer.sin_port = htons(OCMW_STUB_ETH_SOCK_SERVER_PORT); s_ocmwStubServer.sin_addr.s_addr = inet_addr(OCMW_STUB_ETH_SOCK_SERVER_IP); - inet_atom = inet_aton(OCMW_STUB_ETH_SOCK_SERVER_IP, - &s_ocmwStubServer.sin_addr); + inet_atom = + inet_aton(OCMW_STUB_ETH_SOCK_SERVER_IP, &s_ocmwStubServer.sin_addr); if (inet_atom == 0) { printf("inet_aton failed"); return STUB_FAILED; @@ -37,8 +37,8 @@ ocware_stub_ret ocware_stub_init_ethernet_comm(void) memset(s_ocmwStubServer.sin_zero, '\0', sizeof(s_ocmwStubServer.sin_zero)); /*Bind socket with address struct*/ - rc = bind(s_stubSockFd, (struct sockaddr *) &s_ocmwStubServer, - sizeof(s_ocmwStubServer)); + rc = bind(s_stubSockFd, (struct sockaddr *)&s_ocmwStubServer, + sizeof(s_ocmwStubServer)); if (rc != 0) { ocware_stub_deinit_ethernet_comm(); printf("Ehernet init failed \n"); @@ -72,7 +72,7 @@ ocware_stub_ret ocware_stub_deinit_ethernet_comm() * STUB_FAILED - for failure ******************************************************************************/ ocware_stub_ret ocware_stub_send_msgframe_middleware(char **buffer, - int32_t bufferlen) + int32_t bufferlen) { int32_t rc = 0; const int32_t errstr_len = OCWARE_STUB_ERR_STR_LEN; @@ -87,8 +87,7 @@ ocware_stub_ret ocware_stub_send_msgframe_middleware(char **buffer, memcpy(data, *buffer, sizeof(data)); rc = sendto(s_stubSockFd, data, OC_EC_MSG_SIZE, 0, - (struct sockaddr *) &s_ocmwStubServer, - dataLen); + (struct sockaddr *)&s_ocmwStubServer, dataLen); if (rc < 0) { strerror_r(errno, errstr, errstr_len); printf("Error: 'send' [%d-%s]", errno, errstr); @@ -108,8 +107,8 @@ ocware_stub_ret ocware_stub_send_msgframe_middleware(char **buffer, * @return STUB_SUCCESS - for success * STUB_FAILED - for failure ******************************************************************************/ -ocware_stub_ret ocware_stub_recv_msgfrom_middleware( - char **buffer, int32_t bufferlen) +ocware_stub_ret ocware_stub_recv_msgfrom_middleware(char **buffer, + int32_t bufferlen) { int32_t rc = 0; const int32_t errstr_len = OCWARE_STUB_ERR_STR_LEN; @@ -120,10 +119,10 @@ ocware_stub_ret ocware_stub_recv_msgfrom_middleware( if (buffer == NULL) { return STUB_FAILED; } - /* Receive the CLI command execution response string from OCMW over UDP socket */ - rc = recvfrom(s_stubSockFd, data, OC_EC_MSG_SIZE, - 0, (struct sockaddr *) &s_ocmwStubServer, - (socklen_t*)&dataLen); + /* Receive the CLI command execution response string from OCMW over UDP + * socket */ + rc = recvfrom(s_stubSockFd, data, OC_EC_MSG_SIZE, 0, + (struct sockaddr *)&s_ocmwStubServer, (socklen_t *)&dataLen); if (rc < 0) { strerror_r(rc, errstr, errstr_len); logerr("Error: 'recv' [%d-%s]", rc, errstr); diff --git a/firmware/host/ocwarestub/ocware_stub_main_module.c b/firmware/host/ocwarestub/ocware_stub_main_module.c old mode 100755 new mode 100644 index bed773035d..9f3a4ea754 --- a/firmware/host/ocwarestub/ocware_stub_main_module.c +++ b/firmware/host/ocwarestub/ocware_stub_main_module.c @@ -8,6 +8,7 @@ */ #include +extern int16_t allAlertCount; /****************************************************************************** * Function Name : ocware_stub_frame_newmsgframe * Description : Frame the response packet from stub function @@ -18,11 +19,12 @@ * @return STUB_SUCCESS - for success * STUB_FAILED - for failure ******************************************************************************/ -ocware_stub_ret ocware_stub_frame_newmsgframe(char *buffer, int32_t option) +ocware_stub_ret ocware_stub_frame_newmsgframe(char *buffer, int32_t option, + uint8_t *alertFlag) { int32_t ret = 0, index = 0; OCMPMessageFrame *msgFrame = (OCMPMessageFrame *)buffer; - OCMPMessage *msgFrameData = (OCMPMessage*)&msgFrame->message; + OCMPMessage *msgFrameData = (OCMPMessage *)&msgFrame->message; /* Frame the header packet for sending data to ec */ msgFrame->header.ocmpFrameLen = 0; @@ -31,21 +33,19 @@ ocware_stub_ret ocware_stub_frame_newmsgframe(char *buffer, int32_t option) msgFrame->header.ocmpSof = OCMP_MSG_SOF; msgFrame->header.ocmpTimestamp = 0; - switch(msgFrameData->msgtype) { - + switch (msgFrameData->msgtype) { case OCMP_MSG_TYPE_COMMAND: - ret = ocware_stub_parse_command_message(buffer); + ret = ocware_stub_parse_command_message(buffer, alertFlag); break; case OCMP_MSG_TYPE_POST: ret = ocware_stub_parse_post_get_message(buffer); break; - default: ret = ocware_stub_get_set_params(msgFrameData); } - if (ret == STUB_SUCCESS) { + if (ret == STUB_SUCCESS && (msgFrameData->msgtype != OCMP_MSG_TYPE_ALERT)) { /* Setting the action type as REPLY */ msgFrame->message.action = OCMP_AXN_TYPE_REPLY; printf(" \n Sending Data :\n"); @@ -67,7 +67,7 @@ ocware_stub_ret ocware_stub_frame_newmsgframe(char *buffer, int32_t option) * STUB_FAILED - for failure ******************************************************************************/ ocware_stub_ret ocware_stub_validate_msgframe_header(char *buf, - OCMPMessage *msgFrameData) + OCMPMessage *msgFrameData) { OCMPMessageFrame *MsgFrame = (OCMPMessageFrame *)buf; OCMPHeader *header = (OCMPHeader *)&MsgFrame->header; @@ -77,7 +77,7 @@ ocware_stub_ret ocware_stub_validate_msgframe_header(char *buf, if (header->ocmpSof == OCMP_MSG_SOF) { if (header->ocmpTimestamp == 0) { memcpy(msgFrameData, &MsgFrame->message, - sizeof(OCMPMessage)); + sizeof(OCMPMessage)); return STUB_SUCCESS; } } @@ -97,27 +97,27 @@ ocware_stub_ret ocware_stub_validate_msgframe_header(char *buf, ******************************************************************************/ int32_t host_ocstubmain_func(int32_t argc, char *argv[]) { - int32_t rc = 0; + int32_t ret = 0; char *buffer = NULL; int32_t loopCount = 0; char *rootpath = NULL; - + uint8_t alertFlag = 0; OCMPMessageFrame *msgFrame = NULL; - rc = ocware_stub_init_ethernet_comm(); - if ( rc != STUB_SUCCESS) { + ret = ocware_stub_init_ethernet_comm(); + if (ret != STUB_SUCCESS) { printf("\n ERROR: Init Failed - %d", __LINE__); ocware_stub_deinit_ethernet_comm(); return STUB_FAILED; } - msgFrame = (OCMPMessageFrame *) malloc(sizeof(OCMPMessageFrame)); + msgFrame = (OCMPMessageFrame *)malloc(sizeof(OCMPMessageFrame)); if (msgFrame == NULL) { printf("\n ERROR: malloc"); ocware_stub_deinit_ethernet_comm(); return STUB_FAILED; } - buffer = (char *) malloc(OC_EC_MSG_SIZE); + buffer = (char *)malloc(OC_EC_MSG_SIZE); if (buffer == NULL) { printf("\n ERROR: malloc"); ocware_stub_deinit_ethernet_comm(); @@ -136,41 +136,49 @@ int32_t host_ocstubmain_func(int32_t argc, char *argv[]) printf("\n\n OCWARE STUB APllication Started...\n"); while (1) { - memset(buffer, 0, sizeof(OCMPMessageFrame)); - rc = ocware_stub_recv_msgfrom_middleware(&buffer, - sizeof(OCMPMessageFrame)); - if (rc != STUB_SUCCESS) { + ret = ocware_stub_recv_msgfrom_middleware(&buffer, + sizeof(OCMPMessageFrame)); + if (ret != STUB_SUCCESS) { printf("ocware_stub_recv_msgfrom_middleware failed: error value :" - " %d\n", rc); + " %d\n", + ret); return STUB_FAILED; } -//#ifndef OCWARE_STUB_DEBUG + //#ifndef OCWARE_STUB_DEBUG printf(" \n Received Data :\n"); for (loopCount = 0; loopCount < OC_EC_MSG_SIZE; loopCount++) { printf("0x%x ", buffer[loopCount] & 0xff); } -//#endif - rc = ocware_stub_validate_msgframe_header(buffer, &msgFrame->message); - if (rc != STUB_SUCCESS) { + printf("\n"); + //#endif + ret = ocware_stub_validate_msgframe_header(buffer, &msgFrame->message); + if (ret != STUB_SUCCESS) { printf("ocware_stub_validate_msgframe_header failed: error value :" - "%d\n", rc); + "%d\n", + ret); return STUB_FAILED; } - rc = ocware_stub_frame_newmsgframe(buffer, rc); - if (rc != STUB_SUCCESS) { + ret = ocware_stub_frame_newmsgframe(buffer, ret, &alertFlag); + if (ret != STUB_SUCCESS) { printf("ocware_stub_frame_newmsgframe failed: error value :" - "%d\n", rc); + "%d\n", + ret); return STUB_FAILED; } - - rc = ocware_stub_send_msgframe_middleware(&buffer, - sizeof(OCMPMessageFrame)); - if (rc != STUB_SUCCESS) { - printf("ocware_stub_send_msgframe_middleware failed: error value :" - "%d\n", rc); - return STUB_FAILED; + if (alertFlag > 0) { + ret = ocware_stub_frame_alert_msgframe(buffer); + } else { + ret = ocware_stub_send_msgframe_middleware( + &buffer, sizeof(OCMPMessageFrame)); + if (ret != STUB_SUCCESS) { + printf( + "ocware_stub_send_msgframe_middleware failed: error value :" + "%d\n", + ret); + return STUB_FAILED; + } } } free(msgFrame); diff --git a/firmware/host/ocwarestub/ocware_stub_parse_message.c b/firmware/host/ocwarestub/ocware_stub_parse_message.c old mode 100755 new mode 100644 index c2efd0a3f9..cfdb7c74d4 --- a/firmware/host/ocwarestub/ocware_stub_parse_message.c +++ b/firmware/host/ocwarestub/ocware_stub_parse_message.c @@ -11,6 +11,7 @@ #include #include +extern const Component sys_schema[]; /****************************************************************************** * Function Name : ocware_stub_parse_debug_actiontype * Description : Convert debug actiontype into the SET/GET @@ -25,9 +26,7 @@ ocware_stub_ret ocware_stub_parse_debug_actiontype(OCMPMessage *msgFrameData) { ocware_stub_ret ret = STUB_SUCCESS; - if ((debugSetCommand != STUB_FAILED) || - (debugGetCommand != STUB_FAILED)) { - + if ((debugSetCommand != STUB_FAILED) || (debugGetCommand != STUB_FAILED)) { if ((msgFrameData->action) == debugGetCommand) { msgFrameData->action = OCMP_AXN_TYPE_GET; } else if ((msgFrameData->action) == debugSetCommand) { @@ -41,6 +40,46 @@ ocware_stub_ret ocware_stub_parse_debug_actiontype(OCMPMessage *msgFrameData) return ret; } +/****************************************************************************** + * Function Name : ocware_stub_parse_command_from_schema + * Description : Parse the command from schema + * + * @param msgFrameData - output pointer to the OCMPheader field of the message + * from MW (by reference) + * + * @return tempAlertFlag + *******************************************************************************/ +uint8_t ocware_stub_parse_command_from_schema(OCMPMessage *msgFrameData) +{ + const Component *component = NULL; + const Component *subSystem = NULL; + const Command *command = NULL; + uint8_t subsystemNbr = 0; + uint8_t commandNbr = 0; + uint8_t coponentNbr = 1; + uint8_t tempAlertFlag = 0; + + for (subSystem = sys_schema; subSystem && subSystem->name; subSystem++) { + if (subsystemNbr == msgFrameData->subsystem) { + component = subSystem->components; + if (coponentNbr == msgFrameData->componentID) { + command = component->commands; + while (command && command->name) { + if ((strcmp(command->name, "getAlertLogs") == 0) && + (commandNbr == msgFrameData->action)) { + tempAlertFlag++; + break; + } + commandNbr++; + command++; + } + break; + } + } + subsystemNbr++; + } + return tempAlertFlag; +} /****************************************************************************** * Function Name : ocware_stub_handle_post_enable * Description : Process the post enable message @@ -87,7 +126,6 @@ ocware_stub_ret ocware_stub_get_set_params(OCMPMessage *msgFrameData) ret = STUB_FAILED; } return ret; - } /****************************************************************************** * Function Name : ocware_stub_parse_post_get_message @@ -106,19 +144,46 @@ ocware_stub_ret ocware_stub_parse_post_get_message(char *buffer) uint16_t paramId; char *payload = NULL; - if(buffer == NULL) { + if (buffer == NULL) { return ret; } msgFrame = (OCMPMessageFrame *)buffer; - msgFrameData = (OCMPMessage*)&msgFrame->message; + msgFrameData = (OCMPMessage *)&msgFrame->message; payload = (char *)&msgFrameData->info; msgFrameData->action = OCMP_AXN_TYPE_REPLY; paramId = msgFrameData->parameters; - if(paramId == PostResult) { + if (paramId == PostResult) { ret = ocware_stub_get_post_database(msgFrameData, payload); } else if (paramId == PostEnable) { ret = ocware_stub_handle_post_enable(msgFrameData); } return ret; } +/****************************************************************************** + * Function Name : ocware_stub_parse_alert_get_message + * Description : Parse alert messages from MW + * + * @param buffer - output pointer to the message from MW + * index - index for record + * + * @return STUB_SUCCESS - for success + * STUB_FAILED - for failure + ******************************************************************************/ +ocware_stub_ret ocware_stub_parse_alert_get_message(char *buffer, int8_t index) +{ + ocware_stub_ret ret = STUB_FAILED; + OCMPMessageFrame *msgFrame = NULL; + OCMPMessage *msgFrameData = NULL; + char *payload = NULL; + + if (buffer == NULL) { + return ret; + } + msgFrame = (OCMPMessageFrame *)buffer; + msgFrameData = (OCMPMessage *)&msgFrame->message; + payload = (char *)&msgFrameData->info; + msgFrameData->action = OCMP_MSG_TYPE_ALERT; + ret = ocware_stub_get_alert_database(msgFrameData, payload, index); + return ret; +} diff --git a/firmware/host/ocwdg/ocwdg_daemon.c b/firmware/host/ocwdg/ocwdg_daemon.c index 50d2050eac..7cd04745f8 100644 --- a/firmware/host/ocwdg/ocwdg_daemon.c +++ b/firmware/host/ocwdg/ocwdg_daemon.c @@ -11,8 +11,8 @@ #include #include -#define OCWDG_NUMBER_ZERO 0 -#define OCWDG_NUMBER_ONE 1 +#define OCWDG_NUMBER_ZERO 0 +#define OCWDG_NUMBER_ONE 1 extern int32_t ocmw_sem_wait_nointr(sem_t *sem); @@ -37,7 +37,7 @@ int32_t ocwdg_init(void) * the msg coming from UART ec to ap */ ret = pthread_create(&ocWdgThreadid, NULL, ocwdg_thread_comm_with_ec, - NULL); + NULL); if (ret != OCWDG_NUMBER_ZERO) { return ret; } @@ -52,7 +52,7 @@ int32_t ocwdg_init(void) * Input(s) : pthreadData * Output(s) : ******************************************************************************/ -void * ocwdg_thread_comm_with_ec(void *pthreadData) +void *ocwdg_thread_comm_with_ec(void *pthreadData) { OCMPMessageFrame ecMsgFrame; OCMPHeader ecMsgHeader; @@ -90,8 +90,8 @@ void * ocwdg_thread_comm_with_ec(void *pthreadData) ecMsgFrame.message = ecCoreMsg; /* Populate the Core packet payload */ - ecMsgFrame.message.info = (int8_t *) malloc( - sizeof(char) * MAX_PARM_COUNT); + ecMsgFrame.message.info = + (int8_t *)malloc(sizeof(char) * MAX_PARM_COUNT); if (ecMsgFrame.message.info == NULL) { printf("\n Memory allocation failed \n"); } @@ -100,15 +100,15 @@ void * ocwdg_thread_comm_with_ec(void *pthreadData) #ifdef INTERFACE_ETHERNET /* Send the packetize data to ec through ethernet*/ ret = ocmw_send_eth_msgto_ec((int8_t *)&ecMsgFrame, (int32_t)32, - OCMW_EC_DEV); + OCMW_EC_DEV); if (ret != OCWDG_NUMBER_ZERO) { - logerr ("ocmw_send_eth_msgto_ec() failed"); + logerr("ocmw_send_eth_msgto_ec() failed"); } #else /* Send the packetize data to ec through uart*/ - ret = ocmw_send_uart_msg_to_ec((uint8_t *) &ecMsgFrame, - sizeof(ecMsgFrame)); + ret = ocmw_send_uart_msg_to_ec((uint8_t *)&ecMsgFrame, + sizeof(ecMsgFrame)); if (ret != OCWDG_NUMBER_ZERO) { logerr("ocmw_send_uart_msg_to_ec() failed"); } diff --git a/firmware/host/util/logger.c b/firmware/host/util/logger.c index b7f63ac94f..fb27ea14e8 100644 --- a/firmware/host/util/logger.c +++ b/firmware/host/util/logger.c @@ -17,7 +17,7 @@ * Input(s) : ident * Output(s) : ***************************************************************************/ -void initlog(const char* ident) +void initlog(const char *ident) { openlog(ident, LOG_CONS | LOG_PID, LOG_USER); } diff --git a/firmware/host/util/util.c b/firmware/host/util/util.c index 819932c6fa..a353fad30b 100644 --- a/firmware/host/util/util.c +++ b/firmware/host/util/util.c @@ -11,17 +11,17 @@ #include #include -#define UTIL_NUMBER_ZERO 0 +#define UTIL_NUMBER_ZERO 0 -void hexdisp(const unsigned char* buf, int buflen) +void hexdisp(const unsigned char *buf, int buflen) { - int c=UTIL_NUMBER_ZERO, i=UTIL_NUMBER_ZERO; - for (c=UTIL_NUMBER_ZERO; c0x20 && buf[i]<0x7F) ? buf[i] : '.'); + for (i = (c + 1) - 8; i <= (c + 1); i++) + printf("%c", (buf[i] > 0x20 && buf[i] < 0x7F) ? buf[i] : '.'); printf("\n"); } }