Search found 19 matches

by godzilla2
Tue Dec 20, 2022 10:19 am
Forum: General Discussion
Topic: Core dump:Guru Meditation Error: Core 0 panic'ed (Unhandled debug exception)
Replies: 3
Views: 5511

Re: Core dump:Guru Meditation Error: Core 0 panic'ed (Unhandled debug exception)

To add to the conversation, I got this error when I was doing a modulo by zero.

uint32_t n = 1024 % count; // if count is zero... Unhandled debug exception
by godzilla2
Wed Jun 08, 2022 3:32 am
Forum: ESP-IDF
Topic: spinlock on esp32s3
Replies: 7
Views: 5139

Re: spinlock on esp32s3

please see my newest update in: https://github.com/espressif/esp-idf/issues/9120
by godzilla2
Wed Jun 08, 2022 2:39 am
Forum: ESP-IDF
Topic: spinlock on esp32s3
Replies: 7
Views: 5139

Re: spinlock on esp32s3

found these:

#define PRO_CPUID (0xcdcd)
#define APP_CPUID (0xabab)
#define SPINLOCK_FREE 0xB33FFFFF
by godzilla2
Wed Jun 08, 2022 1:23 am
Forum: ESP-IDF
Topic: spinlock on esp32s3
Replies: 7
Views: 5139

Re: spinlock on esp32s3

Good catch!

Note: I do have heap & stack protection enabled with comprehensive & overall (strongest protection)

How would I know? I did not allocate this spinlock... I don't think

I've made a Github Issue: https://github.com/espressif/esp-idf/issues/9120
by godzilla2
Tue Jun 07, 2022 11:10 pm
Forum: ESP-IDF
Topic: spinlock on esp32s3
Replies: 7
Views: 5139

Re: spinlock on esp32s3

I am also hitting this issue. esp32s3 esp-idf 4.4.1 (Tue May 31 10:28:03) It does appear to be corruption: core_id: 43947 lock->owner: 3007315967 I used ESP_EARLY_LOGI to grab the values: if (core_id != lock->owner){ ESP_EARLY_LOGI("","core_id %u, lock->owner %u", core_id, lock->owner); } assert(cor...
by godzilla2
Tue Mar 29, 2022 9:30 pm
Forum: IDEs for ESP-IDF
Topic: IDE cannot detect the sdkconfig.h setting
Replies: 10
Views: 19299

Re: IDE cannot detect the sdkconfig.h setting

Appreciate your help, thanks for spotting that!! Your config file looks impressive. Taking a look at it.
by godzilla2
Tue Mar 29, 2022 3:31 am
Forum: IDEs for ESP-IDF
Topic: IDE cannot detect the sdkconfig.h setting
Replies: 10
Views: 19299

Re: IDE cannot detect the sdkconfig.h setting

I'm hitting this issue still. Edit: deleting compileCommands seems to have fixed it. { "configurations": [ { "name": "Mac", "includePath": [ "${workspaceFolder}/build/config", "${workspaceFolder}/../../esp-idf/components/nvs_flash/include", "${workspaceFolder}/../jamcorder_common", "${workspaceFolde...
by godzilla2
Fri Mar 25, 2022 2:55 am
Forum: General Discussion
Topic: ESP32 get bootloader version
Replies: 0
Views: 1299

ESP32 get bootloader version

Is there any way to get the bootloader version in ESP-IDF?

I'd want something that can be called in my App code and returns the ESP-IDF version that the bootloader was built with. i.e v4.3.1 etc


I've looked at this forum post.
viewtopic.php?t=7977
by godzilla2
Fri Nov 12, 2021 8:21 pm
Forum: ESP-IDF
Topic: Will ESP_IDF v4.4 be released soon?
Replies: 0
Views: 1334

Will ESP_IDF v4.4 be released soon?

Can someone update us on how v4.4 is going? Where is it in the development cycle?

Looking to switch my code base to ESP32-S3.
by godzilla2
Fri Sep 10, 2021 5:16 am
Forum: General Discussion
Topic: Despite REQUIRES console vfs, I still get "undefined reference to esp_vfs_dev_cdcacm_set_rx_line_endings"
Replies: 2
Views: 2493

Re: Despite REQUIRES console vfs, I still get "undefined reference to esp_vfs_dev_cdcacm_set_rx_line_endings"

Still debugging, but looks like I might want to use:

Code: Select all

esp_vfs_dev_uart_port_set_rx_line_endings
Looks like I accidentally copied my code from 'console_usb' instead of 'console'.