rt-thread/bsp/swm320-lq100/drivers/drv_nor_flash.h

24 lines
477 B
C
Raw Normal View History

2018-12-24 17:17:27 +08:00
/*
* Copyright (c) 2006-2018, Synwit Technology Co.,Ltd.
*
* SPDX-License-Identifier: Apache-2.0
*
* Change Logs:
* Date Author Notes
* 2018-12-10 Zohar_Lee first version
2021-09-30 17:55:16 +08:00
* 2020-07-10 lik rewrite
2018-12-24 17:17:27 +08:00
*/
#ifndef DRV_NOR_FLASH_H__
#define DRV_NOR_FLASH_H__
2021-09-30 17:55:16 +08:00
#include "board.h"
#define BLOCK_SIZE (64 * 1024)
#define FLASH_SIZE (BSP_NOR_FLASH_SIZE)
#define BLOCK_COUNTER (FLASH_SIZE / BLOCK_SIZE)
2018-12-24 17:17:27 +08:00
int rt_hw_norflash_init(void);
#endif