Search found 9007 matches

by ESP_Sprite
Tue Jun 08, 2021 4:50 am
Forum: ESP32 Arduino
Topic: WPA-2 Enterprise Connection Failure
Replies: 2
Views: 3705

Re: WPA-2 Enterprise Connection Failure

Suggest you decode that backtrace to figure out what went wrong... https://github.com/me-no-dev/EspExceptionDecoder
by ESP_Sprite
Mon Jun 07, 2021 2:37 pm
Forum: ESP-IDF
Topic: How to use ESP32 WROOM32E without FreeRTOS
Replies: 4
Views: 5457

Re: How to use ESP32 WROOM32E without FreeRTOS

Is there a reason why you want to do it? For various reasons, not having any FreeRTOS interaction on one core is harder than you might think; there may be other ways of solving your issue.
by ESP_Sprite
Mon Jun 07, 2021 2:45 am
Forum: ESP-IDF
Topic: espnow example in esp-idf/examples/wifi/espnow
Replies: 1
Views: 1751

Re: espnow example in esp-idf/examples/wifi/espnow

The infinite loop is here: while (xQueueReceive(s_example_espnow_queue, &evt, portMAX_DELAY) == pdTRUE) xQueueReceive will return pdTRUE if there's an event and pdFALSE if there is a timeout. However, as the timeout period is set to portMAX_DELAY, there will never be a timeout, and as such the loop ...
by ESP_Sprite
Mon Jun 07, 2021 2:38 am
Forum: ESP-IDF
Topic: Retrieving MAC address from ESP32S2
Replies: 2
Views: 9397

Re: Retrieving MAC address from ESP32S2

You're confusing arrays and pointers all over the code, and you're trying to print 6-byte mac addresses as an integer. Try something like this (untested, but should point you in the right direction): void print_mac(const unsigned char *mac) { printf("%02X:%02X:%02X:%02X:%02X:%02X", mac[0],mac[1],mac...
by ESP_Sprite
Sun Jun 06, 2021 2:22 am
Forum: ESP-IDF
Topic: St VL53L0X Api esp Layer
Replies: 8
Views: 5164

Re: St VL53L0X Api esp Layer

Glad you got it working!
by ESP_Sprite
Sat Jun 05, 2021 7:53 am
Forum: Hardware
Topic: esp with alexa issue
Replies: 1
Views: 1770

Re: esp with alexa issue

....what? I have problems parsing your post. It looks like English, but I can't make heads or tails out of it... Can you perhaps try again, but this time in a bit more ordered fashion? For example, state clearly what hardware you have, what software you are using, the steps you're taking, the outcom...
by ESP_Sprite
Sat Jun 05, 2021 7:49 am
Forum: General Discussion
Topic: Strange errors with TFT_eSPI
Replies: 4
Views: 3283

Re: Strange errors with TFT_eSPI

Still sounds like you're overwriting Drehmom[10], which is out of bounds of the array as you defined it. By changing the order, you're overwriting something else instead, which is not immediately obvious but will lead you to problems later.
by ESP_Sprite
Fri Jun 04, 2021 2:57 am
Forum: ESP-IDF
Topic: What do the x and v mean in various RTOS function names?
Replies: 4
Views: 3221

Re: What do the x and v mean in various RTOS function names?

Potentially to make it more obvious if you ignore a return value.
by ESP_Sprite
Fri Jun 04, 2021 2:55 am
Forum: Hardware
Topic: Want to help test ESP32C3 functionality?
Replies: 2
Views: 3230

Re: Want to help test ESP32C3 functionality?

FWIW, we still have some boards available, so feel free to mail if you're interested.
by ESP_Sprite
Thu Jun 03, 2021 2:53 am
Forum: ESP-IDF
Topic: St VL53L0X Api esp Layer
Replies: 8
Views: 5164

Re: St VL53L0X Api esp Layer

The way I have it is roughly this: static VL53L0X_Dev_t vl_dev; [...] i2c_port_t i2c_master_port = I2C_NUM_1; i2c_config_t conf={0}; conf.mode = I2C_MODE_MASTER; conf.sda_io_num = PIN_NUM_SDA; conf.sda_pullup_en = GPIO_PULLUP_DISABLE; conf.scl_io_num = PIN_NUM_SCL; conf.scl_pullup_en = GPIO_PULLUP_D...