mirror of
https://github.com/elua/elua.git
synced 2025-01-25 01:02:54 +08:00
Merge branch 'master' of https://github.com/elua/elua
This commit is contained in:
commit
5aa2558cc3
@ -135,8 +135,6 @@
|
||||
|
||||
// Allocator data: define your free memory zones here in two arrays
|
||||
// (start address and end address)
|
||||
// On Mizar32, we just use the 32MB SDRAM without trying to use the 8K that is
|
||||
// free in the onboard 32KB RAM, thereby simplifying the memory management.
|
||||
#define MEM_START_ADDRESS { ( void* )end, ( void* )SDRAM }
|
||||
#define MEM_END_ADDRESS { ( void* )( 0x8000 - STACK_SIZE_TOTAL - 1 ), ( void* )( SDRAM + SDRAM_SIZE - 1 ) }
|
||||
|
||||
|
@ -3,7 +3,7 @@
|
||||
#ifndef __STACKS_H__
|
||||
#define __STACKS_H__
|
||||
|
||||
#define STACK_SIZE 2048
|
||||
#define STACK_SIZE 8192
|
||||
#define STACK_SIZE_TOTAL ( STACK_SIZE )
|
||||
|
||||
#endif
|
||||
|
Loading…
x
Reference in New Issue
Block a user