63 lines
1.7 KiB
C
63 lines
1.7 KiB
C
/*
|
|
* Copyright (c) 2006-2023, RT-Thread Development Team
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* Change Logs:
|
|
* Date Author Notes
|
|
* 2022-06-29 Rbb666 first version
|
|
* 2022-07-26 Rbb666 Add Flash Config
|
|
*/
|
|
|
|
#ifndef __BOARD_H__
|
|
#define __BOARD_H__
|
|
|
|
#include <rtthread.h>
|
|
#include "drv_common.h"
|
|
#include "drv_gpio.h"
|
|
|
|
#include "cy_result.h"
|
|
#include "cybsp_types.h"
|
|
#include "cyhal.h"
|
|
#include "cybsp.h"
|
|
|
|
#ifdef BSP_USING_USBD
|
|
#include "cy_usb_dev.h"
|
|
#include "cy_usb_dev_hid.h"
|
|
#endif
|
|
|
|
/*FLASH CONFIG*/
|
|
#define IFX_FLASH_START_ADRESS ((uint32_t)0x10000000)
|
|
#define IFX_FLASH_PAGE_SIZE (256 * 1024)
|
|
#define IFX_FLASH_SIZE (2 * 1024 * 1024)
|
|
#define IFX_FLASH_END_ADDRESS ((uint32_t)(IFX_FLASH_START_ADRESS + IFX_FLASH_SIZE))
|
|
|
|
/*EFLASH CONFIG*/
|
|
#define IFX_EFLASH_START_ADRESS ((uint32_t)0x14000000)
|
|
#define IFX_EFLASH_PAGE_SIZE (32 * 1024)
|
|
#define IFX_EFLASH_SIZE (32 * 1024)
|
|
#define IFX_EFLASH_END_ADDRESS ((uint32_t)(IFX_EFLASH_START_ADRESS + IFX_EFLASH_SIZE))
|
|
|
|
/*SRAM CONFIG*/
|
|
#define IFX_SRAM_SIZE (1014)
|
|
#define IFX_SRAM_END (0x08002000 + IFX_SRAM_SIZE * 1024)
|
|
|
|
#ifdef __ARMCC_VERSION
|
|
extern int Image$$RW_IRAM1$$ZI$$Limit;
|
|
#define HEAP_BEGIN (&Image$$RW_IRAM1$$ZI$$Limit)
|
|
#define HEAP_END IFX_SRAM_END
|
|
#elif __ICCARM__
|
|
#pragma section="HEAP"
|
|
#define HEAP_BEGIN (__segment_end("HEAP"))
|
|
#else
|
|
extern unsigned int __end__;
|
|
extern unsigned int __HeapLimit;
|
|
#define HEAP_BEGIN (void*)&__end__
|
|
#define HEAP_END (void*)&__HeapLimit
|
|
#endif
|
|
|
|
void cy_bsp_all_init(void);
|
|
|
|
#endif
|
|
|