代码搜索结果
找到约 10,000 项符合
Flash 的代码
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.h
#ifndef __FLASH_H
#define __FLASH_H
unsigned int GetFlashID(void);
void FlashRead(unsigned int ReadStart, unsigned short *DataPtr, unsigned int Size);
int SectorProg(unsigned int begin, unsigned
flash.c
#include "../inc/44blib.h"
typedef struct {
unsigned short * start;
const unsigned int size;
} sector_t;
typedef struct {
const char * name;
const int manufactor;
const int device_i
flash.c
//====================================================================
// File Name : flash.c
// Function : S3C2440 Flash Program
// Program : Kong, In Wook (KIW)
// Date : May 30, 2002
/