Skip to content

Commit

Permalink
declare non functional data collection thread attrs
Browse files Browse the repository at this point in the history
  • Loading branch information
jr1221 committed Aug 29, 2024
1 parent 6bee028 commit 2635e48
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions Core/Src/monitor.c
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,11 @@ void read_fuse_data(void *arg)
}

osThreadId_t non_functional_data_thead;
const osThreadAttr_t non_functional_data_attributes;

const osThreadAttr_t non_functional_data_attributes = {
.name = "NonFunctionalDataCollection",
.stack_size = 1500,
.priority = (osPriority_t)osPriorityBelowNormal,
};
void vNonFunctionalDataCollection(void *pv_params)
{
non_func_data_args_t *args = (non_func_data_args_t *)pv_params;
Expand Down

0 comments on commit 2635e48

Please sign in to comment.