📄 sd_eeprom.c
字号:
/*--------------File Info-------------------------------------------------------
** 文 件 名: SD_EEPROM.c
** 最后修改日期: 2008.04.04
** 版 本: V1.0
** 描 述:
**------------------------------------------------------------------------------
** Created by:
** Created date:
*******************************************************************************/
#include "SYS_Config.h"
#include "SD_Config.h"
#include "SD_EEPROM.h"
extern INT8U Data_Buf[SD_BLOCKSIZE];
void Load_SD_BootSector(void)
{
EEPROMReadBytes(SD_BootSectorAddress,Data_Buf,SD_BootSectorLength);
}
void Save_SD_BootSector(void)
{
EEPROMWriteBytes(SD_BootSectorAddress,Data_Buf,SD_BootSectorLength);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -