Search found 3 matches

by nufing
Wed Feb 19, 2025 8:43 am
Forum: ESP-IDF 中文讨论版
Topic: 怎么编写 esp32s3 的 分散加载 LD 文件?
Replies: 0
Views: 820

怎么编写 esp32s3 的 分散加载 LD 文件?

特殊需求,需要在ESP32s3上 运行裸机程序,直接使用 xtensa-esp32s3-elf 通过 makefile 进行编译 , 但不知道 LD文件怎么编写,可指定 程序的代码地码和内存地址,问了 deepseek 和 kimi 也没找可行的, 垦请高手指教。
by nufing
Thu Dec 12, 2024 8:58 am
Forum: ESP-IDF 中文讨论版
Topic: ESP32s3 + vscode this 指针问题
Replies: 0
Views: 989

ESP32s3 + vscode this 指针问题

使用 vscode 编写 esp32s3 的代码, 在类里面 判断 if(this == 0) 会报错 error: 'nonnull' argument 'this' compared to NULL, 另外调用空指针的 成员函数 , 在运行时, 报错, 然后整个系统重启, 例如 : class A { public: int ADD(int a, int b) { if(!this)return 0; // 编译时 报错: error: 'nonnull' argument 'this' compared to NULL, 屏蔽后可 正常编译 , 不知道什么原因。 return a + b...
by nufing
Thu Aug 08, 2024 4:14 pm
Forum: ESP-IDF 中文讨论版
Topic: ESP32S3 可以将FLASH 换成 32MB的吗?
Replies: 0
Views: 2864

ESP32S3 可以将FLASH 换成 32MB的吗?

ESP32S3 可以将FLASH 换成 32MB的吗? 现已装FLASH 从之前的 16MB 换成了 32MB, 但启动时 提示,
W (301) spi_flash: Detected flash size > 16 MB, but access beyond 16 MB is not supported for this flash model yet.
后面 16MB 是不能用的, 不知道硬件上能不能支持?