I'm using an Orange Pi 5 Plus 16GB SBC, with Armbian image (https://dl.armbian.com/orangepi5-plus/Bookworm_current_cinnamon-backported-mesa) which uses Kernel 6.12. I am trying to get a BME280 I2C sensor attached to the following pins of the 40 pins; 1 (3.3v), 3 (GPIO0C0), 5 (GPIO0B7), and 6 (GND). The BME280 sensor has the VIN wired to 3.3v (pin 1), SDA wired to SDA (pin 3), SCL wired to SCL (pin 5), and GND to GND (pin 6). The device should use address 0x76, but isn't listed under the four I2C buses found in /dev.
This configuration worked fine when using the stock OrangePi 5 Plus Debian Bookworm image, but does not have I2C2 listed as a device under /dev under Armbian image listed above.
My armbianEnv.txt is:
verbosity=1
bootlogo=true
console=both
overlay_prefix=rockchip-rk3588
fdtfile=rockchip/rk3588-orangepi-5-plus.dtb
rootdev=UUID=3cbd3c35-190b-4cc5-8db3-4334fa84ccbd
rootfstype=ext4
overlays=rockchip-rk3588-i2c8-m2
usbstoragequirks=0x2537:0x1066:u,0x2537:0x1068:u
I have attached 4 images (screenshots) with the following captions
i2c.png - List of I2C buses and addresses (Armbian Image)
i2c_2.png - List of DTBs (Armbian Image)
i2c_3.png - List of DTBOs aka overlays (Armbian Image)
i2c_opi2.png - List of I2C buses and addresses of I2C2 (Orange Pi Debian 12 Image)
Why isn't I2C2 found in /dev of Armbian image?