2k space for applets

This commit is contained in:
schneider 2011-07-08 01:30:22 +02:00
parent 1c2846734c
commit 3319c24c6d
2 changed files with 4 additions and 3 deletions

View File

@ -7,7 +7,7 @@
TARGET = LPC13xx TARGET = LPC13xx
FLASH = 32K FLASH = 32K
SRAM = 8K SRAM = 8K
RAMCODE=1K RAMCODE=2K
# For USB HID support the LPC134x reserves 384 bytes from the sram, # For USB HID support the LPC134x reserves 384 bytes from the sram,
# if you don't want to use the USB features, just use 0 here. # if you don't want to use the USB features, just use 0 here.

View File

@ -50,7 +50,7 @@ void execute_file (const char * fname){
UINT readbytes; UINT readbytes;
void (*dst)(void); void (*dst)(void);
dst=(void (*)(void)) 0x10001c00; dst=(void (*)(void)) 0x10001800;
res=f_open(&file, fname, FA_OPEN_EXISTING|FA_READ); res=f_open(&file, fname, FA_OPEN_EXISTING|FA_READ);
put_rc(res); put_rc(res);
@ -58,7 +58,7 @@ void execute_file (const char * fname){
return; return;
}; };
res = f_read(&file, (char *)dst, 1024, &readbytes); res = f_read(&file, (char *)dst, 2048, &readbytes);
put_rc_y(res,8); put_rc_y(res,8);
if(res){ if(res){
return; return;
@ -79,6 +79,7 @@ void execute_file (const char * fname){
void main_executor(void) { void main_executor(void) {
lcdSetPixel(0,0,0); //the spaceinvader module needs this
backlightInit(); backlightInit();
//disable the JTAG on PIO3_3 //disable the JTAG on PIO3_3