42 lines
1.6 KiB
C
42 lines
1.6 KiB
C
/*
|
|
* Copyright (C) 2012-2019 UCloud. All Rights Reserved.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License").
|
|
* You may not use this file except in compliance with the License.
|
|
* A copy of the License is located at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* or in the "license" file accompanying this file. This file is distributed
|
|
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
|
* express or implied. See the License for the specific language governing
|
|
* permissions and limitations under the License.
|
|
*/
|
|
|
|
#ifndef _FAL_CFG_H_
|
|
#define _FAL_CFG_H_
|
|
|
|
#include <rtconfig.h>
|
|
#include <board.h>
|
|
|
|
/* ===================== Flash device Configuration ========================= */
|
|
extern const struct fal_flash_dev stm32_onchip_flash;
|
|
|
|
/* flash device table */
|
|
#define FAL_FLASH_DEV_TABLE \
|
|
{ \
|
|
&stm32_onchip_flash, \
|
|
}
|
|
/* ====================== Partition Configuration ========================== */
|
|
#ifdef FAL_PART_HAS_TABLE_CFG
|
|
/* partition table */
|
|
#define FAL_PART_TABLE \
|
|
{ \
|
|
{FAL_PART_MAGIC_WORD, "app", "onchip_flash", 512*1024, 512*1024, 0}, \
|
|
{FAL_PART_MAGIC_WORD, "download", "onchip_flash", 1024*1024, 512*1024, 0}, \
|
|
{FAL_PART_MAGIC_WORD, "factory", "onchip_flash", 1536*1024, 512*1024, 0}, \
|
|
}
|
|
#endif /* FAL_PART_HAS_TABLE_CFG */
|
|
|
|
#endif /* _FAL_CFG_H_ */
|