1 Star 0 Fork 0

Jumbo/uv-k5-firmware-fagci-mod

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
sram-overlay.h 2.69 KB
一键复制 编辑 原始数据 按行查看 历史
Dual Tachyon 提交于 2023-09-08 00:39 . Fixed correct return type.
/* Copyright 2023 Dual Tachyon
* https://github.com/DualTachyon
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License 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 SRAM_OVERLAY_H
#define SRAM_OVERLAY_H
#include <stdbool.h>
#include <stdint.h>
#include "driver/flash.h"
extern uint32_t overlay_FLASH_MainClock __attribute__((section(".srambss")));
extern uint32_t overlay_FLASH_ClockMultiplier __attribute__((section(".srambss")));
extern uint32_t overlay_0x20000478 __attribute__((section(".srambss")));
void overlay_FLASH_RebootToBootloader(void) __attribute__((noreturn)) __attribute__((section(".sramtext")));
bool overlay_FLASH_IsBusy(void) __attribute__((section(".sramtext")));
bool overlay_FLASH_IsInitComplete(void) __attribute__((section(".sramtext")));
void overlay_FLASH_Start(void) __attribute__((section(".sramtext")));
void overlay_FLASH_Init(FLASH_READ_MODE ReadMode) __attribute__((section(".sramtext")));
void overlay_FLASH_MaskLock(void) __attribute__((section(".sramtext")));
void overlay_FLASH_SetMaskSel(FLASH_MASK_SELECTION Mask) __attribute__((section(".sramtext")));
void overlay_FLASH_MaskUnlock(void) __attribute__((section(".sramtext")));
void overlay_FLASH_Lock(void) __attribute__((section(".sramtext")));
void overlay_FLASH_Unlock(void) __attribute__((section(".sramtext")));
uint32_t overlay_FLASH_ReadByAHB(uint32_t Offset) __attribute__((section(".sramtext")));
uint32_t overlay_FLASH_ReadByAPB(uint32_t Offset) __attribute__((section(".sramtext")));
void overlay_FLASH_SetArea(FLASH_AREA Area) __attribute__((section(".sramtext")));
void overlay_FLASH_SetReadMode(FLASH_READ_MODE Mode) __attribute__((section(".sramtext")));
void overlay_FLASH_SetEraseTime(void) __attribute__((section(".sramtext")));
void overlay_FLASH_WakeFromDeepSleep(void) __attribute__((section(".sramtext")));
void overlay_FLASH_SetMode(FLASH_MODE Mode) __attribute__((section(".sramtext")));
void overlay_FLASH_SetProgramTime(void) __attribute__((section(".sramtext")));
void overlay_SystemReset(void) __attribute__((noreturn)) __attribute__((section(".sramtext")));
uint32_t overlay_FLASH_ReadNvrWord(uint32_t Offset) __attribute__((section(".sramtext")));
void overlay_FLASH_ConfigureTrimValues(void) __attribute__((section(".sramtext")));
#endif
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/jumbo5566/uv-k5-firmware-fagci-mod.git
[email protected]:jumbo5566/uv-k5-firmware-fagci-mod.git
jumbo5566
uv-k5-firmware-fagci-mod
uv-k5-firmware-fagci-mod
main

搜索帮助