mirror of
https://gitee.com/Vancouver2017/luban-lite-t3e-pro.git
synced 2025-12-14 18:38:55 +00:00
28 lines
704 B
C
28 lines
704 B
C
/*
|
|
* Copyright (c) 2023, Artinchip Technology Co., Ltd
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* Authors: xuan.wen <xuan.wen@artinchip.com>
|
|
*/
|
|
|
|
#ifndef _FAL_CFG_H_
|
|
#define _FAL_CFG_H_
|
|
|
|
#include <rtconfig.h>
|
|
#include <board.h>
|
|
#include <partition_table.h>
|
|
|
|
#define NOR_FLASH_DEV_NAME "norflash0"
|
|
|
|
/* ===================== Flash device Configuration ========================= */
|
|
extern struct fal_flash_dev nor_flash0;
|
|
|
|
/* flash device table */
|
|
#define FAL_FLASH_DEV_TABLE \
|
|
{ \
|
|
&nor_flash0, \
|
|
}
|
|
|
|
#endif /* _FAL_CFG_H_ */
|