├── 6256 ├── 6256.patch └── BCM4345C5.hcd ├── 0001_modify_f2fs_to ext4.patch ├── 3126_9.0蓝牙设置重影显示.patch ├── 3399蓝牙电话功能hfp.zip ├── 3399蓝牙电话功能hfp ├── 3399PCM主从模式配制.txt ├── 3399蓝牙电话功能hfp8.1_9.0_10.0.zip ├── 3399蓝牙通话hfp8.1 │ ├── 3399蓝牙修改.txt │ ├── 8.1_pcm_config.png │ └── [rk3399]挖掘机添加蓝牙通话功能.pdf ├── 3399蓝牙通话hfp9.0 │ ├── Bluetooth User Guide for Android 9_v0.3.pdf │ ├── android9.0_hfp_modify.patch │ ├── host_pcm_out.jpg │ ├── pcm_clock(512K).jpg │ ├── pcm_sync(8k).jpg │ ├── readme.txt │ └── tinyalsa_hal │ │ ├── Android.mk │ │ ├── alsa_audio.h │ │ ├── alsa_mixer.c │ │ ├── alsa_route.c │ │ ├── amix.c │ │ ├── asound.h │ │ ├── audio_bitstream.c │ │ ├── audio_bitstream.h │ │ ├── audio_hw.c │ │ ├── audio_hw.h │ │ ├── audio_hw_hdmi.c │ │ ├── audio_hw_hdmi.h │ │ ├── audio_setting.c │ │ ├── audio_setting.h │ │ ├── codec_config │ │ ├── config.h │ │ ├── config_list.h │ │ ├── cx2072_config.h │ │ ├── default_config.h │ │ ├── es8316_config.h │ │ ├── es8396_config.h │ │ ├── hdmi_analog_config.h │ │ ├── mixer_paths.xml │ │ ├── rk616_config.h │ │ ├── rk_audio.mk │ │ ├── rt3224_config.h │ │ ├── rt3261_config.h │ │ ├── rt5616_config.h │ │ ├── rt5640_config.h │ │ ├── rt5651_config.h │ │ └── wm8960_config.h │ │ ├── voice_preprocess.c │ │ └── voice_preprocess.h ├── 8.0_pcm.diff ├── PCM配置.png ├── QQ截图20200716154156.png └── README.md ├── 5.1的蓝牙data目录不一样 ├── README.md ├── bt_config.old └── bt_config.xml ├── 71sink-rtk.rar ├── 8.1(解决8.1权限问题蓝牙打不开拿不了vendor) ├── 8.1-rtl-usbbt(solve usb device not pemit).rar └── 8.1-rtl-usbbt │ ├── Firmware │ ├── BT_Firmware.mk │ ├── UART_2M │ │ ├── rtl8703as_config │ │ ├── rtl8703bs_config │ │ ├── rtl8703cs_config │ │ ├── rtl8723as_config │ │ ├── rtl8723bs_VQ0_config │ │ ├── rtl8723bs_config │ │ ├── rtl8723cs_cg_config │ │ ├── rtl8723cs_vf_config │ │ ├── rtl8723cs_xx_config │ │ ├── rtl8723ds_config │ │ ├── rtl8761at_config │ │ ├── rtl8821as_config │ │ ├── rtl8821cs_config │ │ └── rtl8822bs_config │ ├── fw_info.txt │ ├── rtl8703as_config │ ├── rtl8703as_fw │ ├── rtl8703bs_config │ ├── rtl8703bs_fw │ ├── rtl8703cs_config │ ├── rtl8703cs_fw │ ├── rtl8723a_config │ ├── rtl8723a_config_addr │ ├── rtl8723a_fw │ ├── rtl8723as_config │ ├── rtl8723as_fw │ ├── rtl8723b_config │ ├── rtl8723b_config_2Ant_S0 │ ├── rtl8723b_fw │ ├── rtl8723bs_VQ0_config │ ├── rtl8723bs_VQ0_fw │ ├── rtl8723bs_config │ ├── rtl8723bs_fw │ ├── rtl8723bu_config │ ├── rtl8723c_fw │ ├── rtl8723cs_cg_config │ ├── rtl8723cs_cg_fw │ ├── rtl8723cs_vf_config │ ├── rtl8723cs_vf_fw │ ├── rtl8723cs_xx_config │ ├── rtl8723cs_xx_fw │ ├── rtl8723d_config │ ├── rtl8723d_fw │ ├── rtl8723ds_config │ ├── rtl8723ds_fw │ ├── rtl8761a_config │ ├── rtl8761at8192ee_fw │ ├── rtl8761at8812ae_fw │ ├── rtl8761at_config │ ├── rtl8761at_fw │ ├── rtl8761au8192ee_fw │ ├── rtl8761au8812ae_fw │ ├── rtl8761au_fw │ ├── rtl8761aw8192eu_config │ ├── rtl8761aw8192eu_fw │ ├── rtl8821a_config │ ├── rtl8821a_fw │ ├── rtl8821as_config │ ├── rtl8821as_fw │ ├── rtl8821c_config │ ├── rtl8821c_fw │ ├── rtl8821cs_config │ ├── rtl8821cs_fw │ ├── rtl8822b_config │ ├── rtl8822b_fw │ ├── rtl8822bs_config │ ├── rtl8822bs_fw │ ├── rtl8822c_config │ ├── rtl8822c_fw │ ├── rtl8822cs_config │ └── rtl8822cs_fw │ ├── README.md │ ├── bt-usb-selinux.patch │ ├── libbt-vendor │ ├── Android.mk │ ├── codec │ │ ├── Android.mk │ │ └── sbc │ │ │ ├── formats.h │ │ │ ├── sbc.c │ │ │ ├── sbc.h │ │ │ ├── sbc_math.h │ │ │ ├── sbc_primitives.c │ │ │ ├── sbc_primitives.h │ │ │ ├── sbc_primitives_armv6.c │ │ │ ├── sbc_primitives_armv6.h │ │ │ ├── sbc_primitives_iwmmxt.c │ │ │ ├── sbc_primitives_iwmmxt.h │ │ │ ├── sbc_primitives_mmx.c │ │ │ ├── sbc_primitives_mmx.h │ │ │ ├── sbc_primitives_neon.c │ │ │ ├── sbc_primitives_neon.h │ │ │ ├── sbc_private.h │ │ │ └── sbc_tables.h │ ├── include │ │ ├── bt_list.h │ │ ├── bt_skbuff.h │ │ ├── bt_vendor_rtk.h │ │ ├── hci_h5_int.h │ │ ├── rtk_btsnoop_net.h │ │ ├── rtk_common.h │ │ ├── rtk_hcidefs.h │ │ ├── rtk_parse.h │ │ ├── rtk_socket.h │ │ ├── upio.h │ │ └── userial_vendor.h │ └── src │ │ ├── Android.mk │ │ ├── bt_list.c │ │ ├── bt_skbuff.c │ │ ├── bt_vendor_rtk.c │ │ ├── hardware.c │ │ ├── hci_h5.c │ │ ├── rtk_btsnoop_net.c │ │ ├── rtk_parse.c │ │ ├── rtk_socket.c │ │ ├── upio.c │ │ └── userial_vendor.c │ └── linux │ └── drivers │ └── bluetooth │ ├── Kconfig │ ├── Makefile │ ├── rtk_btcoex.c │ ├── rtk_btcoex.h │ ├── rtk_btusb.c │ └── rtk_btusb.h ├── 8250_20190125.tar.gz ├── 8250_l_test2.rar ├── 8250_test1.rar ├── 8723DS模组图.png ├── 8723bu报错没有P2P节点.md ├── 8822cs └── wifi_8822cs驱动修改.diff ├── 9.0回连不上autoconnecterr.patch ├── A2dpSinkStreamHandler(需要改成提示响起的时候,手机端自动暂停播放,提示音结束后,手机端自动继续播放。).java ├── AP6275S.rar ├── AP6XXX_PIN TO PIN_REFERENCE DESIGN WO NFC_V2.4_06072015_看图王.pdf ├── AP6XXX模组图.png ├── AP6XXX模组蓝牙分析.png ├── AVRCP ├── QQ截图20191010154134.png ├── QQ截图20191010160002.png ├── README.md └── 提示音audio触发avrcp发送pause和play.cfa ├── Android 7.1 A2DP Sink patch20180117 ├── README.md └── sinkAndsrc1106.patch ├── BQB ├── AVRCP降版本.diff ├── BQB申请表-附表一.docx ├── BQB申请表.docx ├── README.md ├── YD_BQB_new.zip ├── YD_new.zip └── 天河致远BQB测试patch.zip ├── IO类问题排查总结 (1).pdf ├── L2CAP └── README.md ├── PCM setting_Description_v03.pdf ├── PCM ├── PCM_libbt.patch └── README.md ├── PCM蓝牙audio关系简述.md ├── Part-E1-SDIO-Specification-Ver4.00-Final-120220.pdf ├── README.md ├── RK912 Patch Android 8.1 9.0 Kernel 4.4 20191008.zip ├── RK平台AP WIFI自定义MAC地址.pdf ├── RTK7.1蓝牙作sink和source可以同时使用.rar ├── SDIO3.0.diff ├── WIFI BT射频测试报告.xlsx ├── WIFI国家码.md ├── Wi-Fi_Display_Technical_Specification_v2.1_0.pdf ├── Wifidisplay ├── Rockchip_Introduction_Wifidisplay_CN.docx ├── Rockchip_Introduction_Wifidisplay_CN.pdf └── Wi-Fi_Display_Technical_Specification_v2.1_0.pdf ├── andriod_fix_bt_name_lose蓝牙setting修改名称后及时保存.diff ├── ble ├── BLE广播.png └── android使用静态ble地址.md ├── bt_config_conf.md ├── bt_uart_cmd_test ├── Android.mk ├── README.md └── brcm_patchram_plus.c ├── cscope_files.md ├── debug模板.md ├── doze模式(wifi灭屏后一段时间无法ping).md ├── dual_wifi_patch_for_android7.1_and_android8.1.rar ├── dual_wifi_patch_for_android9.0.zip ├── iPerf_for_mid.rar ├── ibeacon(ble拓展模式,主要修改拿到handle,上层还需客户开发) ├── QQ截图20200703175849.png ├── README.md ├── base.apk ├── checkBleModeApp.7z └── ibeacon.patch ├── ip6 └── README.md ├── le_enhance ├── QQ截图20200608172930.png └── README.md ├── opp ├── BtOppObexServer.log ├── BtOppService.log ├── bttransamefile(传文件第一台设备点击拒接后,连第二台设备发送不了).patch └── obex连接不支持push设备第二次连支持的设备也传不了.md ├── rk312x_5_1_opp不能传文件弹出框没得选.patch ├── rk3229_wifi_bt_32k_from_cpu.diff ├── rk3308linux平台调通的_rtl8723d_config ├── rlt8821cs蓝牙wifi移植可作其它模块移植参考 ├── rk32297.1_rtl8821cs_20180921_COEX20180712-3232.tgz └── rtl8821cs │ ├── 4.4_5.1_6.0 │ ├── firmware │ │ ├── rtl8821c_config │ │ ├── rtl8821c_fw │ │ ├── rtl8821cs_config │ │ └── rtl8821cs_fw │ └── libbt-vendor │ │ ├── Android.mk │ │ ├── uart │ │ ├── Android.mk │ │ ├── include │ │ │ ├── bt_vendor_rtk.h │ │ │ ├── upio.h │ │ │ ├── userial_vendor.h │ │ │ └── vnd_buildcfg.h │ │ └── src │ │ │ ├── bt_vendor_rtk.c │ │ │ ├── hardware.c │ │ │ ├── upio.c │ │ │ └── userial_vendor.c │ │ └── usb │ │ ├── Android.mk │ │ ├── include │ │ ├── bt_vendor_rtk.h │ │ └── vnd_buildcfg.h │ │ └── src │ │ └── bt_vendor_rtk.c │ ├── README.md │ ├── hardware_realtek_rtkbt.tgz │ ├── rtkbt │ ├── Android.mk │ ├── addon │ │ └── fw │ │ │ ├── rtl8703as_fw.B_473d │ │ │ ├── rtl8703bs_fw.A_5240_B_0b00 │ │ │ ├── rtl8703cs_fw.A_5844_B_0202_C_0a0a │ │ │ ├── rtl8723a_fw │ │ │ ├── rtl8723as_fw │ │ │ ├── rtl8723b_fw.A_4940_B_664a │ │ │ ├── rtl8723bs_VQ0_fw.A_4940_B_6549 │ │ │ ├── rtl8723bs_fw.A_4940_B_664a │ │ │ ├── rtl8723c_fw.A_5240_B_0700 │ │ │ ├── rtl8723cs_cg_fw.A_5240_B_5844 │ │ │ ├── rtl8723cs_vf_fw.A_5240_B_5844 │ │ │ ├── rtl8723cs_xx_fw.A_5240_B_0b00 │ │ │ ├── rtl8723d_fw.A_5844_B_0202_C_0a0a │ │ │ ├── rtl8723ds_fw.A_5844_B_0202_C_0a0a │ │ │ ├── rtl8761at_fw.B_3736_C_413a_D_4139 │ │ │ ├── rtl8761au8192ee_fw.B_3736_C_413a_D_4139 │ │ │ ├── rtl8761au8812ae_fw.B_3736_C_413a_D_4139 │ │ │ ├── rtl8761au_fw.B_3736_C_413a_D_4139 │ │ │ ├── rtl8761aw8192eu_fw.B_3736_C_413a_D_4139 │ │ │ ├── rtl8821a_fw.A_5050_B_6158 │ │ │ ├── rtl8821as_fw.A_5050_B_6158 │ │ │ ├── rtl8821c_fw.A_0202 │ │ │ ├── rtl8821cs_fw.A_0202 │ │ │ ├── rtl8822b_fw.A_0443_B_0443_C_1600 │ │ │ └── rtl8822bs_fw.A_5240_B_0443_C_1600 │ ├── bluetooth │ │ └── bdroid_buildcfg.h │ ├── code │ │ ├── Android.mk │ │ ├── bt │ │ │ ├── .gn │ │ │ ├── Android.mk │ │ │ ├── BUILD.gn │ │ │ ├── CleanSpec.mk │ │ │ ├── MODULE_LICENSE_APACHE2 │ │ │ ├── NOTICE │ │ │ ├── README.md │ │ │ ├── audio_a2dp_hw │ │ │ │ ├── Android.mk.disabled │ │ │ │ ├── BUILD.gn │ │ │ │ ├── audio_a2dp_hw.c │ │ │ │ └── audio_a2dp_hw.h │ │ │ ├── bta │ │ │ │ ├── Android.mk │ │ │ │ ├── BUILD.gn │ │ │ │ ├── ag │ │ │ │ │ ├── bta_ag_act.c │ │ │ │ │ ├── bta_ag_api.c │ │ │ │ │ ├── bta_ag_at.c │ │ │ │ │ ├── bta_ag_at.h │ │ │ │ │ ├── bta_ag_cfg.c │ │ │ │ │ ├── bta_ag_ci.c │ │ │ │ │ ├── bta_ag_cmd.c │ │ │ │ │ ├── bta_ag_int.h │ │ │ │ │ ├── bta_ag_main.c │ │ │ │ │ ├── bta_ag_rfc.c │ │ │ │ │ ├── bta_ag_sco.c │ │ │ │ │ └── bta_ag_sdp.c │ │ │ │ ├── ar │ │ │ │ │ ├── bta_ar.c │ │ │ │ │ └── bta_ar_int.h │ │ │ │ ├── av │ │ │ │ │ ├── bta_av_aact.c │ │ │ │ │ ├── bta_av_act.c │ │ │ │ │ ├── bta_av_api.c │ │ │ │ │ ├── bta_av_cfg.c │ │ │ │ │ ├── bta_av_ci.c │ │ │ │ │ ├── bta_av_int.h │ │ │ │ │ ├── bta_av_main.c │ │ │ │ │ ├── bta_av_sbc.c │ │ │ │ │ └── bta_av_ssm.c │ │ │ │ ├── dm │ │ │ │ │ ├── bta_dm_act.c │ │ │ │ │ ├── bta_dm_api.c │ │ │ │ │ ├── bta_dm_cfg.c │ │ │ │ │ ├── bta_dm_ci.c │ │ │ │ │ ├── bta_dm_int.h │ │ │ │ │ ├── bta_dm_main.c │ │ │ │ │ ├── bta_dm_pm.c │ │ │ │ │ └── bta_dm_sco.c │ │ │ │ ├── gatt │ │ │ │ │ ├── bta_gattc_act.c │ │ │ │ │ ├── bta_gattc_api.c │ │ │ │ │ ├── bta_gattc_cache.c │ │ │ │ │ ├── bta_gattc_int.h │ │ │ │ │ ├── bta_gattc_main.c │ │ │ │ │ ├── bta_gattc_utils.c │ │ │ │ │ ├── bta_gatts_act.c │ │ │ │ │ ├── bta_gatts_api.c │ │ │ │ │ ├── bta_gatts_int.h │ │ │ │ │ ├── bta_gatts_main.c │ │ │ │ │ └── bta_gatts_utils.c │ │ │ │ ├── hf_client │ │ │ │ │ ├── bta_hf_client_act.c │ │ │ │ │ ├── bta_hf_client_api.c │ │ │ │ │ ├── bta_hf_client_at.c │ │ │ │ │ ├── bta_hf_client_at.h │ │ │ │ │ ├── bta_hf_client_cmd.c │ │ │ │ │ ├── bta_hf_client_int.h │ │ │ │ │ ├── bta_hf_client_main.c │ │ │ │ │ ├── bta_hf_client_rfc.c │ │ │ │ │ ├── bta_hf_client_sco.c │ │ │ │ │ └── bta_hf_client_sdp.c │ │ │ │ ├── hh │ │ │ │ │ ├── bta_hh_act.c │ │ │ │ │ ├── bta_hh_api.c │ │ │ │ │ ├── bta_hh_cfg.c │ │ │ │ │ ├── bta_hh_int.h │ │ │ │ │ ├── bta_hh_le.c │ │ │ │ │ ├── bta_hh_main.c │ │ │ │ │ └── bta_hh_utils.c │ │ │ │ ├── hl │ │ │ │ │ ├── bta_hl_act.c │ │ │ │ │ ├── bta_hl_api.c │ │ │ │ │ ├── bta_hl_ci.c │ │ │ │ │ ├── bta_hl_int.h │ │ │ │ │ ├── bta_hl_main.c │ │ │ │ │ ├── bta_hl_sdp.c │ │ │ │ │ └── bta_hl_utils.c │ │ │ │ ├── include │ │ │ │ │ ├── bta_ag_api.h │ │ │ │ │ ├── bta_ag_ci.h │ │ │ │ │ ├── bta_ag_co.h │ │ │ │ │ ├── bta_api.h │ │ │ │ │ ├── bta_ar_api.h │ │ │ │ │ ├── bta_av_api.h │ │ │ │ │ ├── bta_av_ci.h │ │ │ │ │ ├── bta_av_co.h │ │ │ │ │ ├── bta_av_sbc.h │ │ │ │ │ ├── bta_dm_ci.h │ │ │ │ │ ├── bta_dm_co.h │ │ │ │ │ ├── bta_gatt_api.h │ │ │ │ │ ├── bta_gatts_co.h │ │ │ │ │ ├── bta_hf_client_api.h │ │ │ │ │ ├── bta_hh_api.h │ │ │ │ │ ├── bta_hh_co.h │ │ │ │ │ ├── bta_hl_api.h │ │ │ │ │ ├── bta_hl_ci.h │ │ │ │ │ ├── bta_hl_co.h │ │ │ │ │ ├── bta_jv_api.h │ │ │ │ │ ├── bta_jv_co.h │ │ │ │ │ ├── bta_mce_api.h │ │ │ │ │ ├── bta_op_api.h │ │ │ │ │ ├── bta_pan_api.h │ │ │ │ │ ├── bta_pan_ci.h │ │ │ │ │ ├── bta_pan_co.h │ │ │ │ │ ├── bta_sdp_api.h │ │ │ │ │ └── utl.h │ │ │ │ ├── jv │ │ │ │ │ ├── bta_jv_act.c │ │ │ │ │ ├── bta_jv_api.c │ │ │ │ │ ├── bta_jv_cfg.c │ │ │ │ │ ├── bta_jv_int.h │ │ │ │ │ └── bta_jv_main.c │ │ │ │ ├── mce │ │ │ │ │ ├── bta_mce_act.c │ │ │ │ │ ├── bta_mce_api.c │ │ │ │ │ ├── bta_mce_cfg.c │ │ │ │ │ ├── bta_mce_int.h │ │ │ │ │ └── bta_mce_main.c │ │ │ │ ├── pan │ │ │ │ │ ├── bta_pan_act.c │ │ │ │ │ ├── bta_pan_api.c │ │ │ │ │ ├── bta_pan_ci.c │ │ │ │ │ ├── bta_pan_int.h │ │ │ │ │ └── bta_pan_main.c │ │ │ │ ├── pb │ │ │ │ │ └── bta_pbs_int.h │ │ │ │ ├── sdp │ │ │ │ │ ├── bta_sdp.c │ │ │ │ │ ├── bta_sdp_act.c │ │ │ │ │ ├── bta_sdp_api.c │ │ │ │ │ ├── bta_sdp_cfg.c │ │ │ │ │ └── bta_sdp_int.h │ │ │ │ └── sys │ │ │ │ │ ├── bta_sys.h │ │ │ │ │ ├── bta_sys_conn.c │ │ │ │ │ ├── bta_sys_int.h │ │ │ │ │ ├── bta_sys_main.c │ │ │ │ │ └── utl.c │ │ │ ├── btcore │ │ │ │ ├── Android.mk │ │ │ │ ├── BUILD.gn │ │ │ │ ├── include │ │ │ │ │ ├── bdaddr.h │ │ │ │ │ ├── device_class.h │ │ │ │ │ ├── device_features.h │ │ │ │ │ ├── event_mask.h │ │ │ │ │ ├── hal_util.h │ │ │ │ │ ├── iac.h │ │ │ │ │ ├── module.h │ │ │ │ │ ├── osi_module.h │ │ │ │ │ ├── property.h │ │ │ │ │ ├── uuid.h │ │ │ │ │ └── version.h │ │ │ │ ├── src │ │ │ │ │ ├── bdaddr.c │ │ │ │ │ ├── device_class.c │ │ │ │ │ ├── hal_util.c │ │ │ │ │ ├── module.c │ │ │ │ │ ├── osi_module.c │ │ │ │ │ ├── property.c │ │ │ │ │ └── uuid.c │ │ │ │ └── test │ │ │ │ │ ├── bdaddr_test.cpp │ │ │ │ │ ├── device_class_test.cpp │ │ │ │ │ ├── property_test.cpp │ │ │ │ │ └── uuid_test.cpp │ │ │ ├── btif │ │ │ │ ├── Android.mk │ │ │ │ ├── BUILD.gn │ │ │ │ ├── co │ │ │ │ │ ├── bta_ag_co.c │ │ │ │ │ ├── bta_av_co.c │ │ │ │ │ ├── bta_dm_co.c │ │ │ │ │ ├── bta_gatts_co.c │ │ │ │ │ ├── bta_hh_co.c │ │ │ │ │ ├── bta_hl_co.c │ │ │ │ │ └── bta_pan_co.c │ │ │ │ ├── include │ │ │ │ │ ├── btif_api.h │ │ │ │ │ ├── btif_av.h │ │ │ │ │ ├── btif_av_api.h │ │ │ │ │ ├── btif_av_co.h │ │ │ │ │ ├── btif_avrcp_audio_track.h │ │ │ │ │ ├── btif_common.h │ │ │ │ │ ├── btif_config.h │ │ │ │ │ ├── btif_config_transcode.h │ │ │ │ │ ├── btif_debug.h │ │ │ │ │ ├── btif_debug_btsnoop.h │ │ │ │ │ ├── btif_debug_conn.h │ │ │ │ │ ├── btif_dm.h │ │ │ │ │ ├── btif_gatt.h │ │ │ │ │ ├── btif_gatt_multi_adv_util.h │ │ │ │ │ ├── btif_gatt_util.h │ │ │ │ │ ├── btif_hh.h │ │ │ │ │ ├── btif_hl.h │ │ │ │ │ ├── btif_mce.h │ │ │ │ │ ├── btif_media.h │ │ │ │ │ ├── btif_pan.h │ │ │ │ │ ├── btif_pan_internal.h │ │ │ │ │ ├── btif_profile_queue.h │ │ │ │ │ ├── btif_sdp.h │ │ │ │ │ ├── btif_sm.h │ │ │ │ │ ├── btif_sock.h │ │ │ │ │ ├── btif_sock_l2cap.h │ │ │ │ │ ├── btif_sock_rfc.h │ │ │ │ │ ├── btif_sock_sco.h │ │ │ │ │ ├── btif_sock_sdp.h │ │ │ │ │ ├── btif_sock_thread.h │ │ │ │ │ ├── btif_sock_util.h │ │ │ │ │ ├── btif_storage.h │ │ │ │ │ ├── btif_uid.h │ │ │ │ │ ├── btif_util.h │ │ │ │ │ ├── stack_manager.h │ │ │ │ │ └── uinput.h │ │ │ │ ├── src │ │ │ │ │ ├── bluetooth.c │ │ │ │ │ ├── btif_av.c │ │ │ │ │ ├── btif_avrcp_audio_track.cpp │ │ │ │ │ ├── btif_config.c │ │ │ │ │ ├── btif_config_transcode.cpp │ │ │ │ │ ├── btif_core.c │ │ │ │ │ ├── btif_debug.c │ │ │ │ │ ├── btif_debug_btsnoop.c │ │ │ │ │ ├── btif_debug_conn.c │ │ │ │ │ ├── btif_dm.c │ │ │ │ │ ├── btif_gatt.c │ │ │ │ │ ├── btif_gatt_client.c │ │ │ │ │ ├── btif_gatt_multi_adv_util.c │ │ │ │ │ ├── btif_gatt_server.c │ │ │ │ │ ├── btif_gatt_test.c │ │ │ │ │ ├── btif_gatt_util.c │ │ │ │ │ ├── btif_hf.c │ │ │ │ │ ├── btif_hf_client.c │ │ │ │ │ ├── btif_hh.c │ │ │ │ │ ├── btif_hl.c │ │ │ │ │ ├── btif_mce.c │ │ │ │ │ ├── btif_media_task.c │ │ │ │ │ ├── btif_pan.c │ │ │ │ │ ├── btif_profile_queue.c │ │ │ │ │ ├── btif_rc.c │ │ │ │ │ ├── btif_sdp.c │ │ │ │ │ ├── btif_sdp_server.c │ │ │ │ │ ├── btif_sm.c │ │ │ │ │ ├── btif_sock.c │ │ │ │ │ ├── btif_sock_l2cap.c │ │ │ │ │ ├── btif_sock_rfc.c │ │ │ │ │ ├── btif_sock_sco.c │ │ │ │ │ ├── btif_sock_sdp.c │ │ │ │ │ ├── btif_sock_thread.c │ │ │ │ │ ├── btif_sock_util.c │ │ │ │ │ ├── btif_storage.c │ │ │ │ │ ├── btif_uid.c │ │ │ │ │ ├── btif_util.c │ │ │ │ │ └── stack_manager.c │ │ │ │ └── test │ │ │ │ │ └── btif_storage_test.cpp │ │ │ ├── build │ │ │ │ ├── BUILD.gn │ │ │ │ ├── config │ │ │ │ │ └── BUILDCONFIG.gn │ │ │ │ ├── secondary │ │ │ │ │ └── third_party │ │ │ │ │ │ ├── googletest │ │ │ │ │ │ └── BUILD.gn │ │ │ │ │ │ └── libchrome │ │ │ │ │ │ └── BUILD.gn │ │ │ │ └── toolchain │ │ │ │ │ └── gcc │ │ │ │ │ └── BUILD.gn │ │ │ ├── conf │ │ │ │ ├── Android.mk │ │ │ │ ├── bt_did.conf │ │ │ │ └── bt_stack.conf │ │ │ ├── device │ │ │ │ ├── Android.mk │ │ │ │ ├── BUILD.gn │ │ │ │ ├── include │ │ │ │ │ ├── classic │ │ │ │ │ │ └── peer.h │ │ │ │ │ ├── controller.h │ │ │ │ │ ├── interop.h │ │ │ │ │ └── interop_database.h │ │ │ │ ├── src │ │ │ │ │ ├── classic │ │ │ │ │ │ └── peer.c │ │ │ │ │ ├── controller.c │ │ │ │ │ └── interop.c │ │ │ │ └── test │ │ │ │ │ ├── classic │ │ │ │ │ └── peer_test.cpp │ │ │ │ │ └── interop_test.cpp │ │ │ ├── doc │ │ │ │ ├── btsnoop_net.md │ │ │ │ ├── directory_layout.md │ │ │ │ ├── log_tags.md │ │ │ │ ├── network_ports.md │ │ │ │ ├── power_management.md │ │ │ │ ├── properties.md │ │ │ │ ├── style_guide.md │ │ │ │ └── supported_features.md │ │ │ ├── embdrv │ │ │ │ ├── Android.mk │ │ │ │ └── sbc │ │ │ │ │ ├── Android.mk │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ ├── decoder │ │ │ │ │ ├── Android.mk │ │ │ │ │ ├── include │ │ │ │ │ │ ├── oi_assert.h │ │ │ │ │ │ ├── oi_bitstream.h │ │ │ │ │ │ ├── oi_bt_spec.h │ │ │ │ │ │ ├── oi_codec_sbc.h │ │ │ │ │ │ ├── oi_codec_sbc_private.h │ │ │ │ │ │ ├── oi_common.h │ │ │ │ │ │ ├── oi_cpu_dep.h │ │ │ │ │ │ ├── oi_modules.h │ │ │ │ │ │ ├── oi_osinterface.h │ │ │ │ │ │ ├── oi_status.h │ │ │ │ │ │ ├── oi_stddefs.h │ │ │ │ │ │ ├── oi_string.h │ │ │ │ │ │ ├── oi_time.h │ │ │ │ │ │ └── oi_utils.h │ │ │ │ │ └── srce │ │ │ │ │ │ ├── alloc.c │ │ │ │ │ │ ├── bitalloc-sbc.c │ │ │ │ │ │ ├── bitalloc.c │ │ │ │ │ │ ├── bitstream-decode.c │ │ │ │ │ │ ├── decoder-oina.c │ │ │ │ │ │ ├── decoder-private.c │ │ │ │ │ │ ├── decoder-sbc.c │ │ │ │ │ │ ├── dequant.c │ │ │ │ │ │ ├── framing-sbc.c │ │ │ │ │ │ ├── framing.c │ │ │ │ │ │ ├── oi_codec_version.c │ │ │ │ │ │ ├── readsamplesjoint.inc │ │ │ │ │ │ ├── synthesis-8-generated.c │ │ │ │ │ │ ├── synthesis-dct8.c │ │ │ │ │ │ └── synthesis-sbc.c │ │ │ │ │ └── encoder │ │ │ │ │ ├── include │ │ │ │ │ ├── sbc_dct.h │ │ │ │ │ ├── sbc_enc_func_declare.h │ │ │ │ │ ├── sbc_encoder.h │ │ │ │ │ ├── sbc_if.h │ │ │ │ │ └── sbc_types.h │ │ │ │ │ └── srce │ │ │ │ │ ├── sbc_analysis.c │ │ │ │ │ ├── sbc_dct.c │ │ │ │ │ ├── sbc_dct_coeffs.c │ │ │ │ │ ├── sbc_enc_bit_alloc_mono.c │ │ │ │ │ ├── sbc_enc_bit_alloc_ste.c │ │ │ │ │ ├── sbc_enc_coeffs.c │ │ │ │ │ ├── sbc_encoder.c │ │ │ │ │ └── sbc_packing.c │ │ │ ├── hci │ │ │ │ ├── Android.mk │ │ │ │ ├── BUILD.gn │ │ │ │ ├── include │ │ │ │ │ ├── bt_hci_bdroid.h │ │ │ │ │ ├── bt_list.h │ │ │ │ │ ├── bt_skbuff.h │ │ │ │ │ ├── bt_vendor_lib.h │ │ │ │ │ ├── btsnoop.h │ │ │ │ │ ├── btsnoop_mem.h │ │ │ │ │ ├── buffer_allocator.h │ │ │ │ │ ├── hci_audio.h │ │ │ │ │ ├── hci_hal.h │ │ │ │ │ ├── hci_inject.h │ │ │ │ │ ├── hci_internals.h │ │ │ │ │ ├── hci_layer.h │ │ │ │ │ ├── hci_packet_factory.h │ │ │ │ │ ├── hci_packet_parser.h │ │ │ │ │ ├── low_power_manager.h │ │ │ │ │ ├── packet_fragmenter.h │ │ │ │ │ ├── rtk_parse.h │ │ │ │ │ ├── userial.h │ │ │ │ │ └── vendor.h │ │ │ │ ├── src │ │ │ │ │ ├── bt_list.c │ │ │ │ │ ├── bt_skbuff.c │ │ │ │ │ ├── btsnoop.c │ │ │ │ │ ├── btsnoop_mem.c │ │ │ │ │ ├── btsnoop_net.c │ │ │ │ │ ├── buffer_allocator.c │ │ │ │ │ ├── hci_audio.c │ │ │ │ │ ├── hci_h5.c │ │ │ │ │ ├── hci_h5_int.h │ │ │ │ │ ├── hci_hal.c │ │ │ │ │ ├── hci_hal_h4.c │ │ │ │ │ ├── hci_hal_h5.c │ │ │ │ │ ├── hci_hal_mct.c │ │ │ │ │ ├── hci_inject.c │ │ │ │ │ ├── hci_layer.c │ │ │ │ │ ├── hci_packet_factory.c │ │ │ │ │ ├── hci_packet_parser.c │ │ │ │ │ ├── low_power_manager.c │ │ │ │ │ ├── packet_fragmenter.c │ │ │ │ │ ├── rtk_btsnoop_net.c │ │ │ │ │ ├── rtk_parse.c │ │ │ │ │ └── vendor.c │ │ │ │ └── test │ │ │ │ │ ├── hci_hal_h4_test.cpp │ │ │ │ │ ├── hci_hal_mct_test.cpp │ │ │ │ │ ├── hci_layer_test.cpp │ │ │ │ │ ├── low_power_manager_test.cpp │ │ │ │ │ └── packet_fragmenter_test.cpp │ │ │ ├── include │ │ │ │ ├── bt_common.h │ │ │ │ ├── bt_target.h │ │ │ │ ├── bt_trace.h │ │ │ │ ├── bte.h │ │ │ │ ├── bte_appl.h │ │ │ │ └── stack_config.h │ │ │ ├── main │ │ │ │ ├── Android.mk │ │ │ │ ├── BUILD.gn │ │ │ │ ├── bte_conf.c │ │ │ │ ├── bte_init.c │ │ │ │ ├── bte_logmsg.c │ │ │ │ ├── bte_main.c │ │ │ │ └── stack_config.c │ │ │ ├── osi │ │ │ │ ├── Android.mk │ │ │ │ ├── BUILD.gn │ │ │ │ ├── include │ │ │ │ │ ├── alarm.h │ │ │ │ │ ├── allocation_tracker.h │ │ │ │ │ ├── allocator.h │ │ │ │ │ ├── array.h │ │ │ │ │ ├── buffer.h │ │ │ │ │ ├── compat.h │ │ │ │ │ ├── config.h │ │ │ │ │ ├── data_dispatcher.h │ │ │ │ │ ├── eager_reader.h │ │ │ │ │ ├── fixed_queue.h │ │ │ │ │ ├── future.h │ │ │ │ │ ├── hash_functions.h │ │ │ │ │ ├── hash_map.h │ │ │ │ │ ├── hash_map_utils.h │ │ │ │ │ ├── list.h │ │ │ │ │ ├── log.h │ │ │ │ │ ├── metrics.h │ │ │ │ │ ├── mutex.h │ │ │ │ │ ├── osi.h │ │ │ │ │ ├── properties.h │ │ │ │ │ ├── reactor.h │ │ │ │ │ ├── ringbuffer.h │ │ │ │ │ ├── semaphore.h │ │ │ │ │ ├── socket.h │ │ │ │ │ ├── socket_utils │ │ │ │ │ │ ├── socket_local.h │ │ │ │ │ │ └── sockets.h │ │ │ │ │ ├── thread.h │ │ │ │ │ ├── time.h │ │ │ │ │ └── wakelock.h │ │ │ │ ├── src │ │ │ │ │ ├── alarm.c │ │ │ │ │ ├── allocation_tracker.c │ │ │ │ │ ├── allocator.c │ │ │ │ │ ├── array.c │ │ │ │ │ ├── buffer.c │ │ │ │ │ ├── compat.c │ │ │ │ │ ├── config.c │ │ │ │ │ ├── data_dispatcher.c │ │ │ │ │ ├── eager_reader.c │ │ │ │ │ ├── fixed_queue.c │ │ │ │ │ ├── future.c │ │ │ │ │ ├── hash_functions.c │ │ │ │ │ ├── hash_map.c │ │ │ │ │ ├── hash_map_utils.c │ │ │ │ │ ├── list.c │ │ │ │ │ ├── metrics.cpp │ │ │ │ │ ├── metrics_linux.cpp │ │ │ │ │ ├── mutex.c │ │ │ │ │ ├── osi.c │ │ │ │ │ ├── properties.c │ │ │ │ │ ├── protos │ │ │ │ │ │ └── bluetooth.proto │ │ │ │ │ ├── reactor.c │ │ │ │ │ ├── ringbuffer.c │ │ │ │ │ ├── semaphore.c │ │ │ │ │ ├── socket.c │ │ │ │ │ ├── socket_utils │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── socket_local_client.c │ │ │ │ │ │ └── socket_local_server.c │ │ │ │ │ ├── thread.c │ │ │ │ │ ├── time.c │ │ │ │ │ └── wakelock.c │ │ │ │ └── test │ │ │ │ │ ├── AlarmTestHarness.cpp │ │ │ │ │ ├── AlarmTestHarness.h │ │ │ │ │ ├── AllocationTestHarness.cpp │ │ │ │ │ ├── AllocationTestHarness.h │ │ │ │ │ ├── alarm_test.cpp │ │ │ │ │ ├── allocation_tracker_test.cpp │ │ │ │ │ ├── allocator_test.cpp │ │ │ │ │ ├── array_test.cpp │ │ │ │ │ ├── config_test.cpp │ │ │ │ │ ├── data_dispatcher_test.cpp │ │ │ │ │ ├── eager_reader_test.cpp │ │ │ │ │ ├── fixed_queue_test.cpp │ │ │ │ │ ├── future_test.cpp │ │ │ │ │ ├── hash_map_test.cpp │ │ │ │ │ ├── hash_map_utils_test.cpp │ │ │ │ │ ├── list_test.cpp │ │ │ │ │ ├── properties_test.cpp │ │ │ │ │ ├── rand_test.cpp │ │ │ │ │ ├── reactor_test.cpp │ │ │ │ │ ├── ringbuffer_test.cpp │ │ │ │ │ ├── semaphore_test.cpp │ │ │ │ │ ├── test_stubs.h │ │ │ │ │ ├── thread_test.cpp │ │ │ │ │ └── time_test.cpp │ │ │ ├── profile │ │ │ │ ├── Android.mk │ │ │ │ ├── include │ │ │ │ │ └── manager.h │ │ │ │ └── src │ │ │ │ │ └── manager.c │ │ │ ├── realtek │ │ │ │ ├── Android.mk │ │ │ │ ├── include │ │ │ │ │ ├── bdroid_buildcfg.h │ │ │ │ │ ├── rtkbt_api.h │ │ │ │ │ ├── rtkbt_api_int.h │ │ │ │ │ ├── rtkbt_api_ver.h │ │ │ │ │ ├── rtkbt_api_ver_toolchain.h │ │ │ │ │ └── rtkbt_config.h │ │ │ │ └── src │ │ │ │ │ ├── Android.mk │ │ │ │ │ ├── rtkbt_api.c │ │ │ │ │ └── rtkbt_conf.c │ │ │ ├── service │ │ │ │ ├── Android.mk │ │ │ │ ├── BUILD.gn │ │ │ │ ├── adapter.cpp │ │ │ │ ├── adapter.h │ │ │ │ ├── bluetooth_instance.h │ │ │ │ ├── bluetoothtbd.rc │ │ │ │ ├── client │ │ │ │ │ └── main.cpp │ │ │ │ ├── common │ │ │ │ │ ├── README │ │ │ │ │ └── bluetooth │ │ │ │ │ │ ├── adapter_state.cpp │ │ │ │ │ │ ├── adapter_state.h │ │ │ │ │ │ ├── advertise_data.cpp │ │ │ │ │ │ ├── advertise_data.h │ │ │ │ │ │ ├── advertise_settings.cpp │ │ │ │ │ │ ├── advertise_settings.h │ │ │ │ │ │ ├── binder │ │ │ │ │ │ ├── IBluetooth.cpp │ │ │ │ │ │ ├── IBluetooth.h │ │ │ │ │ │ ├── IBluetoothCallback.cpp │ │ │ │ │ │ ├── IBluetoothCallback.h │ │ │ │ │ │ ├── IBluetoothGattClient.cpp │ │ │ │ │ │ ├── IBluetoothGattClient.h │ │ │ │ │ │ ├── IBluetoothGattClientCallback.cpp │ │ │ │ │ │ ├── IBluetoothGattClientCallback.h │ │ │ │ │ │ ├── IBluetoothGattServer.cpp │ │ │ │ │ │ ├── IBluetoothGattServer.h │ │ │ │ │ │ ├── IBluetoothGattServerCallback.cpp │ │ │ │ │ │ ├── IBluetoothGattServerCallback.h │ │ │ │ │ │ ├── IBluetoothLowEnergy.cpp │ │ │ │ │ │ ├── IBluetoothLowEnergy.h │ │ │ │ │ │ ├── IBluetoothLowEnergyCallback.cpp │ │ │ │ │ │ ├── IBluetoothLowEnergyCallback.h │ │ │ │ │ │ ├── parcel_helpers.cpp │ │ │ │ │ │ └── parcel_helpers.h │ │ │ │ │ │ ├── gatt_identifier.cpp │ │ │ │ │ │ ├── gatt_identifier.h │ │ │ │ │ │ ├── low_energy_constants.h │ │ │ │ │ │ ├── scan_filter.cpp │ │ │ │ │ │ ├── scan_filter.h │ │ │ │ │ │ ├── scan_result.cpp │ │ │ │ │ │ ├── scan_result.h │ │ │ │ │ │ ├── scan_settings.cpp │ │ │ │ │ │ ├── scan_settings.h │ │ │ │ │ │ ├── util │ │ │ │ │ │ ├── address_helper.cpp │ │ │ │ │ │ ├── address_helper.h │ │ │ │ │ │ ├── atomic_string.cpp │ │ │ │ │ │ └── atomic_string.h │ │ │ │ │ │ ├── uuid.cpp │ │ │ │ │ │ └── uuid.h │ │ │ │ ├── daemon.cpp │ │ │ │ ├── daemon.h │ │ │ │ ├── doc │ │ │ │ │ ├── IBluetooth.txt │ │ │ │ │ ├── IBluetoothCallback.txt │ │ │ │ │ ├── IBluetoothGattClient.txt │ │ │ │ │ ├── IBluetoothGattClientCallback.txt │ │ │ │ │ ├── IBluetoothGattServer.txt │ │ │ │ │ ├── IBluetoothGattServerCallback.txt │ │ │ │ │ ├── IBluetoothLowEnergy.txt │ │ │ │ │ └── IBluetoothLowEnergyCallback.txt │ │ │ │ ├── example │ │ │ │ │ └── heart_rate │ │ │ │ │ │ ├── constants.h │ │ │ │ │ │ ├── heart_rate_server.cpp │ │ │ │ │ │ ├── heart_rate_server.h │ │ │ │ │ │ └── server_main.cpp │ │ │ │ ├── gatt_client.cpp │ │ │ │ ├── gatt_client.h │ │ │ │ ├── gatt_server.cpp │ │ │ │ ├── gatt_server.h │ │ │ │ ├── gatt_server_old.cpp │ │ │ │ ├── gatt_server_old.h │ │ │ │ ├── hal │ │ │ │ │ ├── bluetooth_gatt_interface.cpp │ │ │ │ │ ├── bluetooth_gatt_interface.h │ │ │ │ │ ├── bluetooth_interface.cpp │ │ │ │ │ ├── bluetooth_interface.h │ │ │ │ │ ├── fake_bluetooth_gatt_interface.cpp │ │ │ │ │ ├── fake_bluetooth_gatt_interface.h │ │ │ │ │ ├── fake_bluetooth_interface.cpp │ │ │ │ │ ├── fake_bluetooth_interface.h │ │ │ │ │ ├── gatt_helpers.cpp │ │ │ │ │ └── gatt_helpers.h │ │ │ │ ├── ipc │ │ │ │ │ ├── binder │ │ │ │ │ │ ├── bluetooth_binder_server.cpp │ │ │ │ │ │ ├── bluetooth_binder_server.h │ │ │ │ │ │ ├── bluetooth_gatt_client_binder_server.cpp │ │ │ │ │ │ ├── bluetooth_gatt_client_binder_server.h │ │ │ │ │ │ ├── bluetooth_gatt_server_binder_server.cpp │ │ │ │ │ │ ├── bluetooth_gatt_server_binder_server.h │ │ │ │ │ │ ├── bluetooth_low_energy_binder_server.cpp │ │ │ │ │ │ ├── bluetooth_low_energy_binder_server.h │ │ │ │ │ │ ├── interface_with_instances_base.cpp │ │ │ │ │ │ ├── interface_with_instances_base.h │ │ │ │ │ │ ├── ipc_handler_binder.cpp │ │ │ │ │ │ ├── ipc_handler_binder.h │ │ │ │ │ │ ├── remote_callback_list.h │ │ │ │ │ │ └── remote_callback_map.h │ │ │ │ │ ├── ipc_handler.cpp │ │ │ │ │ ├── ipc_handler.h │ │ │ │ │ ├── ipc_handler_linux.cpp │ │ │ │ │ ├── ipc_handler_linux.h │ │ │ │ │ ├── ipc_manager.cpp │ │ │ │ │ ├── ipc_manager.h │ │ │ │ │ ├── linux_ipc_host.cpp │ │ │ │ │ └── linux_ipc_host.h │ │ │ │ ├── logging_helpers.cpp │ │ │ │ ├── logging_helpers.h │ │ │ │ ├── low_energy_client.cpp │ │ │ │ ├── low_energy_client.h │ │ │ │ ├── main.cpp │ │ │ │ ├── settings.cpp │ │ │ │ ├── settings.h │ │ │ │ ├── switches.h │ │ │ │ └── test │ │ │ │ │ ├── adapter_unittest.cpp │ │ │ │ │ ├── advertise_data_unittest.cpp │ │ │ │ │ ├── fake_hal_util.cpp │ │ │ │ │ ├── gatt_client_unittest.cpp │ │ │ │ │ ├── gatt_identifier_unittest.cpp │ │ │ │ │ ├── gatt_server_unittest.cpp │ │ │ │ │ ├── ipc_linux_unittest.cpp │ │ │ │ │ ├── low_energy_client_unittest.cpp │ │ │ │ │ ├── main.cpp │ │ │ │ │ ├── mock_adapter.h │ │ │ │ │ ├── mock_daemon.h │ │ │ │ │ ├── parcel_helpers_unittest.cpp │ │ │ │ │ ├── settings_unittest.cpp │ │ │ │ │ ├── stub_ipc_handler_binder.cpp │ │ │ │ │ ├── stub_ipc_handler_linux.cpp │ │ │ │ │ ├── util_unittest.cpp │ │ │ │ │ └── uuid_unittest.cpp │ │ │ ├── stack │ │ │ │ ├── Android.mk │ │ │ │ ├── BUILD.gn │ │ │ │ ├── a2dp │ │ │ │ │ ├── a2d_api.c │ │ │ │ │ ├── a2d_int.h │ │ │ │ │ └── a2d_sbc.c │ │ │ │ ├── avct │ │ │ │ │ ├── avct_api.c │ │ │ │ │ ├── avct_ccb.c │ │ │ │ │ ├── avct_defs.h │ │ │ │ │ ├── avct_int.h │ │ │ │ │ ├── avct_l2c.c │ │ │ │ │ ├── avct_lcb.c │ │ │ │ │ └── avct_lcb_act.c │ │ │ │ ├── avdt │ │ │ │ │ ├── avdt_ad.c │ │ │ │ │ ├── avdt_api.c │ │ │ │ │ ├── avdt_ccb.c │ │ │ │ │ ├── avdt_ccb_act.c │ │ │ │ │ ├── avdt_defs.h │ │ │ │ │ ├── avdt_int.h │ │ │ │ │ ├── avdt_l2c.c │ │ │ │ │ ├── avdt_msg.c │ │ │ │ │ ├── avdt_scb.c │ │ │ │ │ └── avdt_scb_act.c │ │ │ │ ├── avrc │ │ │ │ │ ├── avrc_api.c │ │ │ │ │ ├── avrc_bld_ct.c │ │ │ │ │ ├── avrc_bld_tg.c │ │ │ │ │ ├── avrc_int.h │ │ │ │ │ ├── avrc_opt.c │ │ │ │ │ ├── avrc_pars_ct.c │ │ │ │ │ ├── avrc_pars_tg.c │ │ │ │ │ ├── avrc_sdp.c │ │ │ │ │ └── avrc_utils.c │ │ │ │ ├── bnep │ │ │ │ │ ├── bnep_api.c │ │ │ │ │ ├── bnep_int.h │ │ │ │ │ ├── bnep_main.c │ │ │ │ │ └── bnep_utils.c │ │ │ │ ├── btm │ │ │ │ │ ├── btm_acl.c │ │ │ │ │ ├── btm_ble.c │ │ │ │ │ ├── btm_ble_addr.c │ │ │ │ │ ├── btm_ble_adv_filter.c │ │ │ │ │ ├── btm_ble_batchscan.c │ │ │ │ │ ├── btm_ble_bgconn.c │ │ │ │ │ ├── btm_ble_cont_energy.c │ │ │ │ │ ├── btm_ble_gap.c │ │ │ │ │ ├── btm_ble_int.h │ │ │ │ │ ├── btm_ble_multi_adv.c │ │ │ │ │ ├── btm_ble_privacy.c │ │ │ │ │ ├── btm_dev.c │ │ │ │ │ ├── btm_devctl.c │ │ │ │ │ ├── btm_inq.c │ │ │ │ │ ├── btm_int.h │ │ │ │ │ ├── btm_main.c │ │ │ │ │ ├── btm_pm.c │ │ │ │ │ ├── btm_sco.c │ │ │ │ │ └── btm_sec.c │ │ │ │ ├── btu │ │ │ │ │ ├── btu_hcif.c │ │ │ │ │ ├── btu_init.c │ │ │ │ │ └── btu_task.c │ │ │ │ ├── gap │ │ │ │ │ ├── gap_api.c │ │ │ │ │ ├── gap_ble.c │ │ │ │ │ ├── gap_conn.c │ │ │ │ │ ├── gap_int.h │ │ │ │ │ └── gap_utils.c │ │ │ │ ├── gatt │ │ │ │ │ ├── att_protocol.c │ │ │ │ │ ├── gatt_api.c │ │ │ │ │ ├── gatt_attr.c │ │ │ │ │ ├── gatt_auth.c │ │ │ │ │ ├── gatt_cl.c │ │ │ │ │ ├── gatt_db.c │ │ │ │ │ ├── gatt_int.h │ │ │ │ │ ├── gatt_main.c │ │ │ │ │ ├── gatt_sr.c │ │ │ │ │ └── gatt_utils.c │ │ │ │ ├── hcic │ │ │ │ │ ├── hciblecmds.c │ │ │ │ │ └── hcicmds.c │ │ │ │ ├── hid │ │ │ │ │ ├── hid_conn.h │ │ │ │ │ ├── hidh_api.c │ │ │ │ │ ├── hidh_conn.c │ │ │ │ │ └── hidh_int.h │ │ │ │ ├── include │ │ │ │ │ ├── a2d_api.h │ │ │ │ │ ├── a2d_sbc.h │ │ │ │ │ ├── avct_api.h │ │ │ │ │ ├── avdt_api.h │ │ │ │ │ ├── avdtc_api.h │ │ │ │ │ ├── avrc_api.h │ │ │ │ │ ├── avrc_defs.h │ │ │ │ │ ├── bnep_api.h │ │ │ │ │ ├── bt_types.h │ │ │ │ │ ├── btm_api.h │ │ │ │ │ ├── btm_ble_api.h │ │ │ │ │ ├── btu.h │ │ │ │ │ ├── dyn_mem.h │ │ │ │ │ ├── gap_api.h │ │ │ │ │ ├── gatt_api.h │ │ │ │ │ ├── gattdefs.h │ │ │ │ │ ├── hcidefs.h │ │ │ │ │ ├── hcimsgs.h │ │ │ │ │ ├── hiddefs.h │ │ │ │ │ ├── hidh_api.h │ │ │ │ │ ├── l2c_api.h │ │ │ │ │ ├── l2cap_client.h │ │ │ │ │ ├── l2cdefs.h │ │ │ │ │ ├── mca_api.h │ │ │ │ │ ├── mca_defs.h │ │ │ │ │ ├── pan_api.h │ │ │ │ │ ├── port_api.h │ │ │ │ │ ├── port_ext.h │ │ │ │ │ ├── profiles_api.h │ │ │ │ │ ├── rfcdefs.h │ │ │ │ │ ├── sdp_api.h │ │ │ │ │ ├── sdpdefs.h │ │ │ │ │ ├── smp_api.h │ │ │ │ │ └── srvc_api.h │ │ │ │ ├── l2cap │ │ │ │ │ ├── l2c_api.c │ │ │ │ │ ├── l2c_ble.c │ │ │ │ │ ├── l2c_csm.c │ │ │ │ │ ├── l2c_fcr.c │ │ │ │ │ ├── l2c_int.h │ │ │ │ │ ├── l2c_link.c │ │ │ │ │ ├── l2c_main.c │ │ │ │ │ ├── l2c_ucd.c │ │ │ │ │ ├── l2c_utils.c │ │ │ │ │ └── l2cap_client.c │ │ │ │ ├── mcap │ │ │ │ │ ├── mca_api.c │ │ │ │ │ ├── mca_cact.c │ │ │ │ │ ├── mca_csm.c │ │ │ │ │ ├── mca_dact.c │ │ │ │ │ ├── mca_dsm.c │ │ │ │ │ ├── mca_int.h │ │ │ │ │ ├── mca_l2c.c │ │ │ │ │ └── mca_main.c │ │ │ │ ├── pan │ │ │ │ │ ├── pan_api.c │ │ │ │ │ ├── pan_int.h │ │ │ │ │ ├── pan_main.c │ │ │ │ │ └── pan_utils.c │ │ │ │ ├── rfcomm │ │ │ │ │ ├── port_api.c │ │ │ │ │ ├── port_int.h │ │ │ │ │ ├── port_rfc.c │ │ │ │ │ ├── port_utils.c │ │ │ │ │ ├── rfc_int.h │ │ │ │ │ ├── rfc_l2cap_if.c │ │ │ │ │ ├── rfc_mx_fsm.c │ │ │ │ │ ├── rfc_port_fsm.c │ │ │ │ │ ├── rfc_port_if.c │ │ │ │ │ ├── rfc_ts_frames.c │ │ │ │ │ └── rfc_utils.c │ │ │ │ ├── sdp │ │ │ │ │ ├── sdp_api.c │ │ │ │ │ ├── sdp_db.c │ │ │ │ │ ├── sdp_discovery.c │ │ │ │ │ ├── sdp_main.c │ │ │ │ │ ├── sdp_server.c │ │ │ │ │ ├── sdp_utils.c │ │ │ │ │ └── sdpint.h │ │ │ │ ├── smp │ │ │ │ │ ├── aes.c │ │ │ │ │ ├── aes.h │ │ │ │ │ ├── p_256_curvepara.c │ │ │ │ │ ├── p_256_ecc_pp.c │ │ │ │ │ ├── p_256_ecc_pp.h │ │ │ │ │ ├── p_256_multprecision.c │ │ │ │ │ ├── p_256_multprecision.h │ │ │ │ │ ├── smp_act.c │ │ │ │ │ ├── smp_api.c │ │ │ │ │ ├── smp_br_main.c │ │ │ │ │ ├── smp_cmac.c │ │ │ │ │ ├── smp_int.h │ │ │ │ │ ├── smp_keys.c │ │ │ │ │ ├── smp_l2c.c │ │ │ │ │ ├── smp_main.c │ │ │ │ │ └── smp_utils.c │ │ │ │ └── srvc │ │ │ │ │ ├── srvc_battery.c │ │ │ │ │ ├── srvc_battery_int.h │ │ │ │ │ ├── srvc_dis.c │ │ │ │ │ ├── srvc_dis_int.h │ │ │ │ │ ├── srvc_eng.c │ │ │ │ │ └── srvc_eng_int.h │ │ │ ├── system_bt.diff │ │ │ ├── test │ │ │ │ ├── Android.mk │ │ │ │ ├── run_unit_tests.sh │ │ │ │ └── suite │ │ │ │ │ ├── Android.mk.disabled │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ ├── adapter │ │ │ │ │ ├── adapter_unittest.cpp │ │ │ │ │ ├── bluetooth_test.cpp │ │ │ │ │ └── bluetooth_test.h │ │ │ │ │ └── gatt │ │ │ │ │ ├── gatt_test.cpp │ │ │ │ │ ├── gatt_test.h │ │ │ │ │ └── gatt_unittest.cpp │ │ │ ├── tools │ │ │ │ ├── Android.mk.disabled │ │ │ │ ├── bdtool │ │ │ │ │ ├── Android.mk.disabled │ │ │ │ │ ├── adapter.c │ │ │ │ │ └── bdtool.c │ │ │ │ ├── hci │ │ │ │ │ ├── Android.mk.disabled │ │ │ │ │ └── main.c │ │ │ │ └── scripts │ │ │ │ │ ├── btsnooz.py │ │ │ │ │ └── change_types.sh │ │ │ ├── udrv │ │ │ │ ├── BUILD.gn │ │ │ │ ├── include │ │ │ │ │ └── uipc.h │ │ │ │ └── ulinux │ │ │ │ │ ├── uipc.c │ │ │ │ │ └── uipc_linux.h │ │ │ ├── utils │ │ │ │ ├── Android.mk │ │ │ │ ├── BUILD.gn │ │ │ │ ├── include │ │ │ │ │ └── bt_utils.h │ │ │ │ └── src │ │ │ │ │ └── bt_utils.c │ │ │ ├── vendor_libs │ │ │ │ ├── BUILD.gn │ │ │ │ ├── linux │ │ │ │ │ ├── Android.mk │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ └── bt_vendor_linux.c │ │ │ │ └── test_vendor_lib │ │ │ │ │ ├── Android.mk │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ ├── data │ │ │ │ │ └── controller_properties.json │ │ │ │ │ ├── include │ │ │ │ │ ├── command_packet.h │ │ │ │ │ ├── dual_mode_controller.h │ │ │ │ │ ├── event_packet.h │ │ │ │ │ ├── hci_transport.h │ │ │ │ │ ├── packet.h │ │ │ │ │ ├── packet_stream.h │ │ │ │ │ ├── test_channel_transport.h │ │ │ │ │ └── vendor_manager.h │ │ │ │ │ ├── scripts │ │ │ │ │ ├── build_and_run.sh │ │ │ │ │ └── test_channel.py │ │ │ │ │ ├── src │ │ │ │ │ ├── bt_vendor.cc │ │ │ │ │ ├── command_packet.cc │ │ │ │ │ ├── dual_mode_controller.cc │ │ │ │ │ ├── event_packet.cc │ │ │ │ │ ├── hci_transport.cc │ │ │ │ │ ├── packet.cc │ │ │ │ │ ├── packet_stream.cc │ │ │ │ │ ├── test_channel_transport.cc │ │ │ │ │ └── vendor_manager.cc │ │ │ │ │ └── test │ │ │ │ │ ├── hci_transport_unittest.cc │ │ │ │ │ └── packet_stream_unittest.cc │ │ │ └── vnd │ │ │ │ ├── ble │ │ │ │ └── vendor_hcidefs.h │ │ │ │ └── include │ │ │ │ └── vendor_api.h │ │ └── libbt-vendor │ │ │ ├── Android.mk │ │ │ ├── uart │ │ │ ├── Android.mk │ │ │ ├── include │ │ │ │ ├── bt_vendor_rtk.h │ │ │ │ ├── upio.h │ │ │ │ ├── userial_vendor.h │ │ │ │ └── vnd_buildcfg.h │ │ │ └── src │ │ │ │ ├── bt_vendor_rtk.c │ │ │ │ ├── hardware.c │ │ │ │ ├── upio.c │ │ │ │ └── userial_vendor.c │ │ │ └── usb │ │ │ ├── Android.mk │ │ │ ├── include │ │ │ ├── bt_vendor_rtk.h │ │ │ └── vnd_buildcfg.h │ │ │ └── src │ │ │ └── bt_vendor_rtk.c │ ├── rtkbt.mk │ └── system │ │ └── etc │ │ ├── bluetooth │ │ └── rtkbt.conf │ │ ├── firmware │ │ ├── BT_Firmware.mk │ │ ├── UART_2M │ │ │ ├── rtl8703as_config │ │ │ ├── rtl8703bs_config │ │ │ ├── rtl8703cs_config │ │ │ ├── rtl8723as_config │ │ │ ├── rtl8723bs_VQ0_config │ │ │ ├── rtl8723bs_config │ │ │ ├── rtl8723cs_cg_config │ │ │ ├── rtl8723cs_vf_config │ │ │ ├── rtl8723cs_xx_config │ │ │ ├── rtl8723ds_config │ │ │ ├── rtl8761at_config │ │ │ ├── rtl8761bt_config │ │ │ ├── rtl8821as_config │ │ │ ├── rtl8821cs_config │ │ │ ├── rtl8822bs_config │ │ │ └── rtl8822cs_config │ │ ├── fw_info.txt │ │ ├── rtl8703as_config │ │ ├── rtl8703as_fw │ │ ├── rtl8703bs_config │ │ ├── rtl8703bs_fw │ │ ├── rtl8703cs_config │ │ ├── rtl8703cs_fw │ │ ├── rtl8723a_config │ │ ├── rtl8723a_config_addr │ │ ├── rtl8723a_fw │ │ ├── rtl8723as_config │ │ ├── rtl8723as_fw │ │ ├── rtl8723b_config │ │ ├── rtl8723b_config_2Ant_S0 │ │ ├── rtl8723b_fw │ │ ├── rtl8723bs_VQ0_config │ │ ├── rtl8723bs_VQ0_fw │ │ ├── rtl8723bs_config │ │ ├── rtl8723bs_fw │ │ ├── rtl8723bu_config │ │ ├── rtl8723c_fw │ │ ├── rtl8723cs_cg_config │ │ ├── rtl8723cs_cg_fw │ │ ├── rtl8723cs_vf_config │ │ ├── rtl8723cs_vf_fw │ │ ├── rtl8723cs_xx_config │ │ ├── rtl8723cs_xx_fw │ │ ├── rtl8723d_config │ │ ├── rtl8723d_fw │ │ ├── rtl8723ds_config │ │ ├── rtl8723ds_fw │ │ ├── rtl8761a_config │ │ ├── rtl8761at8192ee_fw │ │ ├── rtl8761at8812ae_fw │ │ ├── rtl8761at_config │ │ ├── rtl8761at_fw │ │ ├── rtl8761au8192ee_fw │ │ ├── rtl8761au8812ae_fw │ │ ├── rtl8761au_fw │ │ ├── rtl8761aw8192eu_config │ │ ├── rtl8761aw8192eu_fw │ │ ├── rtl8761b_config │ │ ├── rtl8761b_fw │ │ ├── rtl8761bt_config │ │ ├── rtl8761bt_fw │ │ ├── rtl8821a_config │ │ ├── rtl8821a_fw │ │ ├── rtl8821as_config │ │ ├── rtl8821as_fw │ │ ├── rtl8821c_config │ │ ├── rtl8821c_fw │ │ ├── rtl8821cs_config │ │ ├── rtl8821cs_fw │ │ ├── rtl8822b_config │ │ ├── rtl8822b_fw │ │ ├── rtl8822bs_config │ │ ├── rtl8822bs_fw │ │ ├── rtl8822c_config │ │ ├── rtl8822c_fw │ │ ├── rtl8822cs_config │ │ └── rtl8822cs_fw │ │ └── permissions │ │ ├── android.hardware.bluetooth.xml │ │ └── android.hardware.bluetooth_le.xml │ ├── rtl8821cs │ ├── Kconfig │ ├── Makefile │ ├── clean │ ├── core │ │ ├── efuse │ │ │ └── rtw_efuse.c │ │ ├── mesh │ │ │ ├── rtw_mesh.c │ │ │ ├── rtw_mesh.h │ │ │ ├── rtw_mesh_hwmp.c │ │ │ ├── rtw_mesh_hwmp.h │ │ │ ├── rtw_mesh_pathtbl.c │ │ │ └── rtw_mesh_pathtbl.h │ │ ├── rtw_ap.c │ │ ├── rtw_beamforming.c │ │ ├── rtw_br_ext.c │ │ ├── rtw_bt_mp.c │ │ ├── rtw_btcoex.c │ │ ├── rtw_btcoex_wifionly.c │ │ ├── rtw_chplan.c │ │ ├── rtw_chplan.h │ │ ├── rtw_cmd.c │ │ ├── rtw_debug.c │ │ ├── rtw_eeprom.c │ │ ├── rtw_ieee80211.c │ │ ├── rtw_io.c │ │ ├── rtw_ioctl_query.c │ │ ├── rtw_ioctl_rtl.c │ │ ├── rtw_ioctl_set.c │ │ ├── rtw_iol.c │ │ ├── rtw_mem.c │ │ ├── rtw_mi.c │ │ ├── rtw_mlme.c │ │ ├── rtw_mlme_ext.c │ │ ├── rtw_mp.c │ │ ├── rtw_mp_ioctl.c │ │ ├── rtw_odm.c │ │ ├── rtw_p2p.c │ │ ├── rtw_pwrctrl.c │ │ ├── rtw_recv.c │ │ ├── rtw_rf.c │ │ ├── rtw_rm.c │ │ ├── rtw_rm_fsm.c │ │ ├── rtw_rson.c │ │ ├── rtw_sdio.c │ │ ├── rtw_security.c │ │ ├── rtw_sreset.c │ │ ├── rtw_sta_mgt.c │ │ ├── rtw_tdls.c │ │ ├── rtw_vht.c │ │ ├── rtw_wapi.c │ │ ├── rtw_wapi_sms4.c │ │ ├── rtw_wlan_util.c │ │ └── rtw_xmit.c │ ├── hal │ │ ├── HalPwrSeqCmd.c │ │ ├── btc │ │ │ ├── halbtc8821c1ant.c │ │ │ ├── halbtc8821c1ant.h │ │ │ ├── halbtc8821c2ant.c │ │ │ ├── halbtc8821c2ant.h │ │ │ ├── halbtc8821cwifionly.c │ │ │ ├── halbtc8821cwifionly.h │ │ │ ├── halbtcoutsrc.h │ │ │ └── mp_precomp.h │ │ ├── efuse │ │ │ ├── efuse_mask.h │ │ │ └── rtl8821c │ │ │ │ ├── HalEfuseMask8821C_PCIE.c │ │ │ │ ├── HalEfuseMask8821C_PCIE.h │ │ │ │ ├── HalEfuseMask8821C_SDIO.c │ │ │ │ ├── HalEfuseMask8821C_SDIO.h │ │ │ │ ├── HalEfuseMask8821C_USB.c │ │ │ │ └── HalEfuseMask8821C_USB.h │ │ ├── hal_btcoex.c │ │ ├── hal_btcoex_wifionly.c │ │ ├── hal_com.c │ │ ├── hal_com_c2h.h │ │ ├── hal_com_phycfg.c │ │ ├── hal_dm.c │ │ ├── hal_dm.h │ │ ├── hal_dm_acs.c │ │ ├── hal_dm_acs.h │ │ ├── hal_halmac.c │ │ ├── hal_halmac.h │ │ ├── hal_hci │ │ │ └── hal_sdio.c │ │ ├── hal_intf.c │ │ ├── hal_mcc.c │ │ ├── hal_mp.c │ │ ├── hal_phy.c │ │ ├── halmac │ │ │ ├── halmac_2_platform.h │ │ │ ├── halmac_88xx │ │ │ │ ├── halmac_8821c │ │ │ │ │ ├── halmac_8821c_cfg.h │ │ │ │ │ ├── halmac_cfg_wmac_8821c.c │ │ │ │ │ ├── halmac_cfg_wmac_8821c.h │ │ │ │ │ ├── halmac_common_8821c.c │ │ │ │ │ ├── halmac_common_8821c.h │ │ │ │ │ ├── halmac_gpio_8821c.c │ │ │ │ │ ├── halmac_gpio_8821c.h │ │ │ │ │ ├── halmac_init_8821c.c │ │ │ │ │ ├── halmac_init_8821c.h │ │ │ │ │ ├── halmac_phy_8821c.c │ │ │ │ │ ├── halmac_pwr_seq_8821c.c │ │ │ │ │ ├── halmac_pwr_seq_8821c.h │ │ │ │ │ ├── halmac_sdio_8821c.c │ │ │ │ │ └── halmac_sdio_8821c.h │ │ │ │ ├── halmac_88xx_cfg.h │ │ │ │ ├── halmac_bb_rf_88xx.c │ │ │ │ ├── halmac_bb_rf_88xx.h │ │ │ │ ├── halmac_cfg_wmac_88xx.c │ │ │ │ ├── halmac_cfg_wmac_88xx.h │ │ │ │ ├── halmac_common_88xx.c │ │ │ │ ├── halmac_common_88xx.h │ │ │ │ ├── halmac_efuse_88xx.c │ │ │ │ ├── halmac_efuse_88xx.h │ │ │ │ ├── halmac_flash_88xx.c │ │ │ │ ├── halmac_flash_88xx.h │ │ │ │ ├── halmac_fw_88xx.c │ │ │ │ ├── halmac_fw_88xx.h │ │ │ │ ├── halmac_gpio_88xx.c │ │ │ │ ├── halmac_gpio_88xx.h │ │ │ │ ├── halmac_init_88xx.c │ │ │ │ ├── halmac_init_88xx.h │ │ │ │ ├── halmac_mimo_88xx.c │ │ │ │ ├── halmac_mimo_88xx.h │ │ │ │ ├── halmac_sdio_88xx.c │ │ │ │ └── halmac_sdio_88xx.h │ │ │ ├── halmac_api.c │ │ │ ├── halmac_api.h │ │ │ ├── halmac_bit2.h │ │ │ ├── halmac_bit_8197f.h │ │ │ ├── halmac_bit_8814b.h │ │ │ ├── halmac_bit_8821c.h │ │ │ ├── halmac_bit_8822b.h │ │ │ ├── halmac_bit_8822c.h │ │ │ ├── halmac_fw_info.h │ │ │ ├── halmac_fw_offload_c2h_ap.h │ │ │ ├── halmac_fw_offload_c2h_nic.h │ │ │ ├── halmac_fw_offload_h2c_ap.h │ │ │ ├── halmac_fw_offload_h2c_nic.h │ │ │ ├── halmac_gpio_cmd.h │ │ │ ├── halmac_h2c_extra_info_ap.h │ │ │ ├── halmac_h2c_extra_info_nic.h │ │ │ ├── halmac_hw_cfg.h │ │ │ ├── halmac_intf_phy_cmd.h │ │ │ ├── halmac_original_c2h_ap.h │ │ │ ├── halmac_original_c2h_nic.h │ │ │ ├── halmac_original_h2c_ap.h │ │ │ ├── halmac_original_h2c_nic.h │ │ │ ├── halmac_pcie_reg.h │ │ │ ├── halmac_pwr_seq_cmd.h │ │ │ ├── halmac_reg2.h │ │ │ ├── halmac_reg_8197f.h │ │ │ ├── halmac_reg_8814b.h │ │ │ ├── halmac_reg_8821c.h │ │ │ ├── halmac_reg_8822b.h │ │ │ ├── halmac_reg_8822c.h │ │ │ ├── halmac_rx_bd_nic.h │ │ │ ├── halmac_rx_desc_ap.h │ │ │ ├── halmac_rx_desc_chip.h │ │ │ ├── halmac_rx_desc_nic.h │ │ │ ├── halmac_sdio_reg.h │ │ │ ├── halmac_state_machine.h │ │ │ ├── halmac_tx_bd_nic.h │ │ │ ├── halmac_tx_desc_ap.h │ │ │ ├── halmac_tx_desc_buffer_ap.h │ │ │ ├── halmac_tx_desc_buffer_chip.h │ │ │ ├── halmac_tx_desc_buffer_nic.h │ │ │ ├── halmac_tx_desc_chip.h │ │ │ ├── halmac_tx_desc_ie_ap.h │ │ │ ├── halmac_tx_desc_ie_chip.h │ │ │ ├── halmac_tx_desc_ie_nic.h │ │ │ ├── halmac_tx_desc_nic.h │ │ │ ├── halmac_type.h │ │ │ └── halmac_usb_reg.h │ │ ├── led │ │ │ ├── hal_led.c │ │ │ └── hal_sdio_led.c │ │ ├── phydm │ │ │ ├── ap_makefile.mk │ │ │ ├── halhwimg.h │ │ │ ├── halrf │ │ │ │ ├── halphyrf_ap.c │ │ │ │ ├── halphyrf_ap.h │ │ │ │ ├── halphyrf_ce.c │ │ │ │ ├── halphyrf_ce.h │ │ │ │ ├── halphyrf_iot.c │ │ │ │ ├── halphyrf_iot.h │ │ │ │ ├── halphyrf_win.c │ │ │ │ ├── halphyrf_win.h │ │ │ │ ├── halrf.c │ │ │ │ ├── halrf.h │ │ │ │ ├── halrf_debug.c │ │ │ │ ├── halrf_debug.h │ │ │ │ ├── halrf_dpk.h │ │ │ │ ├── halrf_features.h │ │ │ │ ├── halrf_iqk.h │ │ │ │ ├── halrf_kfree.c │ │ │ │ ├── halrf_kfree.h │ │ │ │ ├── halrf_powertracking.c │ │ │ │ ├── halrf_powertracking.h │ │ │ │ ├── halrf_powertracking_ap.c │ │ │ │ ├── halrf_powertracking_ap.h │ │ │ │ ├── halrf_powertracking_ce.c │ │ │ │ ├── halrf_powertracking_ce.h │ │ │ │ ├── halrf_powertracking_iot.c │ │ │ │ ├── halrf_powertracking_iot.h │ │ │ │ ├── halrf_powertracking_win.c │ │ │ │ ├── halrf_powertracking_win.h │ │ │ │ ├── halrf_psd.c │ │ │ │ ├── halrf_psd.h │ │ │ │ ├── halrf_txgapcal.c │ │ │ │ ├── halrf_txgapcal.h │ │ │ │ └── rtl8821c │ │ │ │ │ ├── halrf_8821c.c │ │ │ │ │ ├── halrf_8821c.h │ │ │ │ │ ├── halrf_iqk_8821c.c │ │ │ │ │ └── halrf_iqk_8821c.h │ │ │ ├── mp_precomp.h │ │ │ ├── phydm.c │ │ │ ├── phydm.h │ │ │ ├── phydm.mk │ │ │ ├── phydm_adaptivity.c │ │ │ ├── phydm_adaptivity.h │ │ │ ├── phydm_adc_sampling.c │ │ │ ├── phydm_adc_sampling.h │ │ │ ├── phydm_antdect.c │ │ │ ├── phydm_antdect.h │ │ │ ├── phydm_antdiv.c │ │ │ ├── phydm_antdiv.h │ │ │ ├── phydm_api.c │ │ │ ├── phydm_api.h │ │ │ ├── phydm_auto_dbg.c │ │ │ ├── phydm_auto_dbg.h │ │ │ ├── phydm_beamforming.c │ │ │ ├── phydm_beamforming.h │ │ │ ├── phydm_cck_pd.c │ │ │ ├── phydm_cck_pd.h │ │ │ ├── phydm_ccx.c │ │ │ ├── phydm_ccx.h │ │ │ ├── phydm_cfotracking.c │ │ │ ├── phydm_cfotracking.h │ │ │ ├── phydm_debug.c │ │ │ ├── phydm_debug.h │ │ │ ├── phydm_dfs.c │ │ │ ├── phydm_dfs.h │ │ │ ├── phydm_dig.c │ │ │ ├── phydm_dig.h │ │ │ ├── phydm_dynamictxpower.c │ │ │ ├── phydm_dynamictxpower.h │ │ │ ├── phydm_features.h │ │ │ ├── phydm_features_ap.h │ │ │ ├── phydm_features_ce.h │ │ │ ├── phydm_features_ce2_kernel.h │ │ │ ├── phydm_features_iot.h │ │ │ ├── phydm_features_win.h │ │ │ ├── phydm_hwconfig.c │ │ │ ├── phydm_hwconfig.h │ │ │ ├── phydm_interface.c │ │ │ ├── phydm_interface.h │ │ │ ├── phydm_lna_sat.c │ │ │ ├── phydm_lna_sat.h │ │ │ ├── phydm_math_lib.c │ │ │ ├── phydm_math_lib.h │ │ │ ├── phydm_mp.c │ │ │ ├── phydm_mp.h │ │ │ ├── phydm_noisemonitor.c │ │ │ ├── phydm_noisemonitor.h │ │ │ ├── phydm_pathdiv.c │ │ │ ├── phydm_pathdiv.h │ │ │ ├── phydm_phystatus.c │ │ │ ├── phydm_phystatus.h │ │ │ ├── phydm_pmac_tx_setting.c │ │ │ ├── phydm_pmac_tx_setting.h │ │ │ ├── phydm_pow_train.c │ │ │ ├── phydm_pow_train.h │ │ │ ├── phydm_pre_define.h │ │ │ ├── phydm_precomp.h │ │ │ ├── phydm_primary_cca.c │ │ │ ├── phydm_primary_cca.h │ │ │ ├── phydm_psd.c │ │ │ ├── phydm_psd.h │ │ │ ├── phydm_rainfo.c │ │ │ ├── phydm_rainfo.h │ │ │ ├── phydm_reg.h │ │ │ ├── phydm_regdefine11ac.h │ │ │ ├── phydm_regdefine11n.h │ │ │ ├── phydm_regtable.h │ │ │ ├── phydm_rssi_monitor.c │ │ │ ├── phydm_rssi_monitor.h │ │ │ ├── phydm_smt_ant.c │ │ │ ├── phydm_smt_ant.h │ │ │ ├── phydm_soml.c │ │ │ ├── phydm_soml.h │ │ │ ├── phydm_types.h │ │ │ ├── rtl8821c │ │ │ │ ├── halhwimg8821c_bb.c │ │ │ │ ├── halhwimg8821c_bb.h │ │ │ │ ├── halhwimg8821c_mac.c │ │ │ │ ├── halhwimg8821c_mac.h │ │ │ │ ├── halhwimg8821c_rf.c │ │ │ │ ├── halhwimg8821c_rf.h │ │ │ │ ├── mp_precomp.h │ │ │ │ ├── phydm_hal_api8821c.c │ │ │ │ ├── phydm_hal_api8821c.h │ │ │ │ ├── phydm_regconfig8821c.c │ │ │ │ ├── phydm_regconfig8821c.h │ │ │ │ └── version_rtl8821c.h │ │ │ ├── sd4_phydm_2_kernel.mk │ │ │ └── txbf │ │ │ │ ├── halcomtxbf.c │ │ │ │ ├── halcomtxbf.h │ │ │ │ ├── haltxbf8192e.c │ │ │ │ ├── haltxbf8192e.h │ │ │ │ ├── haltxbf8814a.c │ │ │ │ ├── haltxbf8814a.h │ │ │ │ ├── haltxbf8822b.c │ │ │ │ ├── haltxbf8822b.h │ │ │ │ ├── haltxbfinterface.c │ │ │ │ ├── haltxbfinterface.h │ │ │ │ ├── haltxbfjaguar.c │ │ │ │ ├── haltxbfjaguar.h │ │ │ │ ├── phydm_hal_txbf_api.c │ │ │ │ └── phydm_hal_txbf_api.h │ │ └── rtl8821c │ │ │ ├── hal8821c_fw.c │ │ │ ├── hal8821c_fw.h │ │ │ ├── rtl8821c.h │ │ │ ├── rtl8821c_cmd.c │ │ │ ├── rtl8821c_dm.c │ │ │ ├── rtl8821c_halinit.c │ │ │ ├── rtl8821c_mac.c │ │ │ ├── rtl8821c_ops.c │ │ │ ├── rtl8821c_phy.c │ │ │ └── sdio │ │ │ ├── rtl8821cs.h │ │ │ ├── rtl8821cs_halinit.c │ │ │ ├── rtl8821cs_halinit.h │ │ │ ├── rtl8821cs_halmac.c │ │ │ ├── rtl8821cs_halmac.h │ │ │ ├── rtl8821cs_io.c │ │ │ ├── rtl8821cs_io.h │ │ │ ├── rtl8821cs_led.c │ │ │ ├── rtl8821cs_led.h │ │ │ ├── rtl8821cs_ops.c │ │ │ ├── rtl8821cs_recv.c │ │ │ ├── rtl8821cs_recv.h │ │ │ ├── rtl8821cs_xmit.c │ │ │ └── rtl8821cs_xmit.h │ ├── halmac.mk │ ├── ifcfg-wlan0 │ ├── include │ │ ├── Hal8188EPhyCfg.h │ │ ├── Hal8188EPhyReg.h │ │ ├── Hal8188EPwrSeq.h │ │ ├── Hal8188FPhyCfg.h │ │ ├── Hal8188FPhyReg.h │ │ ├── Hal8188FPwrSeq.h │ │ ├── Hal8192EPhyCfg.h │ │ ├── Hal8192EPhyReg.h │ │ ├── Hal8192EPwrSeq.h │ │ ├── Hal8192FPhyCfg.h │ │ ├── Hal8192FPhyReg.h │ │ ├── Hal8192FPwrSeq.h │ │ ├── Hal8703BPhyCfg.h │ │ ├── Hal8703BPhyReg.h │ │ ├── Hal8703BPwrSeq.h │ │ ├── Hal8710BPhyCfg.h │ │ ├── Hal8710BPhyReg.h │ │ ├── Hal8710BPwrSeq.h │ │ ├── Hal8723BPhyCfg.h │ │ ├── Hal8723BPhyReg.h │ │ ├── Hal8723BPwrSeq.h │ │ ├── Hal8723DPhyCfg.h │ │ ├── Hal8723DPhyReg.h │ │ ├── Hal8723DPwrSeq.h │ │ ├── Hal8723PwrSeq.h │ │ ├── Hal8812PhyCfg.h │ │ ├── Hal8812PhyReg.h │ │ ├── Hal8812PwrSeq.h │ │ ├── Hal8814PhyCfg.h │ │ ├── Hal8814PhyReg.h │ │ ├── Hal8814PwrSeq.h │ │ ├── Hal8821APwrSeq.h │ │ ├── HalPwrSeqCmd.h │ │ ├── HalVerDef.h │ │ ├── autoconf.h │ │ ├── basic_types.h │ │ ├── byteorder │ │ │ ├── big_endian.h │ │ │ ├── generic.h │ │ │ ├── little_endian.h │ │ │ ├── swab.h │ │ │ └── swabb.h │ │ ├── circ_buf.h │ │ ├── cmd_osdep.h │ │ ├── cmn_info │ │ │ └── rtw_sta_info.h │ │ ├── custom_gpio.h │ │ ├── drv_conf.h │ │ ├── drv_types.h │ │ ├── drv_types_ce.h │ │ ├── drv_types_gspi.h │ │ ├── drv_types_linux.h │ │ ├── drv_types_pci.h │ │ ├── drv_types_sdio.h │ │ ├── drv_types_xp.h │ │ ├── ethernet.h │ │ ├── gspi_hal.h │ │ ├── gspi_ops.h │ │ ├── gspi_ops_linux.h │ │ ├── gspi_osintf.h │ │ ├── h2clbk.h │ │ ├── hal_btcoex.h │ │ ├── hal_btcoex_wifionly.h │ │ ├── hal_com.h │ │ ├── hal_com_h2c.h │ │ ├── hal_com_led.h │ │ ├── hal_com_phycfg.h │ │ ├── hal_com_reg.h │ │ ├── hal_data.h │ │ ├── hal_gspi.h │ │ ├── hal_ic_cfg.h │ │ ├── hal_intf.h │ │ ├── hal_pg.h │ │ ├── hal_phy.h │ │ ├── hal_phy_reg.h │ │ ├── hal_sdio.h │ │ ├── ieee80211.h │ │ ├── ieee80211_ext.h │ │ ├── if_ether.h │ │ ├── ip.h │ │ ├── linux │ │ │ └── wireless.h │ │ ├── mlme_osdep.h │ │ ├── mp_custom_oid.h │ │ ├── nic_spec.h │ │ ├── osdep_intf.h │ │ ├── osdep_service.h │ │ ├── osdep_service_bsd.h │ │ ├── osdep_service_ce.h │ │ ├── osdep_service_linux.h │ │ ├── osdep_service_xp.h │ │ ├── pci_hal.h │ │ ├── pci_ops.h │ │ ├── pci_osintf.h │ │ ├── recv_osdep.h │ │ ├── rtl8188e_cmd.h │ │ ├── rtl8188e_dm.h │ │ ├── rtl8188e_hal.h │ │ ├── rtl8188e_led.h │ │ ├── rtl8188e_recv.h │ │ ├── rtl8188e_rf.h │ │ ├── rtl8188e_spec.h │ │ ├── rtl8188e_sreset.h │ │ ├── rtl8188e_xmit.h │ │ ├── rtl8188f_cmd.h │ │ ├── rtl8188f_dm.h │ │ ├── rtl8188f_hal.h │ │ ├── rtl8188f_led.h │ │ ├── rtl8188f_recv.h │ │ ├── rtl8188f_rf.h │ │ ├── rtl8188f_spec.h │ │ ├── rtl8188f_sreset.h │ │ ├── rtl8188f_xmit.h │ │ ├── rtl8192e_cmd.h │ │ ├── rtl8192e_dm.h │ │ ├── rtl8192e_hal.h │ │ ├── rtl8192e_led.h │ │ ├── rtl8192e_recv.h │ │ ├── rtl8192e_rf.h │ │ ├── rtl8192e_spec.h │ │ ├── rtl8192e_sreset.h │ │ ├── rtl8192e_xmit.h │ │ ├── rtl8192f_cmd.h │ │ ├── rtl8192f_dm.h │ │ ├── rtl8192f_hal.h │ │ ├── rtl8192f_led.h │ │ ├── rtl8192f_recv.h │ │ ├── rtl8192f_rf.h │ │ ├── rtl8192f_spec.h │ │ ├── rtl8192f_sreset.h │ │ ├── rtl8192f_xmit.h │ │ ├── rtl8703b_cmd.h │ │ ├── rtl8703b_dm.h │ │ ├── rtl8703b_hal.h │ │ ├── rtl8703b_led.h │ │ ├── rtl8703b_recv.h │ │ ├── rtl8703b_rf.h │ │ ├── rtl8703b_spec.h │ │ ├── rtl8703b_sreset.h │ │ ├── rtl8703b_xmit.h │ │ ├── rtl8710b_cmd.h │ │ ├── rtl8710b_dm.h │ │ ├── rtl8710b_hal.h │ │ ├── rtl8710b_led.h │ │ ├── rtl8710b_lps_poff.h │ │ ├── rtl8710b_recv.h │ │ ├── rtl8710b_rf.h │ │ ├── rtl8710b_spec.h │ │ ├── rtl8710b_sreset.h │ │ ├── rtl8710b_xmit.h │ │ ├── rtl8723b_cmd.h │ │ ├── rtl8723b_dm.h │ │ ├── rtl8723b_hal.h │ │ ├── rtl8723b_led.h │ │ ├── rtl8723b_recv.h │ │ ├── rtl8723b_rf.h │ │ ├── rtl8723b_spec.h │ │ ├── rtl8723b_sreset.h │ │ ├── rtl8723b_xmit.h │ │ ├── rtl8723d_cmd.h │ │ ├── rtl8723d_dm.h │ │ ├── rtl8723d_hal.h │ │ ├── rtl8723d_led.h │ │ ├── rtl8723d_lps_poff.h │ │ ├── rtl8723d_recv.h │ │ ├── rtl8723d_rf.h │ │ ├── rtl8723d_spec.h │ │ ├── rtl8723d_sreset.h │ │ ├── rtl8723d_xmit.h │ │ ├── rtl8812a_cmd.h │ │ ├── rtl8812a_dm.h │ │ ├── rtl8812a_hal.h │ │ ├── rtl8812a_led.h │ │ ├── rtl8812a_recv.h │ │ ├── rtl8812a_rf.h │ │ ├── rtl8812a_spec.h │ │ ├── rtl8812a_sreset.h │ │ ├── rtl8812a_xmit.h │ │ ├── rtl8814a_cmd.h │ │ ├── rtl8814a_dm.h │ │ ├── rtl8814a_hal.h │ │ ├── rtl8814a_led.h │ │ ├── rtl8814a_recv.h │ │ ├── rtl8814a_rf.h │ │ ├── rtl8814a_spec.h │ │ ├── rtl8814a_sreset.h │ │ ├── rtl8814a_xmit.h │ │ ├── rtl8821a_spec.h │ │ ├── rtl8821a_xmit.h │ │ ├── rtl8821c_dm.h │ │ ├── rtl8821c_hal.h │ │ ├── rtl8821c_spec.h │ │ ├── rtl8821ce_hal.h │ │ ├── rtl8821cs_hal.h │ │ ├── rtl8821cu_hal.h │ │ ├── rtl8822b_hal.h │ │ ├── rtl8822be_hal.h │ │ ├── rtl8822bs_hal.h │ │ ├── rtl8822bu_hal.h │ │ ├── rtw_android.h │ │ ├── rtw_ap.h │ │ ├── rtw_beamforming.h │ │ ├── rtw_br_ext.h │ │ ├── rtw_bt_mp.h │ │ ├── rtw_btcoex.h │ │ ├── rtw_btcoex_wifionly.h │ │ ├── rtw_byteorder.h │ │ ├── rtw_cmd.h │ │ ├── rtw_debug.h │ │ ├── rtw_eeprom.h │ │ ├── rtw_efuse.h │ │ ├── rtw_event.h │ │ ├── rtw_ht.h │ │ ├── rtw_io.h │ │ ├── rtw_ioctl.h │ │ ├── rtw_ioctl_query.h │ │ ├── rtw_ioctl_rtl.h │ │ ├── rtw_ioctl_set.h │ │ ├── rtw_iol.h │ │ ├── rtw_mcc.h │ │ ├── rtw_mem.h │ │ ├── rtw_mi.h │ │ ├── rtw_mlme.h │ │ ├── rtw_mlme_ext.h │ │ ├── rtw_mp.h │ │ ├── rtw_mp_ioctl.h │ │ ├── rtw_mp_phy_regdef.h │ │ ├── rtw_odm.h │ │ ├── rtw_p2p.h │ │ ├── rtw_pwrctrl.h │ │ ├── rtw_qos.h │ │ ├── rtw_recv.h │ │ ├── rtw_rf.h │ │ ├── rtw_rm.h │ │ ├── rtw_rm_fsm.h │ │ ├── rtw_rson.h │ │ ├── rtw_sdio.h │ │ ├── rtw_security.h │ │ ├── rtw_sreset.h │ │ ├── rtw_tdls.h │ │ ├── rtw_version.h │ │ ├── rtw_vht.h │ │ ├── rtw_wapi.h │ │ ├── rtw_wifi_regd.h │ │ ├── rtw_xmit.h │ │ ├── sdio_hal.h │ │ ├── sdio_ops.h │ │ ├── sdio_ops_ce.h │ │ ├── sdio_ops_linux.h │ │ ├── sdio_ops_xp.h │ │ ├── sdio_osintf.h │ │ ├── sta_info.h │ │ ├── usb_hal.h │ │ ├── usb_ops.h │ │ ├── usb_ops_linux.h │ │ ├── usb_osintf.h │ │ ├── usb_vendor_req.h │ │ ├── wifi.h │ │ ├── wlan_bssdef.h │ │ └── xmit_osdep.h │ ├── os_dep │ │ ├── linux │ │ │ ├── custom_gpio_linux.c │ │ │ ├── ioctl_cfg80211.c │ │ │ ├── ioctl_cfg80211.h │ │ │ ├── ioctl_linux.c │ │ │ ├── ioctl_mp.c │ │ │ ├── mlme_linux.c │ │ │ ├── os_intfs.c │ │ │ ├── recv_linux.c │ │ │ ├── rhashtable.c │ │ │ ├── rhashtable.h │ │ │ ├── rtw_android.c │ │ │ ├── rtw_cfgvendor.c │ │ │ ├── rtw_cfgvendor.h │ │ │ ├── rtw_proc.c │ │ │ ├── rtw_proc.h │ │ │ ├── rtw_rhashtable.c │ │ │ ├── rtw_rhashtable.h │ │ │ ├── sdio_intf.c │ │ │ ├── sdio_ops_linux.c │ │ │ ├── wifi_regd.c │ │ │ └── xmit_linux.c │ │ └── osdep_service.c │ ├── platform │ │ ├── custom_country_chplan.h │ │ ├── platform_ARM_SUN50IW1P1_sdio.c │ │ ├── platform_ARM_SUNnI_sdio.c │ │ ├── platform_ARM_SUNxI_sdio.c │ │ ├── platform_ARM_SUNxI_usb.c │ │ ├── platform_ARM_WMT_sdio.c │ │ ├── platform_RTK_DMP_usb.c │ │ ├── platform_aml_s905_sdio.c │ │ ├── platform_aml_s905_sdio.h │ │ ├── platform_arm_act_sdio.c │ │ ├── platform_hisilicon_hi3798_sdio.c │ │ ├── platform_hisilicon_hi3798_sdio.h │ │ ├── platform_ops.c │ │ ├── platform_ops.h │ │ ├── platform_sprd_sdio.c │ │ ├── platform_zte_zx296716_sdio.c │ │ └── platform_zte_zx296716_sdio.h │ ├── rtl8821c.mk │ ├── runwpa │ └── wlan0dhcp │ └── rtl8821cs_20190402.tgz ├── rtk_wifi_ftp申请账户Anchor-Customer-CreateAccount-20200331.pdf ├── rtl8822cs_8_1补丁.rar ├── sdio-debug.patch ├── sdio速率修改.md ├── uart(这个是测试工具,也放到这里,测试蓝牙串口能不能用) ├── README.md ├── Rockchip-Developer-Guide-linux4.4-UART.pdf └── ts_uart ├── usb_wifi识别不到卡(8812AU类似).diff ├── vim配置.md ├── wifi 问题总结.docx ├── wifi_gbk_android11_patch.rar ├── wifi以太网共用网络问题.md ├── wifi使能脚替换成为rfkill控制.diff ├── wifi使能脚替换成为rfkill控制 ├── README.md ├── kernel4.19_mmc_rescan can't find card.patch └── kernel4.4_mmc_rescan can't find card.diff ├── wifi信号显示异常.md ├── wifi指令.md ├── wifi移植示例 ├── README.md ├── 上层匹配.c └── 添加DTS上chip_type设置识别AP6354下载fw示例.diff ├── 关于log调试.md ├── 关于蓝牙流控的锅.md ├── 博通蓝牙fw表.md ├── 处理蓝牙wifi打不开模板.md ├── 打patch.md ├── 打开log打印.md ├── 文档 ├── README.md └── 模板.docx ├── 新的wifi驱动 ├── AP6236_4.2.7z ├── AP6256_4.2.7z ├── AP6356S_4.2.7z ├── AP6398S_4.2.7z ├── README.md ├── bcmdhd1.579.77.41.10_k3.10.tgz └── bcmdhd1.579.77.41.10_kernel4.4.tgz ├── 桥接 ├── brctl ├── bridge-utils.zip └── 桥接和网络共享方法.md ├── 概率性打不开bt(博通)Unknown HCI mess type.diff ├── 没有设备树kernel3.0的SDMMC0支持AP6181支持mmc0接wifi sdio.doc ├── 没有跑wifi驱动.md ├── 添加安卓设置上WIFI的AP5G热点.md ├── 蓝牙USB驱动移植.md ├── 蓝牙usb驱动问题.md ├── 蓝牙wifi以太网命令模板.md ├── 蓝牙wifi匹配问题.md ├── 蓝牙wifi模组的博通和RTK的硬件涵盖接图.png ├── 蓝牙串口波特率修改.md ├── 蓝牙串口逻辑分析.png ├── 蓝牙主从问题.md ├── 蓝牙代码查找纽带.md ├── 蓝牙可见性和扫描模式设置.md ├── 蓝牙名字设置与bt_config.conf的保存.md ├── 蓝牙地址.md ├── 蓝牙复位延时.md ├── 蓝牙打不开CLOCK_BOOTTIME_ALARM问题.md ├── 蓝牙搜索不到或者不能被搜索 ├── QQ截图20190919164233.png ├── QQ截图20190919165054.png ├── QQ截图20190919165301.png ├── QQ截图20190919165315.png ├── QQ截图20190919194523.png ├── QQ截图20190919195320.png ├── QQ截图20190919195643.png ├── QQ截图20200117113548.png └── README.md └── 蓝牙移植 ├── 7.1成功移植rtk_bluedroid.patch └── hw_get_module.md /0001_modify_f2fs_to ext4.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/0001_modify_f2fs_to ext4.patch -------------------------------------------------------------------------------- /3126_9.0蓝牙设置重影显示.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/3126_9.0蓝牙设置重影显示.patch -------------------------------------------------------------------------------- /3399蓝牙电话功能hfp.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/3399蓝牙电话功能hfp.zip -------------------------------------------------------------------------------- /3399蓝牙电话功能hfp/3399PCM主从模式配制.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/3399蓝牙电话功能hfp/3399PCM主从模式配制.txt -------------------------------------------------------------------------------- /3399蓝牙电话功能hfp/3399蓝牙电话功能hfp8.1_9.0_10.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/3399蓝牙电话功能hfp/3399蓝牙电话功能hfp8.1_9.0_10.0.zip -------------------------------------------------------------------------------- /3399蓝牙电话功能hfp/3399蓝牙通话hfp8.1/3399蓝牙修改.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/3399蓝牙电话功能hfp/3399蓝牙通话hfp8.1/3399蓝牙修改.txt -------------------------------------------------------------------------------- /3399蓝牙电话功能hfp/3399蓝牙通话hfp8.1/8.1_pcm_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/3399蓝牙电话功能hfp/3399蓝牙通话hfp8.1/8.1_pcm_config.png -------------------------------------------------------------------------------- /3399蓝牙电话功能hfp/3399蓝牙通话hfp8.1/[rk3399]挖掘机添加蓝牙通话功能.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/3399蓝牙电话功能hfp/3399蓝牙通话hfp8.1/[rk3399]挖掘机添加蓝牙通话功能.pdf -------------------------------------------------------------------------------- /3399蓝牙电话功能hfp/3399蓝牙通话hfp9.0/Bluetooth User Guide for Android 9_v0.3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/3399蓝牙电话功能hfp/3399蓝牙通话hfp9.0/Bluetooth User Guide for Android 9_v0.3.pdf -------------------------------------------------------------------------------- /3399蓝牙电话功能hfp/3399蓝牙通话hfp9.0/android9.0_hfp_modify.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/3399蓝牙电话功能hfp/3399蓝牙通话hfp9.0/android9.0_hfp_modify.patch -------------------------------------------------------------------------------- /3399蓝牙电话功能hfp/3399蓝牙通话hfp9.0/host_pcm_out.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/3399蓝牙电话功能hfp/3399蓝牙通话hfp9.0/host_pcm_out.jpg -------------------------------------------------------------------------------- /3399蓝牙电话功能hfp/3399蓝牙通话hfp9.0/pcm_clock(512K).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/3399蓝牙电话功能hfp/3399蓝牙通话hfp9.0/pcm_clock(512K).jpg -------------------------------------------------------------------------------- /3399蓝牙电话功能hfp/3399蓝牙通话hfp9.0/pcm_sync(8k).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/3399蓝牙电话功能hfp/3399蓝牙通话hfp9.0/pcm_sync(8k).jpg -------------------------------------------------------------------------------- /3399蓝牙电话功能hfp/3399蓝牙通话hfp9.0/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/3399蓝牙电话功能hfp/3399蓝牙通话hfp9.0/readme.txt -------------------------------------------------------------------------------- /3399蓝牙电话功能hfp/3399蓝牙通话hfp9.0/tinyalsa_hal/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/3399蓝牙电话功能hfp/3399蓝牙通话hfp9.0/tinyalsa_hal/Android.mk -------------------------------------------------------------------------------- /3399蓝牙电话功能hfp/3399蓝牙通话hfp9.0/tinyalsa_hal/alsa_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/3399蓝牙电话功能hfp/3399蓝牙通话hfp9.0/tinyalsa_hal/alsa_audio.h -------------------------------------------------------------------------------- /3399蓝牙电话功能hfp/3399蓝牙通话hfp9.0/tinyalsa_hal/alsa_mixer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/3399蓝牙电话功能hfp/3399蓝牙通话hfp9.0/tinyalsa_hal/alsa_mixer.c -------------------------------------------------------------------------------- /3399蓝牙电话功能hfp/3399蓝牙通话hfp9.0/tinyalsa_hal/alsa_route.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/3399蓝牙电话功能hfp/3399蓝牙通话hfp9.0/tinyalsa_hal/alsa_route.c -------------------------------------------------------------------------------- /3399蓝牙电话功能hfp/3399蓝牙通话hfp9.0/tinyalsa_hal/amix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/3399蓝牙电话功能hfp/3399蓝牙通话hfp9.0/tinyalsa_hal/amix.c -------------------------------------------------------------------------------- /3399蓝牙电话功能hfp/3399蓝牙通话hfp9.0/tinyalsa_hal/asound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/3399蓝牙电话功能hfp/3399蓝牙通话hfp9.0/tinyalsa_hal/asound.h -------------------------------------------------------------------------------- /3399蓝牙电话功能hfp/3399蓝牙通话hfp9.0/tinyalsa_hal/audio_bitstream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/3399蓝牙电话功能hfp/3399蓝牙通话hfp9.0/tinyalsa_hal/audio_bitstream.c -------------------------------------------------------------------------------- /3399蓝牙电话功能hfp/3399蓝牙通话hfp9.0/tinyalsa_hal/audio_bitstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/3399蓝牙电话功能hfp/3399蓝牙通话hfp9.0/tinyalsa_hal/audio_bitstream.h -------------------------------------------------------------------------------- /3399蓝牙电话功能hfp/3399蓝牙通话hfp9.0/tinyalsa_hal/audio_hw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/3399蓝牙电话功能hfp/3399蓝牙通话hfp9.0/tinyalsa_hal/audio_hw.c -------------------------------------------------------------------------------- /3399蓝牙电话功能hfp/3399蓝牙通话hfp9.0/tinyalsa_hal/audio_hw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/3399蓝牙电话功能hfp/3399蓝牙通话hfp9.0/tinyalsa_hal/audio_hw.h -------------------------------------------------------------------------------- /3399蓝牙电话功能hfp/3399蓝牙通话hfp9.0/tinyalsa_hal/audio_hw_hdmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/3399蓝牙电话功能hfp/3399蓝牙通话hfp9.0/tinyalsa_hal/audio_hw_hdmi.c -------------------------------------------------------------------------------- /3399蓝牙电话功能hfp/3399蓝牙通话hfp9.0/tinyalsa_hal/audio_hw_hdmi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/3399蓝牙电话功能hfp/3399蓝牙通话hfp9.0/tinyalsa_hal/audio_hw_hdmi.h -------------------------------------------------------------------------------- /3399蓝牙电话功能hfp/3399蓝牙通话hfp9.0/tinyalsa_hal/audio_setting.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/3399蓝牙电话功能hfp/3399蓝牙通话hfp9.0/tinyalsa_hal/audio_setting.c -------------------------------------------------------------------------------- /3399蓝牙电话功能hfp/3399蓝牙通话hfp9.0/tinyalsa_hal/audio_setting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/3399蓝牙电话功能hfp/3399蓝牙通话hfp9.0/tinyalsa_hal/audio_setting.h -------------------------------------------------------------------------------- /3399蓝牙电话功能hfp/3399蓝牙通话hfp9.0/tinyalsa_hal/codec_config/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/3399蓝牙电话功能hfp/3399蓝牙通话hfp9.0/tinyalsa_hal/codec_config/config.h -------------------------------------------------------------------------------- /3399蓝牙电话功能hfp/3399蓝牙通话hfp9.0/tinyalsa_hal/codec_config/config_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/3399蓝牙电话功能hfp/3399蓝牙通话hfp9.0/tinyalsa_hal/codec_config/config_list.h -------------------------------------------------------------------------------- /3399蓝牙电话功能hfp/3399蓝牙通话hfp9.0/tinyalsa_hal/codec_config/cx2072_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/3399蓝牙电话功能hfp/3399蓝牙通话hfp9.0/tinyalsa_hal/codec_config/cx2072_config.h -------------------------------------------------------------------------------- /3399蓝牙电话功能hfp/3399蓝牙通话hfp9.0/tinyalsa_hal/codec_config/default_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/3399蓝牙电话功能hfp/3399蓝牙通话hfp9.0/tinyalsa_hal/codec_config/default_config.h -------------------------------------------------------------------------------- /3399蓝牙电话功能hfp/3399蓝牙通话hfp9.0/tinyalsa_hal/codec_config/es8316_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/3399蓝牙电话功能hfp/3399蓝牙通话hfp9.0/tinyalsa_hal/codec_config/es8316_config.h -------------------------------------------------------------------------------- /3399蓝牙电话功能hfp/3399蓝牙通话hfp9.0/tinyalsa_hal/codec_config/es8396_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/3399蓝牙电话功能hfp/3399蓝牙通话hfp9.0/tinyalsa_hal/codec_config/es8396_config.h -------------------------------------------------------------------------------- /3399蓝牙电话功能hfp/3399蓝牙通话hfp9.0/tinyalsa_hal/codec_config/mixer_paths.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/3399蓝牙电话功能hfp/3399蓝牙通话hfp9.0/tinyalsa_hal/codec_config/mixer_paths.xml -------------------------------------------------------------------------------- /3399蓝牙电话功能hfp/3399蓝牙通话hfp9.0/tinyalsa_hal/codec_config/rk616_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/3399蓝牙电话功能hfp/3399蓝牙通话hfp9.0/tinyalsa_hal/codec_config/rk616_config.h -------------------------------------------------------------------------------- /3399蓝牙电话功能hfp/3399蓝牙通话hfp9.0/tinyalsa_hal/codec_config/rk_audio.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/3399蓝牙电话功能hfp/3399蓝牙通话hfp9.0/tinyalsa_hal/codec_config/rk_audio.mk -------------------------------------------------------------------------------- /3399蓝牙电话功能hfp/3399蓝牙通话hfp9.0/tinyalsa_hal/codec_config/rt3224_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/3399蓝牙电话功能hfp/3399蓝牙通话hfp9.0/tinyalsa_hal/codec_config/rt3224_config.h -------------------------------------------------------------------------------- /3399蓝牙电话功能hfp/3399蓝牙通话hfp9.0/tinyalsa_hal/codec_config/rt3261_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/3399蓝牙电话功能hfp/3399蓝牙通话hfp9.0/tinyalsa_hal/codec_config/rt3261_config.h -------------------------------------------------------------------------------- /3399蓝牙电话功能hfp/3399蓝牙通话hfp9.0/tinyalsa_hal/codec_config/rt5616_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/3399蓝牙电话功能hfp/3399蓝牙通话hfp9.0/tinyalsa_hal/codec_config/rt5616_config.h -------------------------------------------------------------------------------- /3399蓝牙电话功能hfp/3399蓝牙通话hfp9.0/tinyalsa_hal/codec_config/rt5640_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/3399蓝牙电话功能hfp/3399蓝牙通话hfp9.0/tinyalsa_hal/codec_config/rt5640_config.h -------------------------------------------------------------------------------- /3399蓝牙电话功能hfp/3399蓝牙通话hfp9.0/tinyalsa_hal/codec_config/rt5651_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/3399蓝牙电话功能hfp/3399蓝牙通话hfp9.0/tinyalsa_hal/codec_config/rt5651_config.h -------------------------------------------------------------------------------- /3399蓝牙电话功能hfp/3399蓝牙通话hfp9.0/tinyalsa_hal/codec_config/wm8960_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/3399蓝牙电话功能hfp/3399蓝牙通话hfp9.0/tinyalsa_hal/codec_config/wm8960_config.h -------------------------------------------------------------------------------- /3399蓝牙电话功能hfp/3399蓝牙通话hfp9.0/tinyalsa_hal/voice_preprocess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/3399蓝牙电话功能hfp/3399蓝牙通话hfp9.0/tinyalsa_hal/voice_preprocess.c -------------------------------------------------------------------------------- /3399蓝牙电话功能hfp/3399蓝牙通话hfp9.0/tinyalsa_hal/voice_preprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/3399蓝牙电话功能hfp/3399蓝牙通话hfp9.0/tinyalsa_hal/voice_preprocess.h -------------------------------------------------------------------------------- /3399蓝牙电话功能hfp/8.0_pcm.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/3399蓝牙电话功能hfp/8.0_pcm.diff -------------------------------------------------------------------------------- /3399蓝牙电话功能hfp/PCM配置.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/3399蓝牙电话功能hfp/PCM配置.png -------------------------------------------------------------------------------- /3399蓝牙电话功能hfp/QQ截图20200716154156.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/3399蓝牙电话功能hfp/QQ截图20200716154156.png -------------------------------------------------------------------------------- /3399蓝牙电话功能hfp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/3399蓝牙电话功能hfp/README.md -------------------------------------------------------------------------------- /5.1的蓝牙data目录不一样/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /5.1的蓝牙data目录不一样/bt_config.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/5.1的蓝牙data目录不一样/bt_config.old -------------------------------------------------------------------------------- /5.1的蓝牙data目录不一样/bt_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/5.1的蓝牙data目录不一样/bt_config.xml -------------------------------------------------------------------------------- /6256/6256.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/6256/6256.patch -------------------------------------------------------------------------------- /6256/BCM4345C5.hcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/6256/BCM4345C5.hcd -------------------------------------------------------------------------------- /71sink-rtk.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/71sink-rtk.rar -------------------------------------------------------------------------------- /8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/BT_Firmware.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/BT_Firmware.mk -------------------------------------------------------------------------------- /8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/fw_info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/fw_info.txt -------------------------------------------------------------------------------- /8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8703as_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8703as_config -------------------------------------------------------------------------------- /8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8703as_fw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8703as_fw -------------------------------------------------------------------------------- /8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8703bs_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8703bs_config -------------------------------------------------------------------------------- /8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8703bs_fw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8703bs_fw -------------------------------------------------------------------------------- /8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8703cs_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8703cs_config -------------------------------------------------------------------------------- /8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8703cs_fw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8703cs_fw -------------------------------------------------------------------------------- /8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8723a_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8723a_config -------------------------------------------------------------------------------- /8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8723a_config_addr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8723a_config_addr -------------------------------------------------------------------------------- /8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8723a_fw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8723a_fw -------------------------------------------------------------------------------- /8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8723as_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8723as_config -------------------------------------------------------------------------------- /8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8723as_fw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8723as_fw -------------------------------------------------------------------------------- /8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8723b_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8723b_config -------------------------------------------------------------------------------- /8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8723b_fw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8723b_fw -------------------------------------------------------------------------------- /8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8723bs_VQ0_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8723bs_VQ0_config -------------------------------------------------------------------------------- /8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8723bs_VQ0_fw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8723bs_VQ0_fw -------------------------------------------------------------------------------- /8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8723bs_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8723bs_config -------------------------------------------------------------------------------- /8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8723bs_fw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8723bs_fw -------------------------------------------------------------------------------- /8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8723bu_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8723bu_config -------------------------------------------------------------------------------- /8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8723c_fw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8723c_fw -------------------------------------------------------------------------------- /8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8723cs_cg_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8723cs_cg_config -------------------------------------------------------------------------------- /8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8723cs_cg_fw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8723cs_cg_fw -------------------------------------------------------------------------------- /8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8723cs_vf_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8723cs_vf_config -------------------------------------------------------------------------------- /8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8723cs_vf_fw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8723cs_vf_fw -------------------------------------------------------------------------------- /8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8723cs_xx_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8723cs_xx_config -------------------------------------------------------------------------------- /8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8723cs_xx_fw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8723cs_xx_fw -------------------------------------------------------------------------------- /8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8723d_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8723d_config -------------------------------------------------------------------------------- /8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8723d_fw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8723d_fw -------------------------------------------------------------------------------- /8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8723ds_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8723ds_config -------------------------------------------------------------------------------- /8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8723ds_fw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8723ds_fw -------------------------------------------------------------------------------- /8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8761a_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8761a_config -------------------------------------------------------------------------------- /8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8761at8192ee_fw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8761at8192ee_fw -------------------------------------------------------------------------------- /8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8761at8812ae_fw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8761at8812ae_fw -------------------------------------------------------------------------------- /8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8761at_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8761at_config -------------------------------------------------------------------------------- /8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8761at_fw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8761at_fw -------------------------------------------------------------------------------- /8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8761au8192ee_fw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8761au8192ee_fw -------------------------------------------------------------------------------- /8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8761au8812ae_fw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8761au8812ae_fw -------------------------------------------------------------------------------- /8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8761au_fw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8761au_fw -------------------------------------------------------------------------------- /8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8761aw8192eu_fw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8761aw8192eu_fw -------------------------------------------------------------------------------- /8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8821a_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8821a_config -------------------------------------------------------------------------------- /8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8821a_fw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8821a_fw -------------------------------------------------------------------------------- /8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8821as_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8821as_config -------------------------------------------------------------------------------- /8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8821as_fw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8821as_fw -------------------------------------------------------------------------------- /8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8821c_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8821c_config -------------------------------------------------------------------------------- /8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8821c_fw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8821c_fw -------------------------------------------------------------------------------- /8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8821cs_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8821cs_config -------------------------------------------------------------------------------- /8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8821cs_fw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8821cs_fw -------------------------------------------------------------------------------- /8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8822b_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8822b_config -------------------------------------------------------------------------------- /8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8822b_fw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8822b_fw -------------------------------------------------------------------------------- /8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8822bs_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8822bs_config -------------------------------------------------------------------------------- /8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8822bs_fw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8822bs_fw -------------------------------------------------------------------------------- /8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8822c_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8822c_config -------------------------------------------------------------------------------- /8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8822c_fw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8822c_fw -------------------------------------------------------------------------------- /8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8822cs_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8822cs_config -------------------------------------------------------------------------------- /8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8822cs_fw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/Firmware/rtl8822cs_fw -------------------------------------------------------------------------------- /8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/README.md -------------------------------------------------------------------------------- /8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/bt-usb-selinux.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/bt-usb-selinux.patch -------------------------------------------------------------------------------- /8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/libbt-vendor/Android.mk: -------------------------------------------------------------------------------- 1 | include $(call all-subdir-makefiles) 2 | -------------------------------------------------------------------------------- /8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/libbt-vendor/codec/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/libbt-vendor/codec/Android.mk -------------------------------------------------------------------------------- /8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/libbt-vendor/codec/sbc/sbc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/libbt-vendor/codec/sbc/sbc.c -------------------------------------------------------------------------------- /8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/libbt-vendor/codec/sbc/sbc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/libbt-vendor/codec/sbc/sbc.h -------------------------------------------------------------------------------- /8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/libbt-vendor/include/bt_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/libbt-vendor/include/bt_list.h -------------------------------------------------------------------------------- /8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/libbt-vendor/include/upio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/libbt-vendor/include/upio.h -------------------------------------------------------------------------------- /8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/libbt-vendor/src/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/libbt-vendor/src/Android.mk -------------------------------------------------------------------------------- /8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/libbt-vendor/src/bt_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/libbt-vendor/src/bt_list.c -------------------------------------------------------------------------------- /8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/libbt-vendor/src/bt_skbuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/libbt-vendor/src/bt_skbuff.c -------------------------------------------------------------------------------- /8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/libbt-vendor/src/hardware.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/libbt-vendor/src/hardware.c -------------------------------------------------------------------------------- /8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/libbt-vendor/src/hci_h5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/libbt-vendor/src/hci_h5.c -------------------------------------------------------------------------------- /8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/libbt-vendor/src/rtk_parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/libbt-vendor/src/rtk_parse.c -------------------------------------------------------------------------------- /8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/libbt-vendor/src/rtk_socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/libbt-vendor/src/rtk_socket.c -------------------------------------------------------------------------------- /8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/libbt-vendor/src/upio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/8.1(解决8.1权限问题蓝牙打不开拿不了vendor)/8.1-rtl-usbbt/libbt-vendor/src/upio.c -------------------------------------------------------------------------------- /8250_20190125.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/8250_20190125.tar.gz -------------------------------------------------------------------------------- /8250_l_test2.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/8250_l_test2.rar -------------------------------------------------------------------------------- /8250_test1.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/8250_test1.rar -------------------------------------------------------------------------------- /8723DS模组图.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/8723DS模组图.png -------------------------------------------------------------------------------- /8723bu报错没有P2P节点.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/8723bu报错没有P2P节点.md -------------------------------------------------------------------------------- /8822cs/wifi_8822cs驱动修改.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/8822cs/wifi_8822cs驱动修改.diff -------------------------------------------------------------------------------- /9.0回连不上autoconnecterr.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/9.0回连不上autoconnecterr.patch -------------------------------------------------------------------------------- /A2dpSinkStreamHandler(需要改成提示响起的时候,手机端自动暂停播放,提示音结束后,手机端自动继续播放。).java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/A2dpSinkStreamHandler(需要改成提示响起的时候,手机端自动暂停播放,提示音结束后,手机端自动继续播放。).java -------------------------------------------------------------------------------- /AP6275S.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/AP6275S.rar -------------------------------------------------------------------------------- /AP6XXX_PIN TO PIN_REFERENCE DESIGN WO NFC_V2.4_06072015_看图王.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/AP6XXX_PIN TO PIN_REFERENCE DESIGN WO NFC_V2.4_06072015_看图王.pdf -------------------------------------------------------------------------------- /AP6XXX模组图.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/AP6XXX模组图.png -------------------------------------------------------------------------------- /AP6XXX模组蓝牙分析.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/AP6XXX模组蓝牙分析.png -------------------------------------------------------------------------------- /AVRCP/QQ截图20191010154134.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/AVRCP/QQ截图20191010154134.png -------------------------------------------------------------------------------- /AVRCP/QQ截图20191010160002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/AVRCP/QQ截图20191010160002.png -------------------------------------------------------------------------------- /AVRCP/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/AVRCP/README.md -------------------------------------------------------------------------------- /AVRCP/提示音audio触发avrcp发送pause和play.cfa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/AVRCP/提示音audio触发avrcp发送pause和play.cfa -------------------------------------------------------------------------------- /Android 7.1 A2DP Sink patch20180117/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/Android 7.1 A2DP Sink patch20180117/README.md -------------------------------------------------------------------------------- /Android 7.1 A2DP Sink patch20180117/sinkAndsrc1106.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/Android 7.1 A2DP Sink patch20180117/sinkAndsrc1106.patch -------------------------------------------------------------------------------- /BQB/AVRCP降版本.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/BQB/AVRCP降版本.diff -------------------------------------------------------------------------------- /BQB/BQB申请表-附表一.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/BQB/BQB申请表-附表一.docx -------------------------------------------------------------------------------- /BQB/BQB申请表.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/BQB/BQB申请表.docx -------------------------------------------------------------------------------- /BQB/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/BQB/README.md -------------------------------------------------------------------------------- /BQB/YD_BQB_new.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/BQB/YD_BQB_new.zip -------------------------------------------------------------------------------- /BQB/YD_new.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/BQB/YD_new.zip -------------------------------------------------------------------------------- /BQB/天河致远BQB测试patch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/BQB/天河致远BQB测试patch.zip -------------------------------------------------------------------------------- /IO类问题排查总结 (1).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/IO类问题排查总结 (1).pdf -------------------------------------------------------------------------------- /L2CAP/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/L2CAP/README.md -------------------------------------------------------------------------------- /PCM setting_Description_v03.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/PCM setting_Description_v03.pdf -------------------------------------------------------------------------------- /PCM/PCM_libbt.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/PCM/PCM_libbt.patch -------------------------------------------------------------------------------- /PCM/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /PCM蓝牙audio关系简述.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/PCM蓝牙audio关系简述.md -------------------------------------------------------------------------------- /Part-E1-SDIO-Specification-Ver4.00-Final-120220.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/Part-E1-SDIO-Specification-Ver4.00-Final-120220.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/README.md -------------------------------------------------------------------------------- /RK912 Patch Android 8.1 9.0 Kernel 4.4 20191008.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/RK912 Patch Android 8.1 9.0 Kernel 4.4 20191008.zip -------------------------------------------------------------------------------- /RK平台AP WIFI自定义MAC地址.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/RK平台AP WIFI自定义MAC地址.pdf -------------------------------------------------------------------------------- /RTK7.1蓝牙作sink和source可以同时使用.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/RTK7.1蓝牙作sink和source可以同时使用.rar -------------------------------------------------------------------------------- /SDIO3.0.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/SDIO3.0.diff -------------------------------------------------------------------------------- /WIFI BT射频测试报告.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/WIFI BT射频测试报告.xlsx -------------------------------------------------------------------------------- /WIFI国家码.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/WIFI国家码.md -------------------------------------------------------------------------------- /Wi-Fi_Display_Technical_Specification_v2.1_0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/Wi-Fi_Display_Technical_Specification_v2.1_0.pdf -------------------------------------------------------------------------------- /Wifidisplay/Rockchip_Introduction_Wifidisplay_CN.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/Wifidisplay/Rockchip_Introduction_Wifidisplay_CN.docx -------------------------------------------------------------------------------- /Wifidisplay/Rockchip_Introduction_Wifidisplay_CN.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/Wifidisplay/Rockchip_Introduction_Wifidisplay_CN.pdf -------------------------------------------------------------------------------- /Wifidisplay/Wi-Fi_Display_Technical_Specification_v2.1_0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/Wifidisplay/Wi-Fi_Display_Technical_Specification_v2.1_0.pdf -------------------------------------------------------------------------------- /andriod_fix_bt_name_lose蓝牙setting修改名称后及时保存.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/andriod_fix_bt_name_lose蓝牙setting修改名称后及时保存.diff -------------------------------------------------------------------------------- /ble/BLE广播.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/ble/BLE广播.png -------------------------------------------------------------------------------- /ble/android使用静态ble地址.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/ble/android使用静态ble地址.md -------------------------------------------------------------------------------- /bt_config_conf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/bt_config_conf.md -------------------------------------------------------------------------------- /bt_uart_cmd_test/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/bt_uart_cmd_test/Android.mk -------------------------------------------------------------------------------- /bt_uart_cmd_test/README.md: -------------------------------------------------------------------------------- 1 | open ttys0 2 | 3 | 然后进行下cmd试下串口 4 | -------------------------------------------------------------------------------- /bt_uart_cmd_test/brcm_patchram_plus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/bt_uart_cmd_test/brcm_patchram_plus.c -------------------------------------------------------------------------------- /cscope_files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/cscope_files.md -------------------------------------------------------------------------------- /debug模板.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/debug模板.md -------------------------------------------------------------------------------- /doze模式(wifi灭屏后一段时间无法ping).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/doze模式(wifi灭屏后一段时间无法ping).md -------------------------------------------------------------------------------- /dual_wifi_patch_for_android7.1_and_android8.1.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/dual_wifi_patch_for_android7.1_and_android8.1.rar -------------------------------------------------------------------------------- /dual_wifi_patch_for_android9.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/dual_wifi_patch_for_android9.0.zip -------------------------------------------------------------------------------- /iPerf_for_mid.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/iPerf_for_mid.rar -------------------------------------------------------------------------------- /ibeacon(ble拓展模式,主要修改拿到handle,上层还需客户开发)/QQ截图20200703175849.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/ibeacon(ble拓展模式,主要修改拿到handle,上层还需客户开发)/QQ截图20200703175849.png -------------------------------------------------------------------------------- /ibeacon(ble拓展模式,主要修改拿到handle,上层还需客户开发)/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/ibeacon(ble拓展模式,主要修改拿到handle,上层还需客户开发)/README.md -------------------------------------------------------------------------------- /ibeacon(ble拓展模式,主要修改拿到handle,上层还需客户开发)/base.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/ibeacon(ble拓展模式,主要修改拿到handle,上层还需客户开发)/base.apk -------------------------------------------------------------------------------- /ibeacon(ble拓展模式,主要修改拿到handle,上层还需客户开发)/checkBleModeApp.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/ibeacon(ble拓展模式,主要修改拿到handle,上层还需客户开发)/checkBleModeApp.7z -------------------------------------------------------------------------------- /ibeacon(ble拓展模式,主要修改拿到handle,上层还需客户开发)/ibeacon.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/ibeacon(ble拓展模式,主要修改拿到handle,上层还需客户开发)/ibeacon.patch -------------------------------------------------------------------------------- /ip6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/ip6/README.md -------------------------------------------------------------------------------- /le_enhance/QQ截图20200608172930.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/le_enhance/QQ截图20200608172930.png -------------------------------------------------------------------------------- /le_enhance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/le_enhance/README.md -------------------------------------------------------------------------------- /opp/BtOppObexServer.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/opp/BtOppObexServer.log -------------------------------------------------------------------------------- /opp/BtOppService.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/opp/BtOppService.log -------------------------------------------------------------------------------- /opp/bttransamefile(传文件第一台设备点击拒接后,连第二台设备发送不了).patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/opp/bttransamefile(传文件第一台设备点击拒接后,连第二台设备发送不了).patch -------------------------------------------------------------------------------- /opp/obex连接不支持push设备第二次连支持的设备也传不了.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/opp/obex连接不支持push设备第二次连支持的设备也传不了.md -------------------------------------------------------------------------------- /rk312x_5_1_opp不能传文件弹出框没得选.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rk312x_5_1_opp不能传文件弹出框没得选.patch -------------------------------------------------------------------------------- /rk3229_wifi_bt_32k_from_cpu.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rk3229_wifi_bt_32k_from_cpu.diff -------------------------------------------------------------------------------- /rk3308linux平台调通的_rtl8723d_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rk3308linux平台调通的_rtl8723d_config -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/4.4_5.1_6.0/firmware/rtl8821c_fw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/4.4_5.1_6.0/firmware/rtl8821c_fw -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/4.4_5.1_6.0/firmware/rtl8821cs_fw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/4.4_5.1_6.0/firmware/rtl8821cs_fw -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/4.4_5.1_6.0/libbt-vendor/Android.mk: -------------------------------------------------------------------------------- 1 | include $(call all-subdir-makefiles) 2 | -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/README.md -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/hardware_realtek_rtkbt.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/hardware_realtek_rtkbt.tgz -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/Android.mk -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/addon/fw/rtl8703as_fw.B_473d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/addon/fw/rtl8703as_fw.B_473d -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/addon/fw/rtl8723a_fw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/addon/fw/rtl8723a_fw -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/addon/fw/rtl8723as_fw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/addon/fw/rtl8723as_fw -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/addon/fw/rtl8821c_fw.A_0202: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/addon/fw/rtl8821c_fw.A_0202 -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/addon/fw/rtl8821cs_fw.A_0202: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/addon/fw/rtl8821cs_fw.A_0202 -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/bluetooth/bdroid_buildcfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/bluetooth/bdroid_buildcfg.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/Android.mk -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/.gn -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/Android.mk -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/BUILD.gn -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/CleanSpec.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/CleanSpec.mk -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/MODULE_LICENSE_APACHE2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/NOTICE -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/README.md -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/Android.mk -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/BUILD.gn -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/ag/bta_ag_act.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/ag/bta_ag_act.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/ag/bta_ag_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/ag/bta_ag_api.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/ag/bta_ag_at.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/ag/bta_ag_at.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/ag/bta_ag_at.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/ag/bta_ag_at.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/ag/bta_ag_cfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/ag/bta_ag_cfg.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/ag/bta_ag_ci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/ag/bta_ag_ci.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/ag/bta_ag_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/ag/bta_ag_cmd.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/ag/bta_ag_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/ag/bta_ag_int.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/ag/bta_ag_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/ag/bta_ag_main.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/ag/bta_ag_rfc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/ag/bta_ag_rfc.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/ag/bta_ag_sco.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/ag/bta_ag_sco.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/ag/bta_ag_sdp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/ag/bta_ag_sdp.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/ar/bta_ar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/ar/bta_ar.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/ar/bta_ar_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/ar/bta_ar_int.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/av/bta_av_aact.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/av/bta_av_aact.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/av/bta_av_act.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/av/bta_av_act.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/av/bta_av_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/av/bta_av_api.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/av/bta_av_cfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/av/bta_av_cfg.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/av/bta_av_ci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/av/bta_av_ci.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/av/bta_av_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/av/bta_av_int.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/av/bta_av_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/av/bta_av_main.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/av/bta_av_sbc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/av/bta_av_sbc.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/av/bta_av_ssm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/av/bta_av_ssm.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/dm/bta_dm_act.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/dm/bta_dm_act.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/dm/bta_dm_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/dm/bta_dm_api.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/dm/bta_dm_cfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/dm/bta_dm_cfg.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/dm/bta_dm_ci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/dm/bta_dm_ci.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/dm/bta_dm_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/dm/bta_dm_int.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/dm/bta_dm_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/dm/bta_dm_main.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/dm/bta_dm_pm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/dm/bta_dm_pm.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/dm/bta_dm_sco.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/dm/bta_dm_sco.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/hh/bta_hh_act.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/hh/bta_hh_act.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/hh/bta_hh_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/hh/bta_hh_api.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/hh/bta_hh_cfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/hh/bta_hh_cfg.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/hh/bta_hh_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/hh/bta_hh_int.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/hh/bta_hh_le.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/hh/bta_hh_le.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/hh/bta_hh_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/hh/bta_hh_main.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/hh/bta_hh_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/hh/bta_hh_utils.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/hl/bta_hl_act.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/hl/bta_hl_act.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/hl/bta_hl_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/hl/bta_hl_api.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/hl/bta_hl_ci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/hl/bta_hl_ci.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/hl/bta_hl_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/hl/bta_hl_int.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/hl/bta_hl_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/hl/bta_hl_main.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/hl/bta_hl_sdp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/hl/bta_hl_sdp.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/hl/bta_hl_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/hl/bta_hl_utils.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/include/bta_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/include/bta_api.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/include/utl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/include/utl.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/jv/bta_jv_act.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/jv/bta_jv_act.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/jv/bta_jv_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/jv/bta_jv_api.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/jv/bta_jv_cfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/jv/bta_jv_cfg.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/jv/bta_jv_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/jv/bta_jv_int.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/jv/bta_jv_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/jv/bta_jv_main.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/mce/bta_mce_act.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/mce/bta_mce_act.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/mce/bta_mce_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/mce/bta_mce_api.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/mce/bta_mce_cfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/mce/bta_mce_cfg.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/mce/bta_mce_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/mce/bta_mce_int.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/pan/bta_pan_act.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/pan/bta_pan_act.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/pan/bta_pan_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/pan/bta_pan_api.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/pan/bta_pan_ci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/pan/bta_pan_ci.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/pan/bta_pan_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/pan/bta_pan_int.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/pb/bta_pbs_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/pb/bta_pbs_int.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/sdp/bta_sdp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/sdp/bta_sdp.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/sdp/bta_sdp_act.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/sdp/bta_sdp_act.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/sdp/bta_sdp_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/sdp/bta_sdp_api.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/sdp/bta_sdp_cfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/sdp/bta_sdp_cfg.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/sdp/bta_sdp_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/sdp/bta_sdp_int.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/sys/bta_sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/sys/bta_sys.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/sys/bta_sys_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/sys/bta_sys_int.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/sys/utl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/bta/sys/utl.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/btcore/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/btcore/Android.mk -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/btcore/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/btcore/BUILD.gn -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/btcore/include/iac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/btcore/include/iac.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/btcore/include/uuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/btcore/include/uuid.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/btcore/src/bdaddr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/btcore/src/bdaddr.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/btcore/src/hal_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/btcore/src/hal_util.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/btcore/src/module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/btcore/src/module.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/btcore/src/property.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/btcore/src/property.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/btcore/src/uuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/btcore/src/uuid.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/btif/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/btif/Android.mk -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/btif/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/btif/BUILD.gn -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/btif/co/bta_ag_co.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/btif/co/bta_ag_co.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/btif/co/bta_av_co.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/btif/co/bta_av_co.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/btif/co/bta_dm_co.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/btif/co/bta_dm_co.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/btif/co/bta_hh_co.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/btif/co/bta_hh_co.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/btif/co/bta_hl_co.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/btif/co/bta_hl_co.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/btif/co/bta_pan_co.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/btif/co/bta_pan_co.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/btif/include/uinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/btif/include/uinput.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/btif/src/bluetooth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/btif/src/bluetooth.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/btif/src/btif_av.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/btif/src/btif_av.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/btif/src/btif_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/btif/src/btif_core.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/btif/src/btif_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/btif/src/btif_debug.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/btif/src/btif_dm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/btif/src/btif_dm.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/btif/src/btif_gatt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/btif/src/btif_gatt.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/btif/src/btif_hf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/btif/src/btif_hf.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/btif/src/btif_hh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/btif/src/btif_hh.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/btif/src/btif_hl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/btif/src/btif_hl.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/btif/src/btif_mce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/btif/src/btif_mce.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/btif/src/btif_pan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/btif/src/btif_pan.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/btif/src/btif_rc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/btif/src/btif_rc.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/btif/src/btif_sdp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/btif/src/btif_sdp.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/btif/src/btif_sm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/btif/src/btif_sm.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/btif/src/btif_sock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/btif/src/btif_sock.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/btif/src/btif_uid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/btif/src/btif_uid.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/btif/src/btif_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/btif/src/btif_util.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/build/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/build/BUILD.gn -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/conf/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/conf/Android.mk -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/conf/bt_did.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/conf/bt_did.conf -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/conf/bt_stack.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/conf/bt_stack.conf -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/device/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/device/Android.mk -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/device/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/device/BUILD.gn -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/device/src/interop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/device/src/interop.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/doc/btsnoop_net.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/doc/btsnoop_net.md -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/doc/log_tags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/doc/log_tags.md -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/doc/network_ports.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/doc/network_ports.md -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/doc/properties.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/doc/properties.md -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/doc/style_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/doc/style_guide.md -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/embdrv/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/embdrv/Android.mk -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/embdrv/sbc/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/embdrv/sbc/Android.mk -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/embdrv/sbc/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/embdrv/sbc/BUILD.gn -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/hci/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/hci/Android.mk -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/hci/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/hci/BUILD.gn -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/hci/include/bt_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/hci/include/bt_list.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/hci/include/btsnoop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/hci/include/btsnoop.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/hci/include/hci_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/hci/include/hci_hal.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/hci/include/userial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/hci/include/userial.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/hci/include/vendor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/hci/include/vendor.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/hci/src/bt_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/hci/src/bt_list.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/hci/src/btsnoop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/hci/src/btsnoop.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/hci/src/hci_h5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/hci/src/hci_h5.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/hci/src/hci_hal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/hci/src/hci_hal.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/hci/src/vendor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/hci/src/vendor.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/include/bt_trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/include/bt_trace.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/include/bte.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/include/bte.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/include/bte_appl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/include/bte_appl.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/main/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/main/Android.mk -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/main/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/main/BUILD.gn -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/main/bte_conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/main/bte_conf.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/main/bte_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/main/bte_init.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/main/bte_logmsg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/main/bte_logmsg.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/main/bte_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/main/bte_main.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/osi/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/osi/Android.mk -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/osi/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/osi/BUILD.gn -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/osi/include/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/osi/include/list.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/osi/include/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/osi/include/log.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/osi/include/osi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/osi/include/osi.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/osi/include/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/osi/include/time.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/osi/src/alarm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/osi/src/alarm.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/osi/src/array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/osi/src/array.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/osi/src/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/osi/src/buffer.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/osi/src/compat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/osi/src/compat.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/osi/src/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/osi/src/config.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/osi/src/future.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/osi/src/future.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/osi/src/hash_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/osi/src/hash_map.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/osi/src/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/osi/src/list.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/osi/src/mutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/osi/src/mutex.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/osi/src/osi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/osi/src/osi.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/osi/src/reactor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/osi/src/reactor.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/osi/src/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/osi/src/socket.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/osi/src/thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/osi/src/thread.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/osi/src/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/osi/src/time.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/osi/src/wakelock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/osi/src/wakelock.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/profile/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/profile/Android.mk -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/realtek/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/realtek/Android.mk -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/service/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/service/Android.mk -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/service/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/service/BUILD.gn -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/service/adapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/service/adapter.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/service/daemon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/service/daemon.cpp -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/service/daemon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/service/daemon.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/service/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/service/main.cpp -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/service/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/service/settings.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/service/switches.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/service/switches.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/stack/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/stack/Android.mk -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/stack/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/stack/BUILD.gn -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/stack/btm/btm_pm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/stack/btm/btm_pm.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/stack/sdp/sdp_db.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/stack/sdp/sdp_db.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/stack/sdp/sdpint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/stack/sdp/sdpint.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/stack/smp/aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/stack/smp/aes.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/stack/smp/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/stack/smp/aes.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/system_bt.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/system_bt.diff -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/test/Android.mk: -------------------------------------------------------------------------------- 1 | include $(call all-subdir-makefiles) 2 | -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/tools/Android.mk.disabled: -------------------------------------------------------------------------------- 1 | include $(call all-subdir-makefiles) 2 | -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/tools/hci/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/tools/hci/main.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/udrv/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/udrv/BUILD.gn -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/udrv/ulinux/uipc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/udrv/ulinux/uipc.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/utils/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/utils/Android.mk -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/utils/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/bt/utils/BUILD.gn -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/code/libbt-vendor/Android.mk: -------------------------------------------------------------------------------- 1 | include $(call all-subdir-makefiles) 2 | -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/rtkbt.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtkbt/rtkbt.mk -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/Kconfig -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/Makefile -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/clean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/clean -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/core/efuse/rtw_efuse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/core/efuse/rtw_efuse.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/core/mesh/rtw_mesh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/core/mesh/rtw_mesh.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/core/mesh/rtw_mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/core/mesh/rtw_mesh.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/core/rtw_ap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/core/rtw_ap.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/core/rtw_beamforming.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/core/rtw_beamforming.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/core/rtw_br_ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/core/rtw_br_ext.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/core/rtw_bt_mp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/core/rtw_bt_mp.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/core/rtw_btcoex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/core/rtw_btcoex.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/core/rtw_chplan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/core/rtw_chplan.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/core/rtw_chplan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/core/rtw_chplan.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/core/rtw_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/core/rtw_cmd.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/core/rtw_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/core/rtw_debug.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/core/rtw_eeprom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/core/rtw_eeprom.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/core/rtw_ieee80211.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/core/rtw_ieee80211.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/core/rtw_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/core/rtw_io.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/core/rtw_ioctl_query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/core/rtw_ioctl_query.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/core/rtw_ioctl_rtl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/core/rtw_ioctl_rtl.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/core/rtw_ioctl_set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/core/rtw_ioctl_set.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/core/rtw_iol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/core/rtw_iol.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/core/rtw_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/core/rtw_mem.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/core/rtw_mi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/core/rtw_mi.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/core/rtw_mlme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/core/rtw_mlme.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/core/rtw_mlme_ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/core/rtw_mlme_ext.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/core/rtw_mp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/core/rtw_mp.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/core/rtw_mp_ioctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/core/rtw_mp_ioctl.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/core/rtw_odm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/core/rtw_odm.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/core/rtw_p2p.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/core/rtw_p2p.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/core/rtw_pwrctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/core/rtw_pwrctrl.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/core/rtw_recv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/core/rtw_recv.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/core/rtw_rf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/core/rtw_rf.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/core/rtw_rm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/core/rtw_rm.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/core/rtw_rm_fsm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/core/rtw_rm_fsm.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/core/rtw_rson.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/core/rtw_rson.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/core/rtw_sdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/core/rtw_sdio.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/core/rtw_security.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/core/rtw_security.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/core/rtw_sreset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/core/rtw_sreset.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/core/rtw_sta_mgt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/core/rtw_sta_mgt.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/core/rtw_tdls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/core/rtw_tdls.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/core/rtw_vht.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/core/rtw_vht.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/core/rtw_wapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/core/rtw_wapi.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/core/rtw_wapi_sms4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/core/rtw_wapi_sms4.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/core/rtw_wlan_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/core/rtw_wlan_util.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/core/rtw_xmit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/core/rtw_xmit.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/hal/HalPwrSeqCmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/hal/HalPwrSeqCmd.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/hal/btc/halbtcoutsrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/hal/btc/halbtcoutsrc.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/hal/btc/mp_precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/hal/btc/mp_precomp.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/hal/efuse/efuse_mask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/hal/efuse/efuse_mask.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/hal/hal_btcoex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/hal/hal_btcoex.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/hal/hal_com.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/hal/hal_com.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/hal/hal_com_c2h.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/hal/hal_com_c2h.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/hal/hal_com_phycfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/hal/hal_com_phycfg.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/hal/hal_dm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/hal/hal_dm.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/hal/hal_dm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/hal/hal_dm.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/hal/hal_dm_acs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/hal/hal_dm_acs.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/hal/hal_dm_acs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/hal/hal_dm_acs.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/hal/hal_halmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/hal/hal_halmac.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/hal/hal_halmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/hal/hal_halmac.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/hal/hal_hci/hal_sdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/hal/hal_hci/hal_sdio.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/hal/hal_intf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/hal/hal_intf.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/hal/hal_mcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/hal/hal_mcc.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/hal/hal_mp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/hal/hal_mp.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/hal/hal_phy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/hal/hal_phy.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/hal/led/hal_led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/hal/led/hal_led.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/hal/led/hal_sdio_led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/hal/led/hal_sdio_led.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/hal/phydm/halhwimg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/hal/phydm/halhwimg.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/hal/phydm/mp_precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/hal/phydm/mp_precomp.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/hal/phydm/phydm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/hal/phydm/phydm.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/hal/phydm/phydm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/hal/phydm/phydm.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/hal/phydm/phydm.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/hal/phydm/phydm.mk -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/hal/phydm/phydm_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/hal/phydm/phydm_api.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/hal/phydm/phydm_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/hal/phydm/phydm_api.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/hal/phydm/phydm_ccx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/hal/phydm/phydm_ccx.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/hal/phydm/phydm_ccx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/hal/phydm/phydm_ccx.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/hal/phydm/phydm_dfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/hal/phydm/phydm_dfs.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/hal/phydm/phydm_dfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/hal/phydm/phydm_dfs.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/hal/phydm/phydm_dig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/hal/phydm/phydm_dig.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/hal/phydm/phydm_dig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/hal/phydm/phydm_dig.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/hal/phydm/phydm_mp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/hal/phydm/phydm_mp.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/hal/phydm/phydm_mp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/hal/phydm/phydm_mp.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/hal/phydm/phydm_psd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/hal/phydm/phydm_psd.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/hal/phydm/phydm_psd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/hal/phydm/phydm_psd.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/hal/phydm/phydm_reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/hal/phydm/phydm_reg.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/hal/phydm/phydm_soml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/hal/phydm/phydm_soml.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/hal/phydm/phydm_soml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/hal/phydm/phydm_soml.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/halmac.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/halmac.mk -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/ifcfg-wlan0: -------------------------------------------------------------------------------- 1 | #DHCP client 2 | DEVICE=wlan0 3 | BOOTPROTO=dhcp 4 | ONBOOT=yes -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/HalPwrSeqCmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/HalPwrSeqCmd.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/HalVerDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/HalVerDef.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/autoconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/autoconf.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/basic_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/basic_types.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/circ_buf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/circ_buf.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/cmd_osdep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/cmd_osdep.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/custom_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/custom_gpio.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/drv_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/drv_conf.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/drv_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/drv_types.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/drv_types_ce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/drv_types_ce.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/drv_types_xp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/drv_types_xp.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/ethernet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/ethernet.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/gspi_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/gspi_hal.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/gspi_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/gspi_ops.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/gspi_osintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/gspi_osintf.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/h2clbk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/h2clbk.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/hal_btcoex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/hal_btcoex.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/hal_com.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/hal_com.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/hal_com_h2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/hal_com_h2c.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/hal_com_led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/hal_com_led.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/hal_com_reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/hal_com_reg.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/hal_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/hal_data.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/hal_gspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/hal_gspi.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/hal_ic_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/hal_ic_cfg.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/hal_intf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/hal_intf.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/hal_pg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/hal_pg.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/hal_phy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/hal_phy.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/hal_phy_reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/hal_phy_reg.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/hal_sdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/hal_sdio.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/ieee80211.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/ieee80211.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/if_ether.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/if_ether.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/ip.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/mlme_osdep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/mlme_osdep.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/nic_spec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/nic_spec.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/osdep_intf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/osdep_intf.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/pci_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/pci_hal.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/pci_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/pci_ops.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/pci_osintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/pci_osintf.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/recv_osdep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/recv_osdep.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8188e_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8188e_cmd.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8188e_dm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8188e_dm.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8188e_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8188e_hal.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8188e_led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8188e_led.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8188e_rf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8188e_rf.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8188f_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8188f_cmd.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8188f_dm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8188f_dm.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8188f_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8188f_hal.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8188f_led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8188f_led.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8188f_rf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8188f_rf.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8192e_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8192e_cmd.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8192e_dm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8192e_dm.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8192e_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8192e_hal.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8192e_led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8192e_led.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8192e_rf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8192e_rf.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8192f_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8192f_cmd.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8192f_dm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8192f_dm.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8192f_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8192f_hal.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8192f_led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8192f_led.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8192f_rf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8192f_rf.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8703b_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8703b_cmd.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8703b_dm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8703b_dm.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8703b_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8703b_hal.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8703b_led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8703b_led.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8703b_rf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8703b_rf.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8710b_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8710b_cmd.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8710b_dm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8710b_dm.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8710b_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8710b_hal.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8710b_led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8710b_led.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8710b_rf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8710b_rf.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8723b_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8723b_cmd.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8723b_dm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8723b_dm.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8723b_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8723b_hal.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8723b_led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8723b_led.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8723b_rf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8723b_rf.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8723d_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8723d_cmd.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8723d_dm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8723d_dm.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8723d_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8723d_hal.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8723d_led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8723d_led.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8723d_rf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8723d_rf.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8812a_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8812a_cmd.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8812a_dm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8812a_dm.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8812a_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8812a_hal.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8812a_led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8812a_led.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8812a_rf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8812a_rf.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8814a_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8814a_cmd.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8814a_dm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8814a_dm.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8814a_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8814a_hal.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8814a_led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8814a_led.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8814a_rf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8814a_rf.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8821c_dm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8821c_dm.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8821c_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8821c_hal.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8822b_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtl8822b_hal.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtw_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtw_android.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtw_ap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtw_ap.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtw_br_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtw_br_ext.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtw_bt_mp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtw_bt_mp.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtw_btcoex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtw_btcoex.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtw_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtw_cmd.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtw_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtw_debug.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtw_eeprom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtw_eeprom.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtw_efuse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtw_efuse.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtw_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtw_event.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtw_ht.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtw_ht.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtw_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtw_io.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtw_ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtw_ioctl.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtw_iol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtw_iol.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtw_mcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtw_mcc.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtw_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtw_mem.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtw_mi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtw_mi.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtw_mlme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtw_mlme.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtw_mlme_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtw_mlme_ext.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtw_mp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtw_mp.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtw_mp_ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtw_mp_ioctl.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtw_odm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtw_odm.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtw_p2p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtw_p2p.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtw_pwrctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtw_pwrctrl.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtw_qos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtw_qos.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtw_recv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtw_recv.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtw_rf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtw_rf.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtw_rm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtw_rm.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtw_rm_fsm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtw_rm_fsm.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtw_rson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtw_rson.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtw_sdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtw_sdio.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtw_security.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtw_security.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtw_sreset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtw_sreset.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtw_tdls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtw_tdls.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtw_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtw_version.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtw_vht.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtw_vht.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtw_wapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtw_wapi.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtw_xmit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/rtw_xmit.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/sdio_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/sdio_hal.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/sdio_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/sdio_ops.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/sdio_ops_ce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/sdio_ops_ce.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/sdio_ops_xp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/sdio_ops_xp.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/sdio_osintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/sdio_osintf.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/sta_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/sta_info.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/usb_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/usb_hal.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/usb_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/usb_ops.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/usb_osintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/usb_osintf.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/wifi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/wifi.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/wlan_bssdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/wlan_bssdef.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/xmit_osdep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/include/xmit_osdep.h -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/os_dep/osdep_service.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/os_dep/osdep_service.c -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/rtl8821c.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/rtl8821c.mk -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/runwpa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/runwpa -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/wlan0dhcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs/wlan0dhcp -------------------------------------------------------------------------------- /rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs_20190402.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rlt8821cs蓝牙wifi移植可作其它模块移植参考/rtl8821cs/rtl8821cs_20190402.tgz -------------------------------------------------------------------------------- /rtk_wifi_ftp申请账户Anchor-Customer-CreateAccount-20200331.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rtk_wifi_ftp申请账户Anchor-Customer-CreateAccount-20200331.pdf -------------------------------------------------------------------------------- /rtl8822cs_8_1补丁.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/rtl8822cs_8_1补丁.rar -------------------------------------------------------------------------------- /sdio-debug.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/sdio-debug.patch -------------------------------------------------------------------------------- /sdio速率修改.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/sdio速率修改.md -------------------------------------------------------------------------------- /uart(这个是测试工具,也放到这里,测试蓝牙串口能不能用)/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/uart(这个是测试工具,也放到这里,测试蓝牙串口能不能用)/README.md -------------------------------------------------------------------------------- /uart(这个是测试工具,也放到这里,测试蓝牙串口能不能用)/ts_uart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/uart(这个是测试工具,也放到这里,测试蓝牙串口能不能用)/ts_uart -------------------------------------------------------------------------------- /usb_wifi识别不到卡(8812AU类似).diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/usb_wifi识别不到卡(8812AU类似).diff -------------------------------------------------------------------------------- /vim配置.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/vim配置.md -------------------------------------------------------------------------------- /wifi 问题总结.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/wifi 问题总结.docx -------------------------------------------------------------------------------- /wifi_gbk_android11_patch.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/wifi_gbk_android11_patch.rar -------------------------------------------------------------------------------- /wifi以太网共用网络问题.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/wifi以太网共用网络问题.md -------------------------------------------------------------------------------- /wifi使能脚替换成为rfkill控制.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/wifi使能脚替换成为rfkill控制.diff -------------------------------------------------------------------------------- /wifi使能脚替换成为rfkill控制/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /wifi使能脚替换成为rfkill控制/kernel4.19_mmc_rescan can't find card.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/wifi使能脚替换成为rfkill控制/kernel4.19_mmc_rescan can't find card.patch -------------------------------------------------------------------------------- /wifi使能脚替换成为rfkill控制/kernel4.4_mmc_rescan can't find card.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/wifi使能脚替换成为rfkill控制/kernel4.4_mmc_rescan can't find card.diff -------------------------------------------------------------------------------- /wifi信号显示异常.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/wifi信号显示异常.md -------------------------------------------------------------------------------- /wifi指令.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/wifi指令.md -------------------------------------------------------------------------------- /wifi移植示例/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/wifi移植示例/README.md -------------------------------------------------------------------------------- /wifi移植示例/上层匹配.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/wifi移植示例/上层匹配.c -------------------------------------------------------------------------------- /wifi移植示例/添加DTS上chip_type设置识别AP6354下载fw示例.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/wifi移植示例/添加DTS上chip_type设置识别AP6354下载fw示例.diff -------------------------------------------------------------------------------- /关于log调试.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/关于log调试.md -------------------------------------------------------------------------------- /关于蓝牙流控的锅.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/关于蓝牙流控的锅.md -------------------------------------------------------------------------------- /博通蓝牙fw表.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/博通蓝牙fw表.md -------------------------------------------------------------------------------- /处理蓝牙wifi打不开模板.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/处理蓝牙wifi打不开模板.md -------------------------------------------------------------------------------- /打patch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/打patch.md -------------------------------------------------------------------------------- /打开log打印.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/打开log打印.md -------------------------------------------------------------------------------- /文档/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/文档/README.md -------------------------------------------------------------------------------- /文档/模板.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/文档/模板.docx -------------------------------------------------------------------------------- /新的wifi驱动/AP6236_4.2.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/新的wifi驱动/AP6236_4.2.7z -------------------------------------------------------------------------------- /新的wifi驱动/AP6256_4.2.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/新的wifi驱动/AP6256_4.2.7z -------------------------------------------------------------------------------- /新的wifi驱动/AP6356S_4.2.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/新的wifi驱动/AP6356S_4.2.7z -------------------------------------------------------------------------------- /新的wifi驱动/AP6398S_4.2.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/新的wifi驱动/AP6398S_4.2.7z -------------------------------------------------------------------------------- /新的wifi驱动/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/新的wifi驱动/README.md -------------------------------------------------------------------------------- /新的wifi驱动/bcmdhd1.579.77.41.10_k3.10.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/新的wifi驱动/bcmdhd1.579.77.41.10_k3.10.tgz -------------------------------------------------------------------------------- /新的wifi驱动/bcmdhd1.579.77.41.10_kernel4.4.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/新的wifi驱动/bcmdhd1.579.77.41.10_kernel4.4.tgz -------------------------------------------------------------------------------- /桥接/brctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/桥接/brctl -------------------------------------------------------------------------------- /桥接/bridge-utils.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/桥接/bridge-utils.zip -------------------------------------------------------------------------------- /桥接/桥接和网络共享方法.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/桥接/桥接和网络共享方法.md -------------------------------------------------------------------------------- /概率性打不开bt(博通)Unknown HCI mess type.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/概率性打不开bt(博通)Unknown HCI mess type.diff -------------------------------------------------------------------------------- /没有设备树kernel3.0的SDMMC0支持AP6181支持mmc0接wifi sdio.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/没有设备树kernel3.0的SDMMC0支持AP6181支持mmc0接wifi sdio.doc -------------------------------------------------------------------------------- /没有跑wifi驱动.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/没有跑wifi驱动.md -------------------------------------------------------------------------------- /添加安卓设置上WIFI的AP5G热点.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/添加安卓设置上WIFI的AP5G热点.md -------------------------------------------------------------------------------- /蓝牙USB驱动移植.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/蓝牙USB驱动移植.md -------------------------------------------------------------------------------- /蓝牙usb驱动问题.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/蓝牙usb驱动问题.md -------------------------------------------------------------------------------- /蓝牙wifi以太网命令模板.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/蓝牙wifi以太网命令模板.md -------------------------------------------------------------------------------- /蓝牙wifi匹配问题.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/蓝牙wifi匹配问题.md -------------------------------------------------------------------------------- /蓝牙wifi模组的博通和RTK的硬件涵盖接图.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/蓝牙wifi模组的博通和RTK的硬件涵盖接图.png -------------------------------------------------------------------------------- /蓝牙串口波特率修改.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/蓝牙串口波特率修改.md -------------------------------------------------------------------------------- /蓝牙串口逻辑分析.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/蓝牙串口逻辑分析.png -------------------------------------------------------------------------------- /蓝牙主从问题.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/蓝牙主从问题.md -------------------------------------------------------------------------------- /蓝牙代码查找纽带.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/蓝牙代码查找纽带.md -------------------------------------------------------------------------------- /蓝牙可见性和扫描模式设置.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/蓝牙可见性和扫描模式设置.md -------------------------------------------------------------------------------- /蓝牙名字设置与bt_config.conf的保存.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/蓝牙名字设置与bt_config.conf的保存.md -------------------------------------------------------------------------------- /蓝牙地址.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/蓝牙地址.md -------------------------------------------------------------------------------- /蓝牙复位延时.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/蓝牙复位延时.md -------------------------------------------------------------------------------- /蓝牙打不开CLOCK_BOOTTIME_ALARM问题.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/蓝牙打不开CLOCK_BOOTTIME_ALARM问题.md -------------------------------------------------------------------------------- /蓝牙搜索不到或者不能被搜索/QQ截图20190919164233.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/蓝牙搜索不到或者不能被搜索/QQ截图20190919164233.png -------------------------------------------------------------------------------- /蓝牙搜索不到或者不能被搜索/QQ截图20190919165054.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/蓝牙搜索不到或者不能被搜索/QQ截图20190919165054.png -------------------------------------------------------------------------------- /蓝牙搜索不到或者不能被搜索/QQ截图20190919165301.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/蓝牙搜索不到或者不能被搜索/QQ截图20190919165301.png -------------------------------------------------------------------------------- /蓝牙搜索不到或者不能被搜索/QQ截图20190919165315.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/蓝牙搜索不到或者不能被搜索/QQ截图20190919165315.png -------------------------------------------------------------------------------- /蓝牙搜索不到或者不能被搜索/QQ截图20190919194523.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/蓝牙搜索不到或者不能被搜索/QQ截图20190919194523.png -------------------------------------------------------------------------------- /蓝牙搜索不到或者不能被搜索/QQ截图20190919195320.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/蓝牙搜索不到或者不能被搜索/QQ截图20190919195320.png -------------------------------------------------------------------------------- /蓝牙搜索不到或者不能被搜索/QQ截图20190919195643.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/蓝牙搜索不到或者不能被搜索/QQ截图20190919195643.png -------------------------------------------------------------------------------- /蓝牙搜索不到或者不能被搜索/QQ截图20200117113548.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/蓝牙搜索不到或者不能被搜索/QQ截图20200117113548.png -------------------------------------------------------------------------------- /蓝牙搜索不到或者不能被搜索/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/蓝牙搜索不到或者不能被搜索/README.md -------------------------------------------------------------------------------- /蓝牙移植/7.1成功移植rtk_bluedroid.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/蓝牙移植/7.1成功移植rtk_bluedroid.patch -------------------------------------------------------------------------------- /蓝牙移植/hw_get_module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Poco-Ye/rk_wifi_bt_android/HEAD/蓝牙移植/hw_get_module.md --------------------------------------------------------------------------------