├── .gitignore ├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── examples └── ble_connect.js ├── index.js ├── lib ├── ccbnp.js ├── defs │ ├── blehcidefs.js │ ├── hciCmdMeta.js │ └── hciEvtMeta.js └── hci │ ├── bleHci.js │ ├── bleRawUnit.js │ ├── ccBnpError.js │ ├── hciCmdBuilder.js │ └── hciEvtDiscriminator.js ├── package.json └── test ├── close.test.js ├── hciCmdBuilder.test.js ├── hciEvtDiscriminator.test.js ├── init.test.js ├── regChar.test.js ├── regTimeoutCfg.test.js └── regUuidHdlTable.test.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluetoother/cc-bnp/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluetoother/cc-bnp/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluetoother/cc-bnp/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluetoother/cc-bnp/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluetoother/cc-bnp/HEAD/README.md -------------------------------------------------------------------------------- /examples/ble_connect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluetoother/cc-bnp/HEAD/examples/ble_connect.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/ccbnp'); -------------------------------------------------------------------------------- /lib/ccbnp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluetoother/cc-bnp/HEAD/lib/ccbnp.js -------------------------------------------------------------------------------- /lib/defs/blehcidefs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluetoother/cc-bnp/HEAD/lib/defs/blehcidefs.js -------------------------------------------------------------------------------- /lib/defs/hciCmdMeta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluetoother/cc-bnp/HEAD/lib/defs/hciCmdMeta.js -------------------------------------------------------------------------------- /lib/defs/hciEvtMeta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluetoother/cc-bnp/HEAD/lib/defs/hciEvtMeta.js -------------------------------------------------------------------------------- /lib/hci/bleHci.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluetoother/cc-bnp/HEAD/lib/hci/bleHci.js -------------------------------------------------------------------------------- /lib/hci/bleRawUnit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluetoother/cc-bnp/HEAD/lib/hci/bleRawUnit.js -------------------------------------------------------------------------------- /lib/hci/ccBnpError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluetoother/cc-bnp/HEAD/lib/hci/ccBnpError.js -------------------------------------------------------------------------------- /lib/hci/hciCmdBuilder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluetoother/cc-bnp/HEAD/lib/hci/hciCmdBuilder.js -------------------------------------------------------------------------------- /lib/hci/hciEvtDiscriminator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluetoother/cc-bnp/HEAD/lib/hci/hciEvtDiscriminator.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluetoother/cc-bnp/HEAD/package.json -------------------------------------------------------------------------------- /test/close.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluetoother/cc-bnp/HEAD/test/close.test.js -------------------------------------------------------------------------------- /test/hciCmdBuilder.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluetoother/cc-bnp/HEAD/test/hciCmdBuilder.test.js -------------------------------------------------------------------------------- /test/hciEvtDiscriminator.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluetoother/cc-bnp/HEAD/test/hciEvtDiscriminator.test.js -------------------------------------------------------------------------------- /test/init.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluetoother/cc-bnp/HEAD/test/init.test.js -------------------------------------------------------------------------------- /test/regChar.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluetoother/cc-bnp/HEAD/test/regChar.test.js -------------------------------------------------------------------------------- /test/regTimeoutCfg.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluetoother/cc-bnp/HEAD/test/regTimeoutCfg.test.js -------------------------------------------------------------------------------- /test/regUuidHdlTable.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluetoother/cc-bnp/HEAD/test/regUuidHdlTable.test.js --------------------------------------------------------------------------------