Reorganize some AT91SAM3U files; Add an NSH kernel build configuration to the WaveSahhare Open1788 board

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5732 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
patacongo 2013-03-11 20:26:55 +00:00
parent 7654076287
commit 9d05dad682
4 changed files with 8 additions and 6 deletions

View File

@ -140,7 +140,7 @@ config LPC17_PLL1
default y
config LPC17_EMC
bool "PLL1"
bool "EMC"
default y
depends on ARCH_FAMILY_LPC178X

View File

@ -47,6 +47,7 @@
#include <arch/board/board.h>
#include "chip.h"
#include "mpu.h"
#include "up_arch.h"
#include "up_internal.h"
@ -214,7 +215,7 @@ void up_allocate_heap(FAR void **heap_start, size_t *heap_size)
DEBUGASSERT((CONFIG_DRAM_END & ((1 << log2) - 1)) == 0);
usize = (1 << log2);
ubase = CONFIG_DRAM_END - usize
ubase = CONFIG_DRAM_END - usize;
/* Return the user-space heap settings */
@ -265,7 +266,7 @@ void up_allocate_kheap(FAR void **heap_start, size_t *heap_size)
DEBUGASSERT((CONFIG_DRAM_END & ((1 << log2) - 1)) == 0);
usize = (1 << log2);
ubase = CONFIG_DRAM_END - usize
ubase = CONFIG_DRAM_END - usize;
/* Return the kernel heap settings */

View File

@ -44,7 +44,7 @@
#include <nuttx/userspace.h>
#include "mpu.h"
#include "lp17_mpuinit.h"
#include "lpc17_mpuinit.h"
#if defined(CONFIG_NUTTX_KERNEL) && defined(CONFIG_ARMV7M_MPU)

View File

@ -48,6 +48,7 @@
#include <arch/board/board.h>
#include "chip.h"
#include "mpu.h"
#include "up_arch.h"
#include "up_internal.h"
#include "sam3u_internal.h"
@ -125,7 +126,7 @@ void up_allocate_heap(FAR void **heap_start, size_t *heap_size)
DEBUGASSERT((CONFIG_DRAM_END & ((1 << log2) - 1)) == 0);
usize = (1 << log2);
ubase = CONFIG_DRAM_END - usize
ubase = CONFIG_DRAM_END - usize;
/* Return the user-space heap settings */
@ -176,7 +177,7 @@ void up_allocate_kheap(FAR void **heap_start, size_t *heap_size)
DEBUGASSERT((CONFIG_DRAM_END & ((1 << log2) - 1)) == 0);
usize = (1 << log2);
ubase = CONFIG_DRAM_END - usize
ubase = CONFIG_DRAM_END - usize;
/* Return the kernel heap settings */