📄 main.c
字号:
#include "flash.h"
char code msgbuf [] = "This is a test to see if this thing really works.";
char xdata strbuf [101];
void main (void)
{
flash_erase_all ();
flash_size ();
flash_write (msgbuf, sizeof (msgbuf), 0);
flash_read (strbuf, sizeof (msgbuf), 0);
flash_erase_all ();
while (1);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -