• 大小: 3.89KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-02-22
  • 标签: 程序  STM32  驱动  

资源简介

希望对大家有用

资源截图

代码片段和文件信息

#include “CS5532.h“


/************************************************************************* 
* 函数名称: SPI模块的初始化
* 函数描述:  
* 输入参数:  
* 输出参数: 无
* 返 回 值: 无
* 函数作者: 韩贵宾
* 创建日期: 2014-08-22
* 其他说明: 
**************************************************************************/  
void SPI_X_Init(void)
{
  GPIO_InitTypeDef GPIO_InitStructure;
   SPI_InitTypeDef  SPI_InitStructure;

RCC_APB2PeriphClockCmd( RCC_APB2Periph_GPIOB ENABLE );//PORTB时钟使能 
RCC_APB1PeriphClockCmd( RCC_APB1Periph_SPI2  ENABLE );//SPI2时钟使能 
 
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_13 | GPIO_Pin_14 | GPIO_Pin_15;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP; 
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOB &GPIO_InitStructure);

  GPIO_SetBits(GPIOBGPIO_Pin_13|GPIO_Pin_14|GPIO_Pin_15); 

SPI_InitStructure.SPI_Direction = SPI_Direction_2Lines_FullDuplex;  //SPI设置为双线双向全双工
SPI_InitStructure.SPI_Mode = SPI_Mode_Master; //设置为主SPI
SPI_InitStructure.SPI_DataSize = S

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件        692  2014-08-21 11:46  config.h

     文件      11300  2014-10-28 12:15  CS5532.c

     文件       1289  2014-10-28 12:13  CS5532.h

----------- ---------  ---------- -----  ----

                13281                    3


评论

共有 条评论