You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The text was updated successfully, but these errors were encountered:
github-actionsbot
changed the title
components\esp_peripherals\lib\blufi\blufi_security.c部分头文件包含芯片型号写死
components\esp_peripherals\lib\blufi\blufi_security.c部分头文件包含芯片型号写死 (AUD-6060)
Feb 12, 2025
\esp-adf\components\esp_peripherals\lib\blufi\blufi_security.c
文件中,开头部分有:
#if (ESP_IDF_VERSION >= ESP_IDF_VERSION_VAL(4, 0, 0))
#include "esp32/rom/crc.h"
#else
#include "rom/crc.h"
#endif
这部分头文件包含将芯片型号esp32写死,并没有根据用户配置的芯片型号动态变化,导致使用其他芯片(例如esp32s3)时编译报错,手动改为#include "esp32s3/rom/crc.h"后可以编译通过。
The text was updated successfully, but these errors were encountered: