This is an automated email from the ASF dual-hosted git repository. xiaoxiang pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/nuttx.git
The following commit(s) were added to refs/heads/master by this push: new fbdd246878 esp32: Fix maximum I2C FIFO size (now SSD1306 will work) fbdd246878 is described below commit fbdd246878169481dac57a42b27cfde46cb1f3b3 Author: Alan Carvalho de Assis <acas...@gmail.com> AuthorDate: Thu Dec 8 11:43:11 2022 -0300 esp32: Fix maximum I2C FIFO size (now SSD1306 will work) --- arch/xtensa/src/esp32/esp32_i2c.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/xtensa/src/esp32/esp32_i2c.c b/arch/xtensa/src/esp32/esp32_i2c.c index 9680daf4c0..889bf9ec38 100644 --- a/arch/xtensa/src/esp32/esp32_i2c.c +++ b/arch/xtensa/src/esp32/esp32_i2c.c @@ -84,7 +84,7 @@ /* Default option */ -#define I2C_FIFO_SIZE (255) +#define I2C_FIFO_SIZE (32) #define I2C_FILTER_CYC_NUM_DEF (7)