Initial commit: TXW82x FPV v2.7.0.7-42229 SDK + project sources

This commit is contained in:
2026-07-06 11:30:13 +08:00
commit e76462eeb7
3451 changed files with 1415300 additions and 0 deletions

View File

@@ -0,0 +1,46 @@
/**
******************************************************************************
* @file sdk\include\lib\bluetooth\uble
* @author TAIXIN-SEMI Application Team
* @version V2.0.0
* @date 03-07-2025
* @brief This file contains three BLE configuration network features.
******************************************************************************
* @attention
*
* COPYRIGHT 2023 TAIXIN-SEMI
*
******************************************************************************
*/
/* Define to prevent recursive inclusion -------------------------------------*/
#ifndef _BLE_DEMO_H_
#define _BLE_DEMO_H_
#ifdef __cplusplus
extern "C" {
#endif
/* Includes ------------------------------------------------------------------*/
#include "lib/bluetooth/hci/hci_host.h"
#include "lib/bluetooth/uble/uble.h"
#include "lib/bluetooth/uble/ble_adv.h"
enum switch_type
{
WIRELESS_WIFI,
WIRELESS_BLE,
};
void ble_adv_parse_param(uint8 *data, uint32 len);
int32 ble_demo_init(void);
int32 ble_set_mode(uint8 mode, uint8 chan);
int32 ble_set_coexist_en(uint8 coexist, uint8 dec_duty);
#ifdef __cplusplus
}
#endif
#endif
/*************************** (C) COPYRIGHT 2023 TAIXIN-SEMI ***** END OF FILE *****/