Skip to content

Commit

Permalink
fix for single interface
Browse files Browse the repository at this point in the history
  • Loading branch information
garethpotter committed May 28, 2024
1 parent 8dcd276 commit b83fc2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/can.c
Original file line number Diff line number Diff line change
Expand Up @@ -863,7 +863,7 @@ static void thingset_can_thread()
int err;

LOG_DBG("Initialising ThingSet CAN");
err = thingset_can_init_inst(&ts_can_single, can_dev, CONFIG_THINGSET_CAN_DEFAULT_ROUTE);
err = thingset_can_init_inst(&ts_can_single, can_dev, CONFIG_THINGSET_CAN_DEFAULT_ROUTE, -1);
if (err != 0) {
LOG_ERR("Failed to init ThingSet CAN: %d", err);
return;
Expand Down

0 comments on commit b83fc2a

Please sign in to comment.