无法让STM32F103RB usart1与hc-05通信

Can't get STM32F103RB usart1 to communicate with hc-05

我无法 USART_1 连接蓝牙 hc-05。微控制器是STM32F103RB。这是代码(我没有使用任何库)

#define APB2_FREQ 72000000

void USART1_Send(char* data)
{   
    unsigned int length = 0;
    while(data[length] != '[=10=]')
        ++length;       

    int i = 0;
    while(i < length)
    {
        while((USART1_SR & 0x00000080) == 0); // wait if transmit data register is not empty
        USART1_DR = data[i];
        ++i;
    }
}

char USART1_Receive()
{
    while((USART1_SR & 0x00000020) == 0);     //wait for data to arrive
    return USART1_DR;
}

void USART1_Init(int baudrate, short parity, short stop)
{
    RCC_APB2ENR |= 0x00004004;                // enable Port A, enable usart1 clock

    GPIOA_CRH &= 0xFFFFF00F;
    GPIOA_CRH |= 0x000004A0;                  // pin 9 = alternate function push-pull, pin 10 = Floating Input


    USART1_CR1 &= 0x00000000;                 // resetting the parity bit to 0(which is no parity) and "M bit" to 0(which is 8 bit data)

    if(parity == 1)                           // even parity
        USART1_CR1 |= 0x00000400;
    else if(parity == 2)
        USART1_CR1 |= 0x00000600;             // odd parity


    USART1_CR2 &= 0x00000000;                 // Reset USART_CR2, 1 stop bit
    if(stop == 2)
        USART1_CR2 |= 0x00002000;             // 2 stop bit

    USART1_BRR = APB2_FREQ /(baudrate);


    USART1_CR1 |= 0x00002000;                 // enable UART

    USART1_CR1 |= 0x0000000C;               // enable Transmiter, receiver
    USART1_Send("LINK OK:\r\n");
}

int main(void)
{   
    USART1_Init(9600, 0, 1);                  // 9600 baudrate, no parity, 1 stop bit

    while(1){
        USART1_Send("Hello World\n");
    }

    return (1);
}

以上程序,配置USART1并发送Hello World。当我运行 Keil uvision4 中的代码时,uart1 window 重复打印Hello World。

但是当我在STM32F103RB中烧录代码,并连接蓝牙并将蓝牙与我的手机配对时,它在手机的蓝牙终端应用程序上没有显示任何内容。

这是我连接电线的方式,

我已经用 arduino 尝试过相同的蓝牙,它工作正常。

谢谢!!!

知道了... 微控制器 运行 关闭 8 MHz HSI 作为系统时钟。

所以,有几个解决方案,

其中一种解决方案是将波特率计算中的时钟频率更改为8000000,

USART1_BRR = 8000000 /(baudrate);

另一个解决方案是将系统时钟增加到 72MHz。一种方法是配置 PLL,使其将 HSI 或 HSE 的时钟频率倍增至 72 MHz,然后使用 PLL 作为系统时钟。

希望这对某人有所帮助。