More ram size for loadables
This commit is contained in:
parent
5a33df1fc9
commit
44802d4b28
|
@ -7,7 +7,7 @@
|
||||||
TARGET = LPC13xx
|
TARGET = LPC13xx
|
||||||
FLASH = 32K
|
FLASH = 32K
|
||||||
SRAM = 8K
|
SRAM = 8K
|
||||||
RAMCODE=2048
|
RAMCODE=2548
|
||||||
|
|
||||||
# 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.
|
||||||
|
|
|
@ -30,7 +30,7 @@ void execute_file (const char * fname, uint8_t checksignature, uint8_t decode){
|
||||||
dst=(void (*)(void)) (sram_top);
|
dst=(void (*)(void)) (sram_top);
|
||||||
lcdPrint("T:"); lcdPrintIntHex(dst); lcdNl();
|
lcdPrint("T:"); lcdPrintIntHex(dst); lcdNl();
|
||||||
*/
|
*/
|
||||||
dst=(void (*)(void)) 0x10001800;
|
dst=(void (*)(void)) 0x1000160C;
|
||||||
|
|
||||||
res=f_open(&file, fname, FA_OPEN_EXISTING|FA_READ);
|
res=f_open(&file, fname, FA_OPEN_EXISTING|FA_READ);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue