2011-08-02 00:10:15 +00:00
|
|
|
#include <sysinit.h>
|
|
|
|
|
|
|
|
#include "basic/basic.h"
|
|
|
|
#include "basic/config.h"
|
|
|
|
|
|
|
|
#include "lcd/print.h"
|
|
|
|
#include "lcd/render.h"
|
|
|
|
#include "lcd/display.h"
|
|
|
|
|
|
|
|
#include "filesystem/ff.h"
|
2011-12-23 00:07:48 +00:00
|
|
|
#include "filesystem/execute.h"
|
2011-08-02 00:10:15 +00:00
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
/**************************************************************************/
|
2011-08-02 11:31:57 +00:00
|
|
|
//# MENU config
|
2011-08-02 00:10:15 +00:00
|
|
|
void changer(void){
|
2011-12-22 02:18:16 +00:00
|
|
|
if(execute_file("config.int")){
|
2011-08-02 00:10:15 +00:00
|
|
|
lcdClear();
|
2011-12-22 02:18:16 +00:00
|
|
|
lcdPrintln("config");
|
|
|
|
lcdPrintln("l0dable");
|
|
|
|
lcdPrintln("not found");
|
2011-08-02 00:10:15 +00:00
|
|
|
lcdRefresh();
|
2011-12-22 02:18:16 +00:00
|
|
|
getInputWait();
|
|
|
|
getInputWaitRelease();
|
2011-08-02 00:10:15 +00:00
|
|
|
}
|
|
|
|
}
|
2011-12-22 02:18:16 +00:00
|
|
|
|