eren-terzioglu opened a new pull request, #16807: URL: https://github.com/apache/nuttx/pull/16807
## Summary Fix build error when LP_I2C enabled on esp32c6 * bugix/risc-v/esp32c6: Fix build error of LP_I2C Fix build error of LP_I2C for esp32c6 ## Impact <!-- Please fill the following sections with YES/NO and provide a brief explanation --> Impact on user: Yes, it fixes build error when using LP_I2C Impact on build: Yes, fixes error on build Impact on hardware: Yes, it makes LP_I2C usable Impact on documentation: No, there is not a new feature Impact on security: No <!-- Does it impact NuttX's security? --> Impact on compatibility: No <!-- Does it impact compatibility between previous and current versions? Is this a breaking change? --> ## Testing <!-- Please provide all the testing procedure. Consider that upstream reviewers should be able to reproduce the same testing performed internally --> ### Building <!-- Provide how to build the test for each SoC being tested --> `esp32c6-devkitc:i2c` config used with `CONFIG_ESPRESSIF_LP_I2C0` option enabled. Command used to build: ``` make -j distclean && ./tools/configure.sh esp32c6-devkitc:i2c && kconfig-tweak -e CONFIG_ESPRESSIF_LP_I2C0 && make olddefconfig && make -j && make download ESPTOOL_PORT=/dev/ttyUSB0 ESPTOOL_BAUD=921600 ESPTOOL_BINDIR=../esp-bin ``` It should build fine after change ### Running <!-- Provide how to run the test for each SoC being tested --> `ls /dev` command used to check everything is implemented fine ### Results <!-- Provide tests' results and runtime logs --> ``` nsh> ls /dev /dev: console i2c0 i2c2 null random ttyS0 zero ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@nuttx.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org