Search found 15 matches

by Xylopyrographer
Thu Apr 25, 2024 6:09 am
Forum: ESP32 Arduino
Topic: HTTPClient Raw Mode
Replies: 1
Views: 558

HTTPClient Raw Mode

Is there a way when using the HTTPClient library to dump to the serial monitor the: actual data sent to a host via a GET raw data received in response to a GET before it is handled by the HTTPClient library? Setting the Core Debug Level to "Verbose" kind of does the second item but it is sent during...
by Xylopyrographer
Tue Jan 23, 2024 6:12 pm
Forum: Hardware
Topic: ESP32 Dev Board LED Connection?
Replies: 5
Views: 11165

Re: ESP32 Dev Board LED Connection?

When powered up, the ESP sends a bunch of information out to the USB port via UART0, which is connected to the Serial/USB bridge chip. On this particular board, the designers chose to put an LED on the TXD line of UART0, I suppose to let the user know when the ESP32 is sending data. This was confirm...
by Xylopyrographer
Sat May 27, 2023 3:00 pm
Forum: ESP-IDF
Topic: RMT Periperhal rmt translator set context?
Replies: 2
Views: 1223

Re: RMT Periperhal rmt translator set context?

Thank-you for the awesome answer. Very much appreciated. Have a great one :) .
by Xylopyrographer
Fri May 26, 2023 10:52 pm
Forum: ESP-IDF
Topic: RMT Periperhal rmt translator set context?
Replies: 2
Views: 1223

RMT Periperhal rmt translator set context?

Can anyone explain, for the RMT peripheral, what the function:

rmt_translator_set_context()

does?
  1. It is needed to transmit data using the RMT controller?
  2. How does it interact with the other RMT functions and structures?
Many thanks.
by Xylopyrographer
Fri Jan 28, 2022 6:17 pm
Forum: ESP-IDF
Topic: SPI CS Lines - Which GPIO Pins to Use?
Replies: 0
Views: 2333

SPI CS Lines - Which GPIO Pins to Use?

Seeking clarification on which GPIO pins to use for CS lines when multiple devices are connected to an SPI bus using the SPI Master driver. From this page in the docs: https://docs.espressif.com/projects/esp-idf/en/v3.3.6/api-reference/peripherals/spi_master.html#_CPPv417spi_host_device_t It states:...
by Xylopyrographer
Fri Dec 17, 2021 1:58 am
Forum: Hardware
Topic: ESP32 Dev Board LED Connection?
Replies: 5
Views: 11165

Re: ESP32 Dev Board LED Connection?

Ah. There you go. Running the basic Blink program driving IO1 does indeed control the LED.

Of course that makes the serial monitor port kinda useless... Unless I flash the LED at 115200 baud 😄!

Thanks Felix.
by Xylopyrographer
Fri Dec 17, 2021 12:45 am
Forum: Hardware
Topic: ESP32 Dev Board LED Connection?
Replies: 5
Views: 11165

ESP32 Dev Board LED Connection?

I've picked up a number of 38 pin ESP32 dev boards from AliExpress & Amazon. The physical layout of the boards are identical. Near the header pin marked G2, there is a single red LED. Does anyone know, is this LED connected to a GPIO pin and if so, which one? The LED flickers initially during power-...
by Xylopyrographer
Tue Nov 23, 2021 12:44 am
Forum: ESP-IDF
Topic: [IDF-4348] ESP-IDF Fails to Install
Replies: 4
Views: 6395

Re: [IDF-4348] ESP-IDF Fails to Install

Appreciate the help. Thanks. Running through the "Get Started" steps at: https://docs.espressif.com/projects/esp-idf/en/v4.3.1/esp32/get-started/index.html#step-4-set-up-the-environment-variables At Step 8 Build the Project, after running: ~/esp/hello_world % idf.py build things proceeded until the ...
by Xylopyrographer
Thu Nov 18, 2021 6:52 pm
Forum: ESP-IDF
Topic: [IDF-4348] ESP-IDF Fails to Install
Replies: 4
Views: 6395

Re: ESP-IDF Fails to Install

Many thanks Roland. The reply is appreciated. unset python didn't work, had to unalias python to make it go. As background, before installing ESP-IDF, python3 was installed using Homebrew -- a fairly common method. Homebrew sets a few alias' as part of that install. Wondering -- since the export.sh ...
by Xylopyrographer
Thu Nov 18, 2021 12:06 am
Forum: ESP-IDF
Topic: [IDF-4348] ESP-IDF Fails to Install
Replies: 4
Views: 6395

[IDF-4348] ESP-IDF Fails to Install

Trying to install the ESP-IDF on macOS Big Sur Version 11.6.1 (20G224) Following the instructions at: https://docs.espressif.com/projects/esp-idf/en/v4.3.1/esp32/get-started/index.html At Step 4, seems to be a path error that is not resolved by the export.sh script. The install.sh script runs fine, ...