gpt4 book ai didi

c - 在 Arduino 中使用 PROGMEM 存储在闪存中的字符串数组

转载 作者:太空狗 更新时间:2023-10-29 16:52:30 25 4
gpt4 key购买 nike

我正在使用 AVR-GCC 4.7.0 版,当我尝试在闪存中创建字符串数组时出现错误:

variable ‘menu’ must be const in order to be put into read-only section by means of ‘attribute((progmem))’

我正在使用这段代码:

const char menu0[] PROGMEM = "choice0";
const char menu1[] PROGMEM = "choice1";
const char menu2[] PROGMEM = "choice2";
const char menu3[] PROGMEM = "choice3";
const char menu4[] PROGMEM = "choice4";
const char menu5[] PROGMEM = "choice5";

const char *menu[] PROGMEM = {menu0, menu1, menu2, menu3, menu4, menu5};

我已经阅读了堆栈溢出问题 C - how to use PROGMEM to store and read char array ,但我看到的所有答案都不包含 const 关键字,这让我相信它们是在需要它之前编写的。

如何解决这个问题?


const char * const menu[] PROGMEM = {menu0, menu1, menu2, menu3, menu4, menu5};

就是答案。

最佳答案

尝试

const char* const menu[] PROGMEM...

因此数组本身是常量,而不是原始代码中的 const char* 指针的可变数组。

关于c - 在 Arduino 中使用 PROGMEM 存储在闪存中的字符串数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14325485/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com