Search found 163 matches

by DrMickeyLauer
Fri Sep 06, 2024 11:21 am
Forum: ESP-IDF
Topic: NVS Key values pairs
Replies: 8
Views: 1102

Re: NVS Key values pairs

ESP_Sprite wrote:
Fri Sep 06, 2024 10:13 am
atique wrote:
Fri Sep 06, 2024 8:16 am
while my partition size is just 0x1000.
That may be your problem: NVS needs at least 3 sectors and you're only giving it one.
Is this requirement documented?
by DrMickeyLauer
Fri Sep 06, 2024 11:20 am
Forum: ESP-IDF
Topic: VS CODE: use one source code for different devices (e.g. ESP32 WROOM, ESP32C6)
Replies: 3
Views: 1168

Re: VS CODE: use one source code for different devices (e.g. ESP32 WROOM, ESP32C6)

Care to elaborate? I'm always curious about ways to solve this problem. Conceptually, I like how platformio solves it, however I don't like the additional non-standard abstractions it comes with. I'm using different board directories where each of it has a dedicated `sdkconfig`, while the code direc...
by DrMickeyLauer
Thu Sep 05, 2024 1:57 pm
Forum: ESP-IDF
Topic: Netif traffic indicator
Replies: 5
Views: 1287

Re: Netif traffic indicator

I don't know. The PR has been merged back in April, so it's in master by now, but I don't know when they will backport it to the next release. Perhaps try asking on https://github.com/espressif/esp-idf/pull/13348
by DrMickeyLauer
Fri Jun 28, 2024 9:03 am
Forum: IDEs for ESP-IDF
Topic: ESP-IDF extension for Visual Studio Code 1.8.0
Replies: 1
Views: 3362

Re: ESP-IDF extension for Visual Studio Code 1.8.0

Thanks for the continued development of that. I think it's the best "middle ground abstraction" IDE.
by DrMickeyLauer
Fri Jun 28, 2024 9:02 am
Forum: General Discussion
Topic: whether ESP32-S3 support Apple homekit SDK?
Replies: 2
Views: 931

Re: whether ESP32-S3 support Apple homekit SDK?

Technically yes, you can talk WiFi or BLE and implement an Apple HomeKit appliance with the ESP32-S3. Many manufacturers did that, e.g. have a look at the Tasmota firmware.

If you want to create a commercial device, you need to get the Apple certification though.
by DrMickeyLauer
Fri Jun 28, 2024 8:57 am
Forum: ESP-IDF
Topic: NimBLE throughput example results don't improve when using 2M PHY
Replies: 3
Views: 939

Re: NimBLE throughput example results don't improve when using 2M PHY

BLE throughput is a factor of * the selected PHY * data length extension (DLE) * connection parameters * payload abstraction level If you want to optimize everything, chose the 2M PHY, enable DLE, set connection params to optimised values, and use L2CAP instead of GATT. Then you will get over 60KB/s...
by DrMickeyLauer
Wed Jun 26, 2024 4:05 pm
Forum: Hardware
Topic: ESP32-C6 - USB Host Support / UHCI Controller
Replies: 2
Views: 1400

Re: ESP32-S6 - USB Host Support / UHCI Controller

Bummer… for a moment I thought the S6 would have been announced…
by DrMickeyLauer
Tue Jun 25, 2024 4:30 pm
Forum: General Discussion
Topic: Help Needed: J1939 Protocol Integration on ESP32 with FreeRTOS
Replies: 1
Views: 1506

Re: Help Needed: J1939 Protocol Integration on ESP32 with FreeRTOS

I don't think you will find anything ready-made. That said, given that J1939 is a simple protocol on top of CAN messages, I'd advise starting w/ a CAN example from ESP-IDF and then adding pretty much the same as you did on your PIC.
by DrMickeyLauer
Fri Jun 21, 2024 4:07 pm
Forum: Hardware
Topic: sdspi_transaction: command not supported
Replies: 2
Views: 1402

Re: sdspi_transaction: command not supported

Great, thanks for confirming!
by DrMickeyLauer
Thu Jun 20, 2024 12:47 pm
Forum: Hardware
Topic: sdspi_transaction: command not supported
Replies: 2
Views: 1402

sdspi_transaction: command not supported

For the next generation of our hardware, we want to include an SD card in parallel w/ the W5500. I connected a sample via SPI and initialized it as per esp_vfs_fat_sdspi_mount . Reading seems to work fine, although I get warnings about not supported commands. esp32s3> sd start I (10708) sdspi_transa...