野火电子论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 13441|回复: 1

请教STM32 SPI 问题

[复制链接]
发表于 2016-6-5 23:31:15 | 显示全部楼层 |阅读模式
在学习火哥SPI与flash通信的教程,有个疑问
这个是火哥写8bit的函数
u8 SPI_FLASH_SendByte(u8 byte)
{
  /* Loop while DR register in not emplty */
  while (SPI_I2S_GetFlagStatus(SPI1, SPI_I2S_FLAG_TXE) == RESET);

  /* Send byte through the SPI1 peripheral */
  SPI_I2S_SendData(SPI1, byte);

  /* Wait to receive a byte */
  while (SPI_I2S_GetFlagStatus(SPI1, SPI_I2S_FLAG_RXNE) == RESET);

  /* Return the byte read from the SPI bus */
  return SPI_I2S_ReceiveData(SPI1);
}
但是SPI_I2S_SendData(SPI1, byte);看起来像是一个送16bit的函数,如下
void SPI_I2S_SendData(SPI_TypeDef* SPIx, uint16_t Data)
{
  /* Check the parameters */
  assert_param(IS_SPI_ALL_PERIPH(SPIx));

  /* Write in the DR register the data to be sent */
  SPIx->DR = Data;

}
求大侠帮忙解答下

回复

使用道具 举报

发表于 2016-6-6 00:01:56 | 显示全部楼层
帮顶。。。。。。。。。。。。。。。。。。。。。
回复

使用道具 举报

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

本版积分规则

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

GMT+8, 2025-1-12 05:53 , Processed in 0.029361 second(s), 23 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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