CI130X SDK API手册  2.2.0
本手册用于描述CI130X SDK各个组件和驱动API
baudrate_calibrate.h
浏览该文件的文档.
1 
2 #ifndef __BAUDRATE_CALIBRATE_H__
3 #define __BAUDRATE_CALIBRATE_H__
4 
5 
6 #include "sdk_default_config.h"
7 #include "ci130x_system.h"
8 
9 typedef void(*send_sync_req_func_t)(void);
10 
11 // 波特率校准模块初始化函数
12 void baudrate_calibrate_init(UART_TypeDef *UARTx, uint32_t baudrate, send_sync_req_func_t send_sync_req_func);
13 
14 // 启动一次波特率校准
15 void baudrate_calibrate_start(void);
16 
17 // 如果正在进行波特率校准,停止这次波特率校准,下一次自动恢复
18 void baudrate_calibrate_stop(void);
19 
20 // 如果正在进行波特率校准,等到校准结束再返回
22 
23 // 语音协议模块收到同步ACK的时候,通过调用此接口告知已收到ACK。
25 
26 #endif /* UART_BAUDRATE_CALIBRATE */
27 
void baudrate_calibrate_set_ack()
void baudrate_calibrate_init(UART_TypeDef *UARTx, uint32_t baudrate, send_sync_req_func_t send_sync_req_func)
chip级定义
void baudrate_calibrate_start(void)
void baudrate_calibrate_stop(void)
Definition: ci130x_system.h:246
sdk配置文件
void baudrate_calibrate_wait_finish(void)
void(* send_sync_req_func_t)(void)
Definition: baudrate_calibrate.h:9