├── .gitignore ├── Makefile ├── hci_h4.c ├── hci_ldisc.c ├── hci_rtk_h5.c ├── hciattach.c ├── hciattach.h ├── hciattach_rtk.c ├── readme.txt ├── rtlbt_config ├── rtlbt_fw ├── rtlbt_fw_new └── start_bt.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwfinger/rtl8723bs_bt/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwfinger/rtl8723bs_bt/HEAD/Makefile -------------------------------------------------------------------------------- /hci_h4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwfinger/rtl8723bs_bt/HEAD/hci_h4.c -------------------------------------------------------------------------------- /hci_ldisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwfinger/rtl8723bs_bt/HEAD/hci_ldisc.c -------------------------------------------------------------------------------- /hci_rtk_h5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwfinger/rtl8723bs_bt/HEAD/hci_rtk_h5.c -------------------------------------------------------------------------------- /hciattach.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwfinger/rtl8723bs_bt/HEAD/hciattach.c -------------------------------------------------------------------------------- /hciattach.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwfinger/rtl8723bs_bt/HEAD/hciattach.h -------------------------------------------------------------------------------- /hciattach_rtk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwfinger/rtl8723bs_bt/HEAD/hciattach_rtk.c -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwfinger/rtl8723bs_bt/HEAD/readme.txt -------------------------------------------------------------------------------- /rtlbt_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwfinger/rtl8723bs_bt/HEAD/rtlbt_config -------------------------------------------------------------------------------- /rtlbt_fw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwfinger/rtl8723bs_bt/HEAD/rtlbt_fw -------------------------------------------------------------------------------- /rtlbt_fw_new: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwfinger/rtl8723bs_bt/HEAD/rtlbt_fw_new -------------------------------------------------------------------------------- /start_bt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwfinger/rtl8723bs_bt/HEAD/start_bt.sh --------------------------------------------------------------------------------