From c7bb133bbe03f2f1782583020d6d859092d63a47 Mon Sep 17 00:00:00 2001 From: Ryo Suzumoto Date: Tue, 20 Sep 2022 00:50:46 +0900 Subject: [PATCH] fix el note of deploy event --- Applications/timeline_command_dispatcher.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Applications/timeline_command_dispatcher.c b/Applications/timeline_command_dispatcher.c index d9cd252ed..0f30e4d85 100644 --- a/Applications/timeline_command_dispatcher.c +++ b/Applications/timeline_command_dispatcher.c @@ -279,7 +279,7 @@ CCP_CmdRet Cmd_TLCD_DEPLOY_BLOCK(const CommonCmdPacket* packet) EL_record_event((EL_GROUP)EL_CORE_GROUP_TLCD_DEPLOY_BLOCK, (uint32_t)ack, EL_ERROR_LEVEL_LOW, - (uint32_t)id); + (uint32_t)( ((0x000000ff & id) << 24) | (0x00ffffff & block_no) ); return CCP_make_cmd_ret_without_err_code(CCP_EXEC_ILLEGAL_CONTEXT); }