board.h 1.3 KB
Newer Older
T
tanek liang 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
/*
 * File      : board.h
 * This file is part of RT-Thread RTOS
 * COPYRIGHT (C) 2009, RT-Thread Development Team
 *
 * The license and distribution terms for this file may be
 * found in the file LICENSE in this distribution or at
 * http://www.rt-thread.org/license/LICENSE
 *
 * Change Logs:
 * Date           Author       Notes
 * 2009-09-22     Bernard      add board.h to this bsp
 */

// <<< Use Configuration Wizard in Context Menu >>>
#ifndef __BOARD_H__
#define __BOARD_H__

#include <fsl_common.h>
#include <fsl_lpuart.h>
#include <fsl_iomuxc.h>

#ifdef __CC_ARM
24 25 26 27
extern int Image$$RTT_HEAP$$ZI$$Base;
extern int Image$$RTT_HEAP$$ZI$$Limit;
#define HEAP_BEGIN          (&Image$$RTT_HEAP$$ZI$$Base)
#define HEAP_END            (&Image$$RTT_HEAP$$ZI$$Limit)
T
tanek liang 已提交
28

T
tanek liang 已提交
29 30
#elif __ICCARM__
#pragma section="HEAP"
T
tanek liang 已提交
31
#define HEAP_BEGIN          (__segment_end("HEAP"))
32 33
extern void __RTT_HEAP_END;
#define HEAP_END            (&__RTT_HEAP_END)
T
tanek liang 已提交
34

T
tanek liang 已提交
35
#else
T
tanek liang 已提交
36
extern int heap_start;
37
extern int heap_end;
T
tanek liang 已提交
38
#define HEAP_BEGIN          (&heap_start)
39
#define HEAP_END            (&heap_end)
T
tanek liang 已提交
40 41
#endif

T
tanek liang 已提交
42 43 44 45 46
#define HEAP_SIZE           ((uint32_t)HEAP_END - (uint32_t)HEAP_BEGIN)

#define SDRAM_MPU_INIT
#define SDRAM_BEGIN         (0x80000000u)
#define SDRAM_END           (0x81E00000u)
T
tanek liang 已提交
47 48 49 50 51 52

void rt_hw_board_init(void);

#endif

//*** <<< end of configuration section >>>    ***