16 lines
327 B
C
16 lines
327 B
C
#include "hc06.h"
|
|
|
|
#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)
|
|
{
|
|
;
|
|
}
|