你好!
我正在使用sample
1.为什么我使用这个例程的蓝牙广播数据只有蓝牙名称,另一个字段是空白的。如何在蓝牙广播包中添加蓝牙服务和蓝牙MAC地址等数据?
2.我使用手机连接到此设备,我使用我的手机将数据发送到设备。为什么CA没有设备收到它?
希望尽快回复,非常感谢!以下是我的代码。
ble_peripheral_start();
ble_register_app();
ble_gap_device_name_set(“自定义BLE服务”,ATT_PERM_NONE);
const mcs_characteristic_config_t custom_service_1 [] = {
/ *初始化特征属性* /
特征_declaration(ff02,charactistic_attr_value_max_bytes,
char_write_prop_en,char_read_prop_dis,char_notif_none,null,
set_var_value_cb1,null,null),
特征_declaration(ff01,charactistic_attr_value_max_bytes,
char_write_prop_dis,char_read_prop_dis,char_notif_notif_en,null,
get_var_value_cb,set_var_value_cb,event_sent_cb)
};
service_declaration(custom_service_1,ff00)
/ *设置蓝牙地址* /
ble_gap_address_set(&user_bd_address,0x00ff);
ble_gap_adv_intv_set(min_interval_ms,max_interval_ms);
ble_gap_addata_set(sizeof(adv_data),adv_data,0,null);
ble_gap_adv_start(gap_conn_mode_undirected);
你好呀,
谢谢你的问题在线。是否有可能对您的问题提供更多澄清?
谢谢,PM_DIALOG.
你好,
非常感谢!广播问题已得到解决。
你好呀,
很高兴你解决了你的问题,谢谢接受我的答案。
谢谢,PM_DIALOG.