As of ESP-IDF V6, this item has been moved to Component config > ESP-STDOUT.I have same problem under linux mint with the version 6.02
Search found 359 matches
- Fri Jul 24, 2026 11:42 pm
- Forum: General Discussion
- Topic: error in nvsconsole exemple on esp32-c6
- Replies: 6
- Views: 60
Re: error in nvsconsole exemple on esp32-c6
- Fri Jul 24, 2026 6:50 am
- Forum: ESP-IDF
- Topic: Need help with camera and screen project
- Replies: 6
- Views: 96
Re: Need help with camera and screen project
To begin with, why not try stopping the downscaling from 320x240 to 240x180?
I haven't used `esp_lcd_panel_draw_bitmap` myself, but I believe the following code will correctly display a specific part of the camera image.
while (1) {
camera_fb_t *fb = esp_camera_fb_get();
if (!fb) { vTaskDelay ...
I haven't used `esp_lcd_panel_draw_bitmap` myself, but I believe the following code will correctly display a specific part of the camera image.
while (1) {
camera_fb_t *fb = esp_camera_fb_get();
if (!fb) { vTaskDelay ...
- Fri Jul 24, 2026 4:16 am
- Forum: General Discussion
- Topic: error in nvsconsole exemple on esp32-c6
- Replies: 6
- Views: 60
- Mon Jul 20, 2026 2:48 am
- Forum: ESP-IDF
- Topic: Need help with camera and screen project
- Replies: 6
- Views: 96
Re: Need help with camera and screen project
Is there a possibility that R and B are swapped?
uint32_t r = ((p0 >> 11) & 0x1F) + ((p1 >> 11) & 0x1F)
+ ((p2 >> 11) & 0x1F) + ((p3 >> 11) & 0x1F);
uint32_t g = ((p0 >> 5) & 0x3F) + ((p1 >> 5) & 0x3F)
+ ((p2 >> 5) & 0x3F) + ((p3 >> 5) & 0x3F);
uint32_t bl = (p0 & 0x1F) + (p1 & 0x1F)
+ (p2 ...
uint32_t r = ((p0 >> 11) & 0x1F) + ((p1 >> 11) & 0x1F)
+ ((p2 >> 11) & 0x1F) + ((p3 >> 11) & 0x1F);
uint32_t g = ((p0 >> 5) & 0x3F) + ((p1 >> 5) & 0x3F)
+ ((p2 >> 5) & 0x3F) + ((p3 >> 5) & 0x3F);
uint32_t bl = (p0 & 0x1F) + (p1 & 0x1F)
+ (p2 ...
- Sun Jul 19, 2026 12:36 pm
- Forum: ESP-IDF
- Topic: Need help with camera and screen project
- Replies: 6
- Views: 96
Re: Need help with camera and screen project
Code: Select all
.pixel_format = PIXFORMAT_RGB565,
You can use JPEG as the camera's capture format.
Here is an example of displaying JPEGs on the ST7789.
https://github.com/nopnop2002/esp-idf-st7789
- Fri Jul 17, 2026 12:16 am
- Forum: ESP-IDF
- Topic: Need help with semaphore handling
- Replies: 1
- Views: 52
Re: Need help with semaphore handling
It seems you are confusing semaphores and mutexes.
To use a semaphore, you initialize it with `xSemaphoreCreateBinary()`, whereas for a mutex, you use `xSemaphoreCreateMutex()`; however, the semaphore values differ after initialization.
A mutex has an initial value of 1, and you must "take" it ...
To use a semaphore, you initialize it with `xSemaphoreCreateBinary()`, whereas for a mutex, you use `xSemaphoreCreateMutex()`; however, the semaphore values differ after initialization.
A mutex has an initial value of 1, and you must "take" it ...
- Wed Jul 15, 2026 12:25 pm
- Forum: General Discussion
- Topic: ESP32-P4 chip availability ?
- Replies: 4
- Views: 126
Re: ESP32-P4 chip availability ?
P4NRW32X has chip revision V3.
- Wed Jul 15, 2026 11:28 am
- Forum: General Discussion
- Topic: ESP32-P4 chip availability ?
- Replies: 4
- Views: 126
Re: ESP32-P4 chip availability ?
P4NRW32 has already reached EOL.
P4NRW32X is currently in mass production.
https://products.espressif.com/#/produc ... 32-P4%22]}
P4NRW32X is currently in mass production.
https://products.espressif.com/#/produc ... 32-P4%22]}
- Tue Jul 14, 2026 9:44 pm
- Forum: General Discussion
- Topic: ESP32-S3 + ILI9488 (SPI) stays white with LovyanGFX, TFT_eSPI crashes inside tft.init()
- Replies: 1
- Views: 28
Re: ESP32-S3 + ILI9488 (SPI) stays white with LovyanGFX, TFT_eSPI crashes inside tft.init()
You can determine whether it is an ILI9488 by reading the D3 register.Is it possible that this module is actually using another controller instead of ILI9488 even though it is sold as an ILI9488 display?
- Tue Jul 14, 2026 12:13 pm
- Forum: General Discussion
- Topic: ESP32 - ESP32 CAN communication issue using SN65HVD230 transceiver
- Replies: 1
- Views: 36