野火电子论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 15337|回复: 1

谁能帮我分析分析这几句,谢谢

[复制链接]
发表于 2014-12-11 11:10:01 | 显示全部楼层 |阅读模式
void SPI_FLASH_StartReadSequence(u32 ReadAddr)
{
  /* Select the FLASH: Chip Select low */
  SPI_FLASH_CS_LOW();
  /* Send "Read from Memory " instruction */
  SPI_FLASH_SendByte(W25X_ReadData);
  /* Send the 24-bit address of the address to read from -----------------------*/
  /* Send ReadAddr high nibble address byte */
  SPI_FLASH_SendByte((ReadAddr & 0xFF0000) >> 16);
  /* Send ReadAddr medium nibble address byte */
  SPI_FLASH_SendByte((ReadAddr& 0xFF00) >> 8);
  /* Send ReadAddr low nibble address byte */
  SPI_FLASH_SendByte(ReadAddr & 0xFF);
}谁能解释下后三句中为什么要现与后在左移16位和8位,这是为什么,实在愚钝我

主题推荐

回复

使用道具 举报

发表于 2014-12-11 13:12:07 | 显示全部楼层
顺序写入三个字节,先高后低,u32是4字节组成 的
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

联系站长|手机版|野火电子官网|野火淘宝店铺|野火电子论坛 ( 粤ICP备14069197号 ) 大学生ARM嵌入式2群

GMT+8, 2024-11-23 08:16 , Processed in 0.032841 second(s), 23 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表