Search found 11 matches

by user91829
Mon Nov 21, 2022 12:13 pm
Forum: ESP-IDF
Topic: Advice for encryption setting
Replies: 3
Views: 1825

Re: Advice for encryption setting

ESP_Mahavir wrote:
Thu Nov 17, 2022 2:18 pm
Please see discussion from https://esp32.com/viewtopic.php?f=13&t=30474
I just saw that. It's still not clear to me how I should configure idf for that.
Or am I supposed to directly deal with the efuses ?
by user91829
Wed Nov 16, 2022 1:08 pm
Forum: ESP-IDF
Topic: Advice for encryption setting
Replies: 3
Views: 1825

Advice for encryption setting

The intent is to have the ESP32s encrypted with pregenerated keys in Release Mode but still have the ability to flash it over serial. The `encrypted-app-flash` command demands that CONFIG_SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT should be enabled. Is it possible to make that work ? Alternatively, wh...
by user91829
Mon Jul 25, 2022 2:18 pm
Forum: ESP-IDF
Topic: Limit Webserver-access in APSTA-Mode
Replies: 2
Views: 1407

Re: Limit Webserver-access in APSTA-Mode

I believe you can check the ip address of the client and respond likewise.
by user91829
Mon Jul 18, 2022 4:58 pm
Forum: ESP-IDF
Topic: How to change compilation flags for managed components.
Replies: 1
Views: 1409

How to change compilation flags for managed components.

I am trying to use latest espressif/esp-dsp with latest idf, but can't compile because of warning. I tried idf_build_set_property(COMPILE_OPTIONS "-Wno-error" APPEND) but it does not seem to affect the dsp component. /project/managed_components/espressif__esp-dsp/modules/math/sqrt/float/dsps_sqrt_f3...
by user91829
Wed Apr 20, 2022 12:59 pm
Forum: Hardware
Topic: ESP32 S3 Status/Datasheet
Replies: 2
Views: 1720

Re: ESP32 S3 Status/Datasheet

Additionally, is S3 WROOM 2 a separate product line, or like 2nd generation of S3 WROOM ?
by user91829
Wed Apr 20, 2022 12:51 pm
Forum: Hardware
Topic: ESP32 S3 Status/Datasheet
Replies: 2
Views: 1720

ESP32 S3 Status/Datasheet

Hi,
The ESP32 S3 seems to be in mass production according to the ESP Product Selector, but the datasheet still has "Preliminary" watermark on it. Is it safe to assume the preliminary datasheet is good for the mass production ESP32 S3 ?
by user91829
Wed Mar 23, 2022 11:51 am
Forum: ESP-IDF
Topic: WIFI_MODE_APSTA interface support for AP (BGN) and STA (LR)?
Replies: 6
Views: 5162

Re: WIFI_MODE_APSTA interface support for AP (BGN) and STA (LR)?

seraffimo wrote:
Mon Sep 27, 2021 7:19 pm
The example code does not setup an access point with a long range ESPNOW client. So no, does not work.
Did you figure it out? I am using IDF v4.4 and in the same situation.
by user91829
Mon Mar 21, 2022 9:27 pm
Forum: ESP-IDF
Topic: uart_set_baudrate sets incorrect baud rate
Replies: 1
Views: 1955

uart_set_baudrate sets incorrect baud rate

static QueueHandle_t uart0_queue; uart_config_t uart_config = { .baud_rate = 115200, .data_bits = UART_DATA_8_BITS, .parity = UART_PARITY_DISABLE, .stop_bits = UART_STOP_BITS_1, .flow_ctrl = UART_HW_FLOWCTRL_DISABLE }; // Install UART driver, and get the queue. uart_driver_install(UART_NUM_1, 1024,...
by user91829
Fri Mar 11, 2022 8:12 am
Forum: ESP-IDF
Topic: How to access the embedded ca bundle.
Replies: 6
Views: 5553

Re: How to access the embedded ca bundle.

I haven't checked the differences yet, but I found a different example at https://github.com/espressif/esp-idf/tr ... pos_client which works. Thanks again. This is more seamless than what I was planning upon.
by user91829
Thu Mar 10, 2022 6:16 pm
Forum: ESP-IDF
Topic: How to access the embedded ca bundle.
Replies: 6
Views: 5553

Re: How to access the embedded ca bundle.

Might not be helpful, as not a direct answer, but if you use the module in PPPos mode you can keep the TLS stack and certs all centralized in ESP firmware and don't have to worry about sending/duplicating certs in the GSM module. There is an example for this in the IDF, but I personally had to adap...