/** ************************************************************************** * @file flash.h * @brief flash header file ************************************************************************** * Copyright notice & Disclaimer * * The software Board Support Package (BSP) that is made available to * download from Artery official website is the copyrighted work of Artery. * Artery authorizes customers to use, copy, and distribute the BSP * software and its related documentation for the purpose of design and * development in conjunction with Artery microcontrollers. Use of the * software is governed by this copyright notice and the following disclaimer. * * THIS SOFTWARE IS PROVIDED ON "AS IS" BASIS WITHOUT WARRANTIES, * GUARANTEES OR REPRESENTATIONS OF ANY KIND. ARTERY EXPRESSLY DISCLAIMS, * TO THE FULLEST EXTENT PERMITTED BY LAW, ALL EXPRESS, IMPLIED OR * STATUTORY OR OTHER WARRANTIES, GUARANTEES OR REPRESENTATIONS, * INCLUDING BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT. * ************************************************************************** */ /* Define to prevent recursive inclusion -------------------------------------*/ #ifndef __FLASH_H__ #define __FLASH_H__ #include "at32f421_board.h" /** @addtogroup AT32F421_periph_examples * @{ */ #define DLD_BUFEER_SIZE 100 // byte number, sector #define DLD_FLASH_ADDRESS_START (0x08000000 + 1024 * 63 + 512) // The last sector #define DLD_FLASH_MAX_SIZE (0x08000000 + 1024 * 64) #define MAX_Store_Size DLD_BUFEER_SIZE /** @addtogroup 421_FLASH_write_read * @{ */ /** @defgroup FLASH_write_read_functions * @{ */ void flash_read(uint32_t read_addr, uint16_t *p_buffer, uint16_t num_read); error_status flash_write_nocheck(uint32_t write_addr, uint16_t *p_buffer, uint16_t num_write); error_status flash_write(uint32_t write_addr,uint16_t *p_Buffer, uint16_t num_write); /** * @} */ /** * @} */ /** * @} */ #endif