Skip to content

Commit

Permalink
Bugfix for motion coordinator.
Browse files Browse the repository at this point in the history
  • Loading branch information
blumenthal committed Nov 24, 2014
1 parent 905821a commit d22020a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/motion_coordinator.c
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ static int motion_coordinator_init(ubx_block_t *b)
trig_list_data = ubx_config_get_data(b, "trig_blocks");
if (trig_list_data != 0) {
inf->trig_list = (struct ptrig_config*)trig_list_data->data;
inf->trig_list_len = 2u; //(unsigned int)trig_list_data->len;
inf->trig_list_len = (unsigned int)trig_list_data->len;
printf("motion_coordinator: has %i blocks thet are beeind coordinated.", inf->trig_list_len);
} else {
ret=-1;
Expand Down

0 comments on commit d22020a

Please sign in to comment.