CH32V103C8T6 SPI 数据传输问题

测试 CH32V103C8T6 SPI 数据传输,代码如下:

#include "debug.h"

u8 TxData[8] = {0x12, 0x34, 0x56, 0x78, 0x90, 0xAB, 0xCD, 0xEF};

void SPI_Initialize(void)
{
    GPIO_InitTypeDef GPIO_InitStructure = {0};
    SPI_InitTypeDef  SPI_InitStructure = {0};

    RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA | RCC_APB2Periph_SPI1, ENABLE);

    GPIO_InitStructure.GPIO_Pin = GPIO_Pin_5;
    GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP;
    GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
    GPIO_Init(GPIOA, &GPIO_InitStructure);

    GPIO_InitStructure.GPIO_Pin = GPIO_Pin_7;
    GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP;
    GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
    GPIO_Init(GPIOA, &GPIO_InitStructure);

    SPI_InitStructure.SPI_Direction = SPI_Direction_1Line_Tx;
    SPI_InitStructure.SPI_Mode = SPI_Mode_Master;
    SPI_InitStructure.SPI_DataSize = SPI_DataSize_8b;
    SPI_InitStructure.SPI_CPOL = SPI_CPOL_High;
    SPI_InitStructure.SPI_CPHA = SPI_CPHA_2Edge;
    SPI_InitStructure.SPI_NSS = SPI_NSS_Soft;
    SPI_InitStructure.SPI_BaudRatePrescaler = SPI_BaudRatePrescaler_256;
    SPI_InitStructure.SPI_FirstBit = SPI_FirstBit_MSB;
    SPI_InitStructure.SPI_CRCPolynomial = 7;
    SPI_Init(SPI1, &SPI_InitStructure);

    SPI_Cmd(SPI1, ENABLE);
}

int main(void)
{
    Delay_Init();
    SPI_Initialize();
    Delay_Ms(2000);
    while(1)
    {
        for (u8 i = 0; i < 8; ++i) {
            while(SPI_I2S_GetFlagStatus(SPI1, SPI_I2S_FLAG_TXE) == RESET);
            SPI_I2S_SendData(SPI1, TxData[i]);
        }
        Delay_Ms(500);
    }
}

抓取到的输出数据(下图)有误:

1668950411174551.jpg

1668950411140774.jpg

发现在时钟上升沿(采样)时数据发生了跳变,图中红圈。为什么会出现这个问题??

您好,主机模式会在一字节最后1bit时,提前输出下一字节的第一bit,原因是如果是主机二分频连续发送,就是要实现尽快的发送出下一bit,这一实现机制没有区分分频比,所以在较大分频比下,逻辑分析仪粗略看来输出与采样边沿对齐,会造成从机采样错误;但事实上与二分频情况下相同,主机输出的数据一定会在采样边沿后保持一个pclk周期,同时,任何spi从机采样逻辑一定是在采样边沿处进行采样,所以虽然看起来主机最后1bit输出保持时间短,实际与从机通信过程中不会有任何问题。附件例程为SPI接收例程,你可以接收测试一下,接收不会有问题,如下图。

icon_rar.gifCH32V103 SPI接收.zip

image.png




只有登录才能回复,可以选择微信账号登录