我的Bascom项目有问题。
首先,这是我的代码:
$regfile = "m128def.dat"
$CRYSTAL=8000000
$hwstack = 512
$swstack = 512
$framesize = 512
Config Porte = Output : Data_disp_low Alias Porte 'DB0 - DB7
Config Portf = Output : Data_disp_high Alias Portf 'DB8 - DB15
Rs_disp Alias Portd.0 : Config Rs_disp = Output 'Command/Data pin
Wr_disp Alias Portd.1 : Config Wr_disp = Output 'Write pin
Rd_ssd1963 Alias Portd.2 : Config Rd_ssd1963 = Output
Res_disp Alias Portd.4 : Config Res_disp = Output 'Reset pin
Res_disp = 1
Cs_disp Alias Portd.3 : Config Cs_disp = Output 'Chip Select
Cs_disp = 0
Const Color_bgr = 0
Const Portrait = 0 '1=Portrait, 0=Landscape
Const Rotate_180 = 0 '1=Rotated, 0=Not Rotated
Config Submode = New : $include "SSD1963 16bit library.inc" 'Include library
Config Portd.0 = Output
Display_init
Lcd_backlight 160
Lcd_clear Black
Restore A_en_boldfont14x23
Alcd_txt "Hello" , 320 , 37 , White , Black , 0
wait 5
我想恢复一个文件并在我的GLCD中显示它但是IDE向我显示了这个错误:
Error : 61 Line : 28 Label not found [A_EN_BOLDFONT14X23] , in File : D:\AVR\bascomprj\lcd4inch\noname2.bas
这很奇怪,因为我将[A_EN_BOLDFONT14X23]
放在项目的文件中。
有谁知道答案?
答案 0 :(得分:0)
消息显示没有数据标签" A_EN_BOLDFONT14X23"在项目文件中找到。如果要访问存储在程序存储器中的数据,则必须定义标签。比您可以通过例如读取来访问数据您无法访问存储在项目目录中的文件 Bascom help restore
示例:
Restore Data_to_restore
Read S : Print S 'read an print "display text 1"
Read S : Print S
Data_to_restore:
Data "display text 1" , "display text 2"