Search found 5 matches

by MilesWang
Wed Nov 16, 2022 2:56 am
Forum: ESP IoT Solution 中文讨论版
Topic: esp32s3使用ULP-­RISC-­V个别芯片出现COCPU crash唤醒
Replies: 0
Views: 2394

esp32s3使用ULP-­RISC-­V个别芯片出现COCPU crash唤醒

模组: ESP32-S3-MINI-1U 代码: https://gitee.com/mileswangseven/esp32s3_vwdt_test ESP-IDF: v4.4.2 使用协处理器在休眠期间喂狗,出现COCPU crash唤醒。小批量生产50套,出现了1个。 随着使用的时间增加,后面还有其他模组出现了相同的现象。 Log: 2022-10-26 16:28:01 ESP-ROM:esp32s3-20210327 2022-10-26 16:29:53 Build:Mar 27 2021 2022-10-26 16:29:53 rst:0x1 (POWERON),boot:0x2...
by MilesWang
Wed Oct 26, 2022 8:38 am
Forum: 硬件问题讨论
Topic: esp32s3使用ULP-­RISC-­V个别芯片出现COCPU crash唤醒
Replies: 0
Views: 1509

esp32s3使用ULP-­RISC-­V个别芯片出现COCPU crash唤醒

模组: ESP32-S3-MINI-1U 代码:https://gitee.com/mileswangseven/esp32s3_vwdt_test ESP-IDF: v4.4.2 使用协处理器在休眠期间喂狗,出现COCPU crash唤醒。小批量生产50套,出现了1个。 Log: 2022-10-26 16:28:01 ESP-ROM:esp32s3-20210327 2022-10-26 16:29:53 Build:Mar 27 2021 2022-10-26 16:29:53 rst:0x1 (POWERON),boot:0x28 (SPI_FAST_FLASH_BOOT) 2022-...
by MilesWang
Thu Jul 01, 2021 10:22 am
Forum: ESP-IDF 中文讨论版
Topic: ESP32S2判断当前代码是否在中断
Replies: 1
Views: 2299

ESP32S2判断当前代码是否在中断

想要移植使用rt-thread的软件包,做了接口适配。 但是比如事件组,在rt-thread里是一个统一接口无需判断是否在中断,FreeRTOS里是区分普通代码和中断代码调用不同的API。 所以问题是,我怎么判断当前代码是否在中断中执行? rt_err_t IRAM_ATTR rt_event_send(rt_event_t event, rt_uint32_t set) { if (vPortGetIPSR()) { BaseType_t xHigherPriorityTaskWoken; BaseType_t xResult; xHigherPriorityTaskWoken = pdFA...
by MilesWang
Tue May 18, 2021 9:39 am
Forum: ESP-IDF 中文讨论版
Topic: [已解决] ESP32S2 GPIO28 无法驱动LED
Replies: 1
Views: 2093

Re: ESP32S2 GPIO28 无法驱动LED

硬件I/O标示错误,已解决。
by MilesWang
Tue May 18, 2021 5:24 am
Forum: ESP-IDF 中文讨论版
Topic: [已解决] ESP32S2 GPIO28 无法驱动LED
Replies: 1
Views: 2093

[已解决] ESP32S2 GPIO28 无法驱动LED

20210518132110.jpg 红灯GPIO37能正常亮灯 绿灯GPIO28 无法正常亮灯 ,电压约2.0V ESP-IDF版本 ESP-IDF v4.3-beta3-131-ge45be4dd4 demo: simple_ota code: #define CONFIG_GREEN_LED_GPIO 28 #define CONFIG_RED_LED_GPIO 37 #define GREEN_LED_GPIO CONFIG_GREEN_LED_GPIO #define RED_LED_GPIO CONFIG_RED_LED_GPIO #define Led_Set_Red_On()...