|
中文版固件已开源
下载地址:[中文固件Github地址](http://github.com/MakerLabMe/Marlin/tree/add_chinese_font
中英文切换(包括繁体中文)
如果你想切换回英文菜单,可以来到language.h文件中选择不同的语言配置,如果需要显示为 中文,则配置为10,如果需要显示为英文菜单,配置为1,
// Languages
// 1 English
// 2 Polish
// 3 French
// 4 German
// 5 Spanish
// 6 Russian
// 7 Italian
// 8 Portuguese
// 9 Finnish
// 10 Chinese(简繁版本都是10,下载不同的版本对应不同的字体。)
#ifndef LANGUAGE_CHOICE
#define LANGUAGE_CHOICE 10 // Pick your language from the list above
#endif
英文版本占用是Flash及RAM大小为:
Sketch uses 124,658 bytes (48%) of program storage space. Maximum is 258,048 bytes.
Global variables use 4,578 bytes (55%) of dynamic memory, leaving 3,614 bytes for local variables. Maximum is 8,192 bytes.
中文版本占用Flash及RAM大小为:
Sketch uses 125,024 bytes (48%) of program storage space. Maximum is 258,048 bytes.
Global variables use 4,554 bytes (55%) of dynamic memory, leaving 3,638 bytes for local variables. Maximum is 8,192 bytes.
可以看到Flash空间比英文版本多占用了366Bytes的空间。还远远没有达到Mega 2560芯片的Flash空间,所以中文版本对Flash空间开销不大。奇怪的是RAM空间中文版本比英文版本少,具体原因还需要分析一下。
|
|