Search found 64 matches

by kurtzweber
Wed Jan 13, 2021 9:49 am
Forum: ESP32 Arduino
Topic: esp32s2, SPI interfaces (VSPI, HSPI, FSPI...)?
Replies: 4
Views: 10086

esp32s2, SPI interfaces (VSPI, HSPI, FSPI...)?

Hi! I'm working on a project based on an esp32s2 board and I need to interface with an SD card, using the SPI peripheral. The datasheet says: ESP32-S2 family features four SPI interfaces (SPI0, SPI1, SPI2 and SPI3). SPI0 and SPI1 can only be configured to operate in SPI memory mode; SPI2 can be conf...
by kurtzweber
Mon Nov 02, 2020 7:47 am
Forum: ESP32 Arduino
Topic: DFU with Arduino and esp32s2
Replies: 3
Views: 3771

Re: DFU with Arduino and esp32s2

strange, if I run the same command in a python shell it works fine: C:\Users\kw\esp-idf>python Python 2.7.17 (v2.7.17:c2f86d86e6, Oct 19 2019, 20:49:36) [MSC v.1500 32 bit (Intel)] on win32 Type "help", "copyright", "credits" or "license" for more information. >>> from future.utils import iteritems ...
by kurtzweber
Mon Nov 02, 2020 7:44 am
Forum: ESP32 Arduino
Topic: DFU with Arduino and esp32s2
Replies: 3
Views: 3771

Re: DFU with Arduino and esp32s2

Thanks for your reply! It sounds good... the only problem is that I can't run the mkdfu.py utility on my Windows laptop: C:\Users\kw\esp-idf>mkdfu.py Traceback (most recent call last): File "C:\Users\kw\esp-idf\tools\mkdfu.py", line 25, in <module> from future.utils import iteritems ImportError: No ...
by kurtzweber
Sun Nov 01, 2020 2:46 pm
Forum: ESP32 Arduino
Topic: DFU with Arduino and esp32s2
Replies: 3
Views: 3771

DFU with Arduino and esp32s2

Hi! I'd like to use DFU mechanism: https://docs.espressif.com/projects/esp-idf/en/latest/esp32s2/api-guides/dfu.html to upload my sketches on a devboard based on the esp32s2 chip. At the moment it seems that a specific menu choice is not available, but is it there a way to do it manually? For what I...
by kurtzweber
Mon May 14, 2018 8:28 pm
Forum: General Discussion
Topic: [VIDEO] Freshen - device management for ESP32
Replies: 4
Views: 7018

Re: [VIDEO] Freshen - device management for ESP32

Hi can't compile the library (freshen.h) with the latest esp-idf... In file included from C:/msys32/home/kw/tutorial/freshen/main/main.c:11:0: C:/msys32/home/kw/tutorial/freshen/main/freshen.h:1644:15: error: field 'conn' has incomplete type struct conn conn; ^ C:/msys32/home/kw/tutorial/freshen/mai...
by kurtzweber
Mon Mar 26, 2018 3:17 pm
Forum: General Discussion
Topic: No esp_ble_gap_config_scan_rsp_data() ?
Replies: 4
Views: 6562

Re: No esp_ble_gap_config_scan_rsp_data() ?

thanks again, it works fine!
by kurtzweber
Mon Mar 26, 2018 6:44 am
Forum: General Discussion
Topic: No esp_ble_gap_config_scan_rsp_data() ?
Replies: 4
Views: 6562

Re: No esp_ble_gap_config_scan_rsp_data() ?

Hi

thanks for your response.
How can I pass the two structs to the driver? I have to call the function esp_ble_gap_config_adv_data(&adv_data) twice?
by kurtzweber
Sun Mar 25, 2018 2:02 pm
Forum: General Discussion
Topic: No esp_ble_gap_config_scan_rsp_data() ?
Replies: 4
Views: 6562

No esp_ble_gap_config_scan_rsp_data() ?

Hi from what I could find, it seems that a function to set the scan response data is missing in the framework. We do have the corresponding event: ESP_GAP_BLE_SCAN_RSP_DATA_SET_COMPLETE_EVT and we also have a member (set_scan_rsp) in the esp_ble_adv_data_t struct that it seems to suggest that you ca...
by kurtzweber
Thu Jan 25, 2018 12:54 pm
Forum: General Discussion
Topic: ADC calibration with VREF
Replies: 5
Views: 28632

Re: ADC calibration with VREF

Undestood, thanks!
by kurtzweber
Thu Jan 25, 2018 12:17 pm
Forum: General Discussion
Topic: ADC calibration with VREF
Replies: 5
Views: 28632

Re: ADC calibration with VREF

Hi thanks for your reply... I was able indeed to use the read value in: esp_adc_cal_get_characteristics(V_REF, ADC_ATTEN_DB_11, ADC_WIDTH_BIT_12, &characteristics); but this method assumes you measure the voltage for each board you program and adapt the code accordingly... I was looking for a "softw...