Skip to content

Commit

Permalink
Change Passing In Array
Browse files Browse the repository at this point in the history
  • Loading branch information
dnakhooda committed Oct 28, 2024
1 parent 4f25dc6 commit 5a1659d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion platforms/stm32f405/src/can.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ HAL_StatusTypeDef can_init(can_t *can) {
return err;
}

HAL_StatusTypeDef can_add_filter(can_t *can, uint32_t *id_list) {
HAL_StatusTypeDef can_add_filter(can_t *can, uint32_t id_list[4]) {
static int filterBank = 0;

if (filterBank > 7)
Expand Down

0 comments on commit 5a1659d

Please sign in to comment.