Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
dyldonahue committed Sep 4, 2024
1 parent 23edff2 commit b0f75fb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
1 change: 1 addition & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ repos:
pass_filenames: false
always_run: true
stages: [pre-commit]
files: \.(c|h|cpp|hpp)$
8 changes: 3 additions & 5 deletions Core/Src/fault.c
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,9 @@ osMessageQueueId_t fault_handle_queue;

osThreadId_t fault_handle;
const osThreadAttr_t fault_handle_attributes = {
.name = "FaultHandler",
.stack_size =

52 * 8,
.priority = (osPriority_t)osPriorityRealtime1,
.name = "FaultHandler",
.stack_size = 52 * 8,
.priority = (osPriority_t)osPriorityRealtime1,
};

int queue_fault(fault_data_t* fault_data)
Expand Down

0 comments on commit b0f75fb

Please sign in to comment.