nopnop2002
nopnop2002
This appears to be happening with the llcc68_audio project. Please check if the same phenomenon occurs by following the steps below. ``` git clone https://github.com/nopnop2002/esp-idf-sx126x cd esp-idf-sx126x/basic/ idf.py set-target {esp32/esp32s2/esp32s3/esp32c2/esp32c3/esp32c6}...
This is my logging. ``` I (967) ILI9341: Your TFT is ILI9341 I (967) ILI9341: Screen width:240 I (967) ILI9341: Screen height:320 I (1267) LCD_COM: _adc_yp=0 _adc_xm=1073447984 I (1267) LCD_COM:...
>The problem was that, at least for my devboard (a generic esp32 with 38 GPIO pins) these pins are input only which makes them impossible to use for LCD_WR /...
First, thanks for providing a clear diagram. >Is this what you mean by that? Yes. That right. >This is my current working configuration:  This is a new discovery for...
>That said I've run into some issues trying to fix this. >Namely, when trying to use the correct pins for ADC1 as stated in this table from the README. What...
``` LCD-WR(Y+) ----+---- Gpio32(for Digital Output) +---- Gpio32(for Analog Input) LCD-RS(X-) ----+---- Gpio33(for Digital Output) +---- Gpio33(for Analog Input) ``` I found that this configuration (using the same port for...
Thank you for the report. Where is DEMO_UVC_XFER_BUFFER_SIZE define used? I did grep but couldn't find it. ``` $ cd esp-idf-video-streaming $ grep -rn "DEMO_UVC_XFER_BUFFER_SIZE" * ```
>From where does this limitation come from: I based it on [this](https://github.com/espressif/esp-idf/tree/master/examples/peripherals/usb/host/uvc) official example. These are listed in the Known Limitations section of this document. >Is there a way to...