| 1234567891011121314151617181920212223242526272829303132333435 |
- /*
- * 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.
- */
- #include <fal.h>
- #include <stm32f7xx.h>
- static int fal_flash_read(long offset, rt_uint8_t *buf, size_t size)
- {
- return stm32_flash_read(stm32_onchip_flash.addr + offset, buf, size);
- }
- static int fal_flash_write(long offset, const rt_uint8_t *buf, size_t size)
- {
- return stm32_flash_write(stm32_onchip_flash.addr + offset, buf, size);
- }
- static int fal_flash_erase(long offset, size_t size)
- {
- return stm32_flash_erase(stm32_onchip_flash.addr + offset, size);
- }
- const struct fal_flash_dev stm32_onchip_flash = { "onchip_flash", STM32_FLASH_START_ADRESS, STM32_FLASH_SIZE, (512 * 1024), {NULL, fal_flash_read, fal_flash_write, fal_flash_erase} };
|