易截截图软件、单文件、免安装、纯绿色、仅160KB

LPC1343读写SPI FLASH at25f1024

自己写的程序,希望对大家有帮助,其实这片flash十分的悲剧,只有4个block,1MB的空间,长期放可执行代码用的,短期放数据,十分的不合适...
void DelayTime( void )
{
u8 i ;
for( i = 0 ; i < 10 ; i++ ) ;
}
void atWriteCmd( u8 cmd )
{
SSPSend( &cmd , 1) ;
}
void atWriteData(u8 * buf , u32 nBytes )
{
if( nBytes == 0 )
return ;
SSPSend( buf , nBytes );
}
void atReadData( u8 *buf , u32 nBytes )
{
if( nBytes == 0 )
return ;
SSPReceive( buf , nBytes ) ;
}
void atSendWREN()
{
atEnable();
atWriteCmd( CMDWREN ) ;
atDisable();
DelayTime();
}
u8 atReadRDSR( )
{
u8 stu ;
atEnable();
atWriteCmd(CMDRDSR);
atReadData( &stu , 1);
atDisable();
return stu ;
}
void atFlashInit( void )
{
LPC_IOCON->PIO1_10 &= ~0x07; /* SSP SSEL is a GPIO pin */
GPIOSetDir( PORT1, 10, 1 );
GPIOSetValue( PORT1, 10, 1 );
LPC_IOCON->PIO1_11 &= ~0x07; /* SSP SSEL is a GPIO pin */
GPIOSetDir( PORT1, 11, 1 );
GPIOSetValue( PORT1, 11, 1 );
SSPInit();
}
void atReadID( u8 * buf)
{
atEnable();
atWriteCmd(CMDRDID);
atReadData( buf , 2 ) ; // 0x1f
atDisable();
}
void atReadFlash(u32 addr , u8 * buf , u32 nBytes )
{
u8 cmd[4] ;
if( nBytes == 0 )
return ;
cmd[0] = CMDREAD ;
cmd[1] = addr>>16 ;
cmd[2] = addr>>8 ;
cmd[3] = addr ;
while( (atReadRDSR()&0x01 ) != 0x00 );
atEnable();
atWriteCmd( cmd[0] );
atWriteCmd( cmd[1] );
atWriteCmd( cmd[2] );
atWriteCmd( cmd[3] );
atReadData( buf , nBytes );
atDisable();
}
void atWriteFlash( u32 addr, u8 * buf , u32 nBytes )
{
u8 cmd[4];
if( nBytes == 0 )
return ;
if( nBytes < 256 )
{// if big than 256 , error Occur
atSendWREN();
while( (atReadRDSR()&0x02 ) != 0x02 ); // write enable
cmd[0] = CMDPROGRAM ;
cmd[1] = addr>>16 ;
cmd[2] = addr>>8 ;
cmd[3] = addr ;

atEnable();
atWriteCmd( cmd[0] );
atWriteCmd( cmd[1] );
atWriteCmd( cmd[2]


相关文档:

Scribd寄希望于HTML5,放弃Flash,

    处境堪忧的Adobe Flash将面临另一次打击,在线文档最终也开始表明立场。目前网上大部分文档(PDF、Word文档、幻灯片)只能在Flash播放器内部播放,无法显 示为完整的网页。明天在线文档分享网站Scribd上的数百万份文档不再使 用Flash播放,而是将转化为本地HTML5网页。这些文档不仅可以在iPad上完美显示 ......

.net 中flash文件的嵌入

Flash OBJECT和EMBED标签详解
Flash OBJECT和EMBED标签
一、介绍:
我们要在网页中正常显示flash内容,那么页面中必须要有指定flash路径的标签。也就是OBJECT和EMBED标签。OBJECT标签是用于windows平台的IE浏览器的,而EMBED是用于windows和Macintosh平台下的Netscape Navigator浏览器以及Macintosh平台下的IE浏览器。 ......

在PowerPoint幻灯片中插入Flash的方法

在PowerPoint幻灯片中插入Flash方法一
  将扩展名为. SWF的Flash动画文件插入PPT
  ---插入一个由文件创建的对象
  ---在“动作设置”中的“对象动作”选项中选择“激活内容”
  在PowerPoint幻灯片中插入Flash方法二
  利用Active X控件插入动画
  ---选择“视图&rd ......
© 2009 ej38.com All Rights Reserved. 关于E健网联系我们 | 站点地图 | 赣ICP备09004571号