mirror of
https://github.com/apache/nuttx.git
synced 2026-06-07 09:18:00 +08:00
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:
@@ -140,7 +140,7 @@ config LPC17_PLL1
|
||||
default y
|
||||
|
||||
config LPC17_EMC
|
||||
bool "PLL1"
|
||||
bool "EMC"
|
||||
default y
|
||||
depends on ARCH_FAMILY_LPC178X
|
||||
|
||||
|
||||
@@ -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 */
|
||||
|
||||
|
||||
@@ -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)
|
||||
|
||||
|
||||
@@ -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 */
|
||||
|
||||
|
||||
Reference in New Issue
Block a user