Search found 2375 matches

by chegewara
Fri Nov 22, 2024 4:19 am
Forum: ESP IoT Solution
Topic: How to draw in the EK79007 for the esp32-p4 dev kit
Replies: 3
Views: 737

Re: How to draw in the EK79007 for the esp32-p4 dev kit

Then i dont know. Maybe display is not init correctly?
by chegewara
Thu Nov 21, 2024 9:11 pm
Forum: ESP-IDF
Topic: CMakeLists.txt Questions - Errors & Components
Replies: 11
Views: 1486

Re: CMakeLists.txt Questions - Errors & Components

Hi,
sdkconfig.h is created from all Kconfig files.
In some Kconfig you can find BRIDGE_EXTERNAL_NETIF_STATION option.
by chegewara
Thu Nov 21, 2024 9:02 pm
Forum: General Discussion
Topic: Suggestion for Setting up a Mesh Network
Replies: 4
Views: 404

Re: Suggestion for Setting up a Mesh Network

No, we need to scale the solution to 40K nodes in a network (with each node 1m apart) I think you may have many issues with such designed mesh network. - it will be very noisy and may be not reliable - since you can have "only" 32k unicast addresses you will need at least 2 app/net keys and probabl...
by chegewara
Thu Nov 21, 2024 8:55 pm
Forum: Hardware
Topic: ESP32-P4 MIPI DSI commands for initializing
Replies: 3
Views: 814

Re: ESP32-P4 MIPI DSI commands for initializing

This is another driver which may be helpful. https://github.com/espressif/esp-bsp/blob/master/components/lcd/esp_lcd_lt8912b/esp_lcd_lt8912b.c It is MIPI to HDMI chip and i see it a good source of code to learn. Yes, the mipi is not documented yet, but it is fairly new interface on esp32, so we have...
by chegewara
Wed Nov 20, 2024 6:48 am
Forum: ESP-IDF
Topic: esp-tls: couldn't get hostname for :example.com: getaddrinfo() returns 202, addrinfo=0x0
Replies: 4
Views: 6754

Re: esp-tls: couldn't get hostname for :example.com: getaddrinfo() returns 202, addrinfo=0x0

There is not enough data to help with the issue.
Is the connection success before you call "getaddrinfo"? And by success, i mean you get IP address from DNS or set static IP after connecting to router.
by chegewara
Wed Nov 20, 2024 6:29 am
Forum: ESP-IDF
Topic: How to address a node in ESP BLE Mesh
Replies: 2
Views: 636

Re: How to address a node in ESP BLE Mesh

There is few types of ble address, most important and mandatory unicast address, which is 16 bit and has nothing to do with mac address.
Usually it is assigned by provisioner, although it can be assigned by manufacturer (hardcoded address), but it is not recommended.
by chegewara
Wed Nov 20, 2024 6:18 am
Forum: ESP-IDF
Topic: CMakeLists.txt Questions - Errors & Components
Replies: 11
Views: 1486

Re: CMakeLists.txt Questions - Errors & Components

There is few ways to add components in esp-idf, but most basic is to create folder "components" in your projects and put your components into it. Like here:

https://github.com/espressif/esp-iot-br ... components

All folders inside are components.
by chegewara
Wed Nov 20, 2024 6:15 am
Forum: ESP IoT Solution
Topic: How to draw in the EK79007 for the esp32-p4 dev kit
Replies: 3
Views: 737

Re: How to draw in the EK79007 for the esp32-p4 dev kit

Code: Select all

    for (size_t i = 0; i < width * height; i++)
    {
        fb_buf[i] = color;
    }

    ESP_ERROR_CHECK(esp_lcd_panel_draw_bitmap(panel, 0, 0, width, height, fb_buf));