GSoC 2025

2025-01-15 Thread Tomek CEDRO
Google Summer of Code 2025 is coming, we already can and should register ideas for NuttX :-) https://community.apache.org/gsoc/ -- CeDeROM, SQ7MHZ, http://www.tomek.cedro.info

Re: Assistance Needed with Adding a Low Power UART on ESP32C6 Project

2025-01-15 Thread Alan C. Assis
Ohh, I never tested it on ESP32C6, but at least on ESP32C3 and ESP32S3 it was working fine. Maybe someone from Espressif can help here. BR, Alan On Wed, Jan 15, 2025 at 1:11 PM Felipe Moura Oliveira wrote: > Hello Alan, > > Thank you very much for talk to me about usbconsole. It will solve my

Re: Assistance Needed with Adding a Low Power UART on ESP32C6 Project

2025-01-15 Thread Felipe Moura Oliveira
Hello Alan, Thank you very much for talk to me about usbconsole. It will solve my project requirement. Unfortunately, at least in the master version, the console is stuck when data is sent from pc to esp32c6. I will check it better. Type [C-a] [C-h] to see available commands Terminal ready NSH)

Re: Assistance Needed with Adding a Low Power UART on ESP32C6 Project

2025-01-15 Thread Alan C. Assis
Hi Felipe, If you are using one of these two UART as serial console (to NSH), then you can see it using the USB Serial/JTAG interface: https://docs.espressif.com/projects/esp-idf/en/stable/esp32c6/api-guides/usb-serial-jtag-console.html This way you will have two real serials available to your p

Re: Assistance Needed with Adding a Low Power UART on ESP32C6 Project

2025-01-15 Thread Eren Terzioğlu
Hello Felipe, If I remember correctly the version of esp-hal-3rdparty that we are using does not support LP peripherals or at least lp_uart. We need to update it first and then it is possible to implement it. It might be the reason why you did not find related gpio idx value. You can check init

Re: Assistance Needed with Adding a Low Power UART on ESP32C6 Project

2025-01-15 Thread Felipe Moura Oliveira
Hello Eren. Table 7-2 from https://www.espressif.com/sites/default/files/documentation/esp32-c6_technical_reference_manual_en.pdf show relation between IDX and peripherals, but there are only 2 UARTs available, it doesn't talk about 3rd uart. I will check more about this. Will be good to add more

Re: Assistance Needed with Adding a Low Power UART on ESP32C6 Project

2025-01-15 Thread Felipe Moura Oliveira
Hello Eren. Thanks for your support. I cannot find a relation with values of IDX in the technical reference. Also, looking at the use of the function esp_gpio_matrix_out in the idf, the approach there is different. Do you know how I can find the right IDX for LP_UART? LP_UART is available in idf

Re: Assistance Needed with Adding a Low Power UART on ESP32C6 Project

2025-01-15 Thread Eren Terzioğlu
Hi, U1TXD_OUT_IDX and similar idx variables represent signal indexes which are used to route related peripheral output to the gpio. After routing the correct signal to gpio pin, you can access the related peripheral from gpio pin. Best Regards From: Felipe Moura