Files
刘可亮 3e10f578d3 v1.2.2
2025-10-21 13:59:50 +08:00

160 lines
4.9 KiB
C

#ifndef __RTOS__
#include <error.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdarg.h>
#include <errno.h>
#include <time.h>
#include <math.h>
#include <unistd.h>
#else
#include <linux/defs.h>
#include <linux/types.h>
#endif
#include "hgic.h"
#include "hgic_def.h"
#include "blenc.h"
#define RET_OK (0)
#define RET_ERR (-1)
#define os_malloc MALLOC
#define os_jiffies() time(NULL)
struct ble_rx_ctrl *ble_ctrl;
const uint8 adv_identify_info[ADV_IDENTIFY_SET_LEN] = {0x9f, 0x1a, 0x41, 0x10, 0x7d, 0xfd, 0xf0, 0x73}; // 识别头信息
const uint8 adv_addr[6] = {0x70, 0xaf, 0x1e, 0x7f, 0x0e, 0x7e}; // 广播地址
int32 hgic_blenc_parse_data(uint8 *data, int32 len)
{
if(!data || !ble_ctrl) {
//hgic_err("Input param error!\n");
return 0;
}
if(len <= ADV_DATA_MAX_LEN) {
memcpy(&ble_ctrl->adv_info, data, len);
}else {
hgic_err("Error,return!\n");
return 0;
}
if(ble_ctrl->adv_info.header_info.pdu_type != ADV_DISCOVER_TYPE) {
return 0;
}
if(ble_ctrl->adv_info.payload_info.manufacturer_id != ADV_MANUFACTURER_ID) {
hgic_err("Error,return!\n");
return 0;
}
#if (ADV_IDENTIFY_SET_LEN > 0 && ADV_IDENTIFY_SET_LEN < ADV_IDENTIFY_MAX_LEN)
if(memcmp(ble_ctrl->adv_info.payload_info.identify_info, adv_identify_info, ADV_IDENTIFY_SET_LEN) != 0) {
hgic_err("Error,return!\n");
return 0;
}
#endif
//接收超时
if(os_jiffies()-ble_ctrl->adv_pro.cur_tick >= ble_ctrl->adv_pro.rec_overtime) {
if(ble_ctrl->adv_info.payload_info.section_idx == 0) {
ble_ctrl->adv_pro.cur_tick = os_jiffies();
ble_ctrl->adv_pro.section_num = ble_ctrl->adv_info.payload_info.section_num;
ble_ctrl->adv_pro.rec_overtime = (ble_ctrl->adv_pro.section_num+1);
ble_ctrl->adv_pro.section_idx = 0;
ble_ctrl->adv_pro.byte_offset_len = 0;
ble_ctrl->adv_pro.len = 0;
ble_ctrl->adv_pro.start_flag = 1;
}else {
ble_ctrl->adv_pro.start_flag = 0;
}
}
if((ble_ctrl->adv_pro.start_flag == 1) && (ble_ctrl->adv_info.payload_info.section_num == ble_ctrl->adv_pro.section_num)) {
if(ble_ctrl->adv_info.payload_info.section_idx == ble_ctrl->adv_pro.section_idx) {
memcpy(ble_ctrl->adv_pro.data + ble_ctrl->adv_pro.byte_offset_len, ble_ctrl->adv_info.payload_info.data, ble_ctrl->adv_info.payload_info.byte_len);
ble_ctrl->adv_pro.byte_offset_len += ble_ctrl->adv_info.payload_info.byte_len;
++ble_ctrl->adv_pro.section_idx;
}
if(ble_ctrl->adv_info.payload_info.section_num == ble_ctrl->adv_pro.section_idx) {
ble_ctrl->adv_pro.len = ble_ctrl->adv_pro.byte_offset_len;
ble_ctrl->adv_pro.start_flag = 0;
return 1;
}
}
hgic_err("Error,return!\n");
return 0;
}
int32 hgic_blenc_get_data(uint8 **data)
{
if(ble_ctrl->adv_pro.data == NULL) {
return 0;
}else {
*data = ble_ctrl->adv_pro.data;
return ble_ctrl->adv_pro.len;
}
}
int32 hgic_blenc_tx_data(uint8 *data, int32 len)
{
uint8 section_num = 0;
uint8 section_idx = 0;
uint16 last_section_len = 0;
uint16 start_pos = 0;
uint16 cur_section_len = 0;
struct ble_adv_info adv_info;
if((data == NULL) || (len <= 0) || (len > 250 * ADV_MAX_SECTION_LEN)) { //section_num:1byte(255)
return RET_ERR;
}
section_num = ceil(len / (float)ADV_MAX_SECTION_LEN);
last_section_len = len - (section_num - 1) * ADV_MAX_SECTION_LEN;
adv_info.header_info.pdu_type = ADV_DISCOVER_TYPE;
adv_info.header_info.tx_add = 1;
adv_info.header_info.rx_add = 0;
memcpy(adv_info.payload_info.addr, adv_addr, 6);
adv_info.payload_info.ad_type = 0xFF;
adv_info.payload_info.manufacturer_id = ADV_MANUFACTURER_ID;
memcpy(adv_info.payload_info.identify_info, adv_identify_info, ADV_IDENTIFY_SET_LEN);
while(1) {
start_pos = section_idx * ADV_MAX_SECTION_LEN;
if(section_idx < section_num - 1) {
cur_section_len = ADV_MAX_SECTION_LEN;
}else {
cur_section_len = last_section_len;
}
adv_info.header_info.length = 6 + 4 + ADV_IDENTIFY_SET_LEN + 3 + cur_section_len; //addr+(1E FF 04 41)+ADV_IDENTIFY_SET_LEN+section_num+section_idx+byte_len+data
adv_info.payload_info.ad_len = 3 + ADV_IDENTIFY_SET_LEN + 3 + cur_section_len; //(FF 04 41)+ADV_IDENTIFY_SET_LEN+section_num+section_idx+byte_len+data
adv_info.payload_info.section_num = section_num;
adv_info.payload_info.section_idx = section_idx;
adv_info.payload_info.byte_len = cur_section_len;
memcpy(adv_info.payload_info.data, data + start_pos, cur_section_len);
hgic_iwpriv_send_blenc_data("hg0", &adv_info, adv_info.header_info.length + 2); // adv_header(2byte)
section_idx = section_idx + 1;
if(section_idx >= section_num) {
break;
}
}
return RET_OK;
}
int32 hgic_blenc_init(void)
{
if(ble_ctrl == NULL) {
ble_ctrl = (struct ble_rx_ctrl *)MALLOC(sizeof(struct ble_rx_ctrl));
}
memset(ble_ctrl, 0x0, sizeof(struct ble_rx_ctrl));
return ble_ctrl ? RET_OK : RET_ERR;
}
int32 hgic_blenc_release(void)
{
if(ble_ctrl) {
memset(ble_ctrl, 0x0, sizeof(struct ble_rx_ctrl));
}
return RET_OK;
}