代码搜索结果
找到约 10,000 项符合
Flash 的代码
flash.h
#define FLASH_BASE (0x00000000)
#define FLASH_LIMIT (0x03ffffff)
flash.ld
SECTIONS
{
. = 0x00000000;
Image_RO_Base = .;
.text : { *(.text) }
.rodata : { *(.rodata) }
Image_RO_Limit = .;
. = 0x40000000;
Image_RW_Base = .;
.data : { *(.data) }
Image_RW_Limi
flash.htm
插入FLASH动画
flash.h
#ifndef __FLASH_H__
#define __FLASH_H__
void ProgramFlash(void);
#endif /*__FLASH_H__*/
flash.c
#include
#include "..\inc\option.h"
#include "..\inc\def.h"
#include "..\inc\44b.h"
#include "..\inc\44blib.h"
#include "..\inc\F29LV160.h"
U32 downloadAddress;
U32 downloadProgram
flash.c
/* AVR FLASH.H */
#ifndef FLASH
#define FLASH
#include
#include
#define SPM_PAGESIZE 256
/*M128的一个Flash页为256字节(128字)*/
#define DATA_BUFFER_SIZE SPM_PAGES
flash.h
#ifndef __FLASH_H__
#define __FLASH_H__
void ProgramFlash(void);
#endif /*__FLASH_H__*/