代码搜索结果
找到约 10,000 项符合
Flash 的代码
flash.cmd
MEMORY
{
PAGE 0 :
OTP : origin = 0x3D7800, length = 0x000800
FLASHJ : origin = 0x3D8000, length = 0x002000
FLASHI : origin = 0x3DA000, length = 0x002000
FLASHH
flash.c
#include
#include
#include
#include "ioregs.h"
#include "flash.h"
//初始化串口1
char str[20];
void init_uart1(void)
{
IO_UBRLCR1 = (IO_UBRLCR1 & ~BRDIV) | BR_
flash.h
/*
定义flash的基地址
RAM的基地址
*/
#define FLASH_START 0x70000000
#define RAM_START 0xC0000000
#define FLASH(offset) (FLASH_START + (offset))
#define FLASH_BYTE(offset) (*(volatile unsigned char
flash.h
/*
定义flash的基地址
RAM的基地址
*/
#define FLASH_START 0x70000000
#define RAM_START 0xC0000000
#define FLASH(offset) (FLASH_START + (offset))
#define FLASH_BYTE(offset) (*(volatile unsigned char
flash.txt
; generated by ARM C Compiler, ADS1.2 [Build 805]
; commandline [-errors .\err\flash.err -O0 -asm -g+ -cpu 5TEJ -fs -Wd -Ec -I.\include "-IC:\Program Files\ARM\ADSv1_2\INCLUDE"]
flash.h
#ifndef __FLASH_H__
#define __FLASH_H__
#ifdef __cplusplus
extern "C"{
#endif
//void ProgramFlash(void);
void DownloadBinary(void);
void Ch2_SROM_CONTROLLER(void);
#ifdef __cplusplus
flash.err
"src\flash.c", line 243: Warning: C2870W: variable 'downPt' declared but not used
"src\flash.c", line 243: Warning: C2870W: variable 'fileSize' declared but not used
"src\flash.c", line 243: Warning
flash.c
//====================================================================
// File Name : flash.c
// Function : S3C24A0 Flash Program
// History : April 30, 2003 Draft Version 0.0
//==================