Skip to content

Commit

Permalink
app id の enum 名を修正
Browse files Browse the repository at this point in the history
  • Loading branch information
chutaro committed Jan 21, 2024
1 parent 4df37c2 commit 8399056
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/src_user/Applications/app_registry.c
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ void AR_load_initial_settings(void)
add_application_(AR_APP_NVM_MANAGER, APP_NVM_MANAGER_create_app);
add_application_(AR_APP_NVM_PARTITION, APP_NVM_PARTITION_create_app);
add_application_(AR_APP_NVM_PARAMETER, APP_NVM_PARAMETER_create_app);
add_application_(AR_APP_NV_BC_MGR, APP_NVM_BC_create_app);
add_application_(AR_APP_NVM_BC, APP_NVM_BC_create_app);
add_application_(AR_APP_AOCS_DATA_RECORDER, APP_AOCS_DR_create_app);

// Thermal
Expand Down
2 changes: 1 addition & 1 deletion src/src_user/Applications/app_registry.h
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ typedef enum
AR_APP_NVM_MANAGER,
AR_APP_NVM_PARTITION,
AR_APP_NVM_PARAMETER,
AR_APP_NV_BC_MGR,
AR_APP_NVM_BC,
AR_APP_AOCS_DATA_RECORDER,
// Thermal
AR_APP_THERMO_SENSOR,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ void BCL_load_cdh_update()
BCL_tool_register_app(6, AR_DI_MOBC_RT_TLM_PH);
BCL_tool_register_app(7, AR_EVENT_UTILITY);
BCL_tool_register_app(8, AR_APP_AOCS_DATA_RECORDER);
BCL_tool_register_app(9, AR_APP_NV_BC_MGR); // TODO: これだと10Hzで頻度高すぎる
BCL_tool_register_app(9, AR_APP_NVM_BC); // TODO: これだと10Hzで頻度高すぎる
}

#pragma section

0 comments on commit 8399056

Please sign in to comment.