编辑:当我选中 C51 优化菜单中的“保持变量有序”框时,问题似乎消失了。我仍然不知道是什么导致了问题以及它是否是永久修复。有人知道发生了什么吗?
我正在尝试在 C51 中构建一个图形菜单。我正在使用一个menu_init()
功能,将文本显示在 4 行 LCD 屏幕上。函数定义为:
void menu_init(unsigned char** menu_array, unsigned char menu_length)
{
unsigned char i, menu_max_index;
write_command(CLEAR_DISPLAY);
if (menu_length < 4) {menu_max_index = menu_length;}
else {menu_max_index = 4;}
for (i = 0; i < menu_max_index; i++)
{
write_string_to_line(i+1, (menu_array[i]));
}
}
void write_string_to_line (unsigned char line, unsigned char* lcd_string)
{
unsigned char i = 0;
gotoxy(0, line);
while(lcd_string[i] != '\0')
{
EN = 0;
RS = 1;
EN = 1;
P0 = lcd_string[i];
i++;
EN = 0;
delay(DELAY_COUNT);
}
}
在错误发生时, menu_array
是:
unsigned char* xdata enter_byte_count_items[3] = {enter_byte_count_text, enter_byte_count_text2, enter_byte_count_number};
//For the unfamiliar, xdata is the segment in the 8051 memory, which the variable is located in
数组的初始值设定项是以下文本:
unsigned char xdata enter_byte_count_text[20] = " Enter byte count of";
unsigned char xdata enter_byte_count_text2[20] = " PGN: ";
unsigned char xdata enter_byte_count_number[20] = " Bytes";
这些就在代码附近,它们是另一个菜单的字符串:
unsigned char xdata enter_pgn_text[20] = " Enter PGN Number";
unsigned char xdata enter_pgn_number[20] = " 64000" ;
我希望这段代码按顺序打印字符串。然而,事实并非如此,输出是这样的:
Enter byte count of
x:
Bytes PGN Number
我不明白发生了什么......我相信这是关于指针衰减的东西,但我无法查明问题所在。我哪里做错了?