16 lines
491 B
C
16 lines
491 B
C
/*
|
|
* @Author: DaMingSY zxm5337@163.com
|
|
* @Date: 2024-09-02 08:54:40
|
|
* @LastEditors: DaMingSY zxm5337@163.com
|
|
* @LastEditTime: 2024-09-09 11:11:11
|
|
* @FilePath: \signal_generator\App\BLE\ble.c
|
|
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
|
|
*/
|
|
|
|
#include "ble.h"
|
|
|
|
void ble_send(UART_HandleTypeDef *huart, uint8_t *data)
|
|
{
|
|
usart_printf(huart, (char *)data);
|
|
}
|