Skip to content
This repository has been archived by the owner on Nov 11, 2024. It is now read-only.

Commit

Permalink
Zephyr DTS fix for GNSS: correct default I2C address.
Browse files Browse the repository at this point in the history
The default I2C address in the Zephyr binding files, used when the I2C device configuration is being brought in from a `.dts` or `.overlay` file, was set to 42 (i.e. decimal 42), not the correct 0x42 (i.e. hex 42).

D'oh.

Now fixed.
  • Loading branch information
RobMeades committed Feb 9, 2024
1 parent ed16997 commit 980e327
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ properties:
# i2cAddress
i2c-address:
type: int
default: 42
default: 0x42
description: "The I2C address of the GNSS device, required if the GNSS device is connected via I2C and its I2C address is not the default value of 42."
# indication that we're connected to UART 2 on the GNSS device
gnss-uart2:
Expand Down

0 comments on commit 980e327

Please sign in to comment.