Skip to content

Commit

Permalink
shell: sensor: fix Get command using channel specifiers
Browse files Browse the repository at this point in the history
Re-establishes the Shell functionality of sensor get command.

Signed-off-by: Luis Ubieda <[email protected]>
  • Loading branch information
ubieda committed May 9, 2024
1 parent 0e684a0 commit 263ee59
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions drivers/sensor/sensor_shell.c
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,6 @@ void sensor_shell_processing_callback(int result, uint8_t *buf, uint32_t buf_len
uint32_t fit = 0;
size_t base_size;
size_t frame_size;
size_t channel_idx = 0;
uint16_t frame_count;

/* Channels with multi-axis equivalents are skipped */
Expand Down Expand Up @@ -504,7 +503,7 @@ void sensor_shell_processing_callback(int result, uint8_t *buf, uint32_t buf_len
PRIsensor_q31_data_arg(*data, 0));
}
}
++channel_idx;
++ch.chan_idx;
}
}
}
Expand Down

0 comments on commit 263ee59

Please sign in to comment.