Skip to content

Commit

Permalink
fix comment sign to c
Browse files Browse the repository at this point in the history
  • Loading branch information
RoboSchmied committed Mar 7, 2024
1 parent 66d9432 commit a006247
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/i2cspi.c
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ static int i2cdetect(int argc, char **argv, bool script_mode) {
unsigned char i2c_addr;

printf(" 0 1 2 3 4 5 6 7 8 9 a b c d e f\n");
i2c_addr = 0xff; # will be 0x00 after first increment
i2c_addr = 0xff; // will be 0x00 after first increment
do {
++i2c_addr;
int fd = prepare_i2c_sensor(i2c_addr);
Expand Down

0 comments on commit a006247

Please sign in to comment.