2024-12-02 22:15:50 +08:00
|
|
|
#include "hc06.h"
|
2024-12-03 22:49:37 +08:00
|
|
|
|
|
|
|
#define BLUETOOTH_USART (USART1)
|
|
|
|
#define BLUETOOTH_BAUD (9600u)
|
|
|
|
// TX
|
|
|
|
#define BLUETOOTH_TX_GPIO_PORT (GPIOA)
|
|
|
|
#define BLUETOOTH_TX_GPIO_PIN (GPIO_Pin_9)
|
|
|
|
// RX
|
|
|
|
#define BLUETOOTH_RX_GPIO_PORT (GPIOA)
|
|
|
|
#define BLUETOOTH_RX_GPIO_PIN (GPIO_Pin_10)
|
|
|
|
|
|
|
|
void hc06_init(void)
|
|
|
|
{
|
|
|
|
;
|
|
|
|
}
|