Skip to content

Commit

Permalink
ok now it builds
Browse files Browse the repository at this point in the history
  • Loading branch information
Sabramz committed Nov 5, 2023
1 parent 1c60de1 commit 317c378
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions Core/Src/can_handler.c
Original file line number Diff line number Diff line change
Expand Up @@ -104,16 +104,14 @@ void vRouteCanIncoming(void* pv_params)
}
}

static osMessageQueueId_t can_outbound_queue;
static osMessageQueueId_t can_outbound_queue = 0;
osThreadId_t can_dispatch_handle;
const osThreadAttr_t can_dispatch_attributes = {
.name = "CanDispatch",
.stack_size = 128 * 8,
.priority = (osPriority_t) osPriorityAboveNormal4,
};

osMessageQueueId_t can_outbound_queue = 0;

void vCanDispatch(void* pv_params) {

const uint16_t can_dispatch_delay = 100; //ms
Expand Down

0 comments on commit 317c378

Please sign in to comment.