├── .gitattributes ├── .github └── workflows │ ├── linux.yml │ ├── macos.yml │ └── windows.yml ├── .gitignore ├── .gitmodules ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── adapter.go ├── adapter_cyw43439.go ├── adapter_darwin.go ├── adapter_hci.go ├── adapter_hci_uart.go ├── adapter_linux.go ├── adapter_ninafw.go ├── adapter_nrf51.go ├── adapter_nrf528xx-full.go ├── adapter_nrf528xx-peripheral.go ├── adapter_nrf528xx.go ├── adapter_s110.go ├── adapter_s113v7.go ├── adapter_s132.go ├── adapter_s140v6.go ├── adapter_s140v7.go ├── adapter_sd.go ├── adapter_windows.go ├── att_hci.go ├── bluetooth.go ├── characteristic_uuids.go ├── debug.go ├── error_sd.go ├── examples ├── advertisement │ └── main.go ├── battery │ └── main.go ├── beacon │ └── main.go ├── circuitplay │ └── main.go ├── connparams │ └── main.go ├── device-information │ └── main.go ├── discover │ ├── main.go │ ├── mcu.go │ └── os.go ├── heartrate-monitor │ ├── main.go │ ├── mcu.go │ └── os.go ├── heartrate │ └── main.go ├── ledcolor │ └── main.go ├── nusclient │ └── main.go ├── nusserver │ └── main.go ├── scanner │ └── main.go ├── stop-advertisement │ └── main.go └── tinyscan │ ├── badger2040w.go │ ├── clue.go │ ├── main.go │ ├── pybadge.go │ └── pyportal.go ├── gap.go ├── gap_darwin.go ├── gap_hci.go ├── gap_linux.go ├── gap_nrf51.go ├── gap_nrf528xx-advertisement.go ├── gap_nrf528xx-central.go ├── gap_sd.go ├── gap_test.go ├── gap_windows.go ├── gattc_darwin.go ├── gattc_hci.go ├── gattc_linux.go ├── gattc_sd.go ├── gattc_windows.go ├── gatts.go ├── gatts_hci.go ├── gatts_linux.go ├── gatts_other.go ├── gatts_sd.go ├── gatts_windows.go ├── go.mod ├── go.sum ├── hci.go ├── hci_cyw43439.go ├── images └── gobluetooth.png ├── l2cap_hci.go ├── mac.go ├── mac_test.go ├── nodebug.go ├── rawterm ├── hosted.go └── nrf.go ├── s110_nrf51_8.0.0 ├── s110_nrf51_8.0.0_API │ └── include │ │ ├── ble.h │ │ ├── ble_err.h │ │ ├── ble_gap.h │ │ ├── ble_gatt.h │ │ ├── ble_gattc.h │ │ ├── ble_gatts.h │ │ ├── ble_hci.h │ │ ├── ble_l2cap.h │ │ ├── ble_ranges.h │ │ ├── ble_types.h │ │ ├── nrf_error.h │ │ ├── nrf_error_sdm.h │ │ ├── nrf_error_soc.h │ │ ├── nrf_mbr.h │ │ ├── nrf_sdm.h │ │ ├── nrf_soc.h │ │ ├── nrf_svc.h │ │ └── softdevice_assert.h ├── s110_nrf51_8.0.0_licence_agreement.txt └── s110_nrf51_8.0.0_softdevice.hex ├── s113_nrf52_7.0.1 ├── s113_nrf52_7.0.1_API │ └── include │ │ ├── ble.h │ │ ├── ble_err.h │ │ ├── ble_gap.h │ │ ├── ble_gatt.h │ │ ├── ble_gattc.h │ │ ├── ble_gatts.h │ │ ├── ble_hci.h │ │ ├── ble_l2cap.h │ │ ├── ble_ranges.h │ │ ├── ble_types.h │ │ ├── nrf52 │ │ └── nrf_mbr.h │ │ ├── nrf_error.h │ │ ├── nrf_error_sdm.h │ │ ├── nrf_error_soc.h │ │ ├── nrf_nvic.h │ │ ├── nrf_sdm.h │ │ ├── nrf_soc.h │ │ └── nrf_svc.h ├── s113_nrf52_7.0.1_license-agreement.txt └── s113_nrf52_7.0.1_softdevice.hex ├── s132_nrf52_6.1.1 ├── s132_nrf52_6.1.1_API │ └── include │ │ ├── ble.h │ │ ├── ble_err.h │ │ ├── ble_gap.h │ │ ├── ble_gatt.h │ │ ├── ble_gattc.h │ │ ├── ble_gatts.h │ │ ├── ble_hci.h │ │ ├── ble_l2cap.h │ │ ├── ble_ranges.h │ │ ├── ble_types.h │ │ ├── nrf52 │ │ └── nrf_mbr.h │ │ ├── nrf_error.h │ │ ├── nrf_error_sdm.h │ │ ├── nrf_error_soc.h │ │ ├── nrf_nvic.h │ │ ├── nrf_sdm.h │ │ ├── nrf_soc.h │ │ └── nrf_svc.h ├── s132_nrf52_6.1.1_license-agreement.txt └── s132_nrf52_6.1.1_softdevice.hex ├── s140_nrf52_6.1.1 ├── s140_nrf52_6.1.1_API │ └── include │ │ ├── ble.h │ │ ├── ble_err.h │ │ ├── ble_gap.h │ │ ├── ble_gatt.h │ │ ├── ble_gattc.h │ │ ├── ble_gatts.h │ │ ├── ble_hci.h │ │ ├── ble_l2cap.h │ │ ├── ble_ranges.h │ │ ├── ble_types.h │ │ ├── nrf52 │ │ └── nrf_mbr.h │ │ ├── nrf_error.h │ │ ├── nrf_error_sdm.h │ │ ├── nrf_error_soc.h │ │ ├── nrf_nvic.h │ │ ├── nrf_sdm.h │ │ ├── nrf_soc.h │ │ └── nrf_svc.h ├── s140_nrf52_6.1.1_license-agreement.txt └── s140_nrf52_6.1.1_softdevice.hex ├── s140_nrf52_7.3.0 ├── s140_nrf52_7.3.0_API │ └── include │ │ ├── ble.h │ │ ├── ble_err.h │ │ ├── ble_gap.h │ │ ├── ble_gatt.h │ │ ├── ble_gattc.h │ │ ├── ble_gatts.h │ │ ├── ble_hci.h │ │ ├── ble_l2cap.h │ │ ├── ble_ranges.h │ │ ├── ble_types.h │ │ ├── nrf52 │ │ └── nrf_mbr.h │ │ ├── nrf_error.h │ │ ├── nrf_error_sdm.h │ │ ├── nrf_error_soc.h │ │ ├── nrf_nvic.h │ │ ├── nrf_sdm.h │ │ ├── nrf_soc.h │ │ └── nrf_svc.h ├── s140_nrf52_7.3.0_license-agreement.txt └── s140_nrf52_7.3.0_softdevice.hex ├── service_uuids.go ├── tools ├── gen-characteristic-uuids │ └── main.go └── gen-service-uuids │ └── main.go ├── uuid.go ├── uuid_hci.go ├── uuid_sd.go ├── uuid_test.go └── version.go /.gitattributes: -------------------------------------------------------------------------------- 1 | s132_nrf52_6.1.1/* linguist-vendored 2 | -------------------------------------------------------------------------------- /.github/workflows/linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/.github/workflows/linux.yml -------------------------------------------------------------------------------- /.github/workflows/macos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/.github/workflows/macos.yml -------------------------------------------------------------------------------- /.github/workflows/windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/.github/workflows/windows.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/.gitmodules -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/README.md -------------------------------------------------------------------------------- /adapter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/adapter.go -------------------------------------------------------------------------------- /adapter_cyw43439.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/adapter_cyw43439.go -------------------------------------------------------------------------------- /adapter_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/adapter_darwin.go -------------------------------------------------------------------------------- /adapter_hci.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/adapter_hci.go -------------------------------------------------------------------------------- /adapter_hci_uart.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/adapter_hci_uart.go -------------------------------------------------------------------------------- /adapter_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/adapter_linux.go -------------------------------------------------------------------------------- /adapter_ninafw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/adapter_ninafw.go -------------------------------------------------------------------------------- /adapter_nrf51.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/adapter_nrf51.go -------------------------------------------------------------------------------- /adapter_nrf528xx-full.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/adapter_nrf528xx-full.go -------------------------------------------------------------------------------- /adapter_nrf528xx-peripheral.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/adapter_nrf528xx-peripheral.go -------------------------------------------------------------------------------- /adapter_nrf528xx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/adapter_nrf528xx.go -------------------------------------------------------------------------------- /adapter_s110.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/adapter_s110.go -------------------------------------------------------------------------------- /adapter_s113v7.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/adapter_s113v7.go -------------------------------------------------------------------------------- /adapter_s132.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/adapter_s132.go -------------------------------------------------------------------------------- /adapter_s140v6.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/adapter_s140v6.go -------------------------------------------------------------------------------- /adapter_s140v7.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/adapter_s140v7.go -------------------------------------------------------------------------------- /adapter_sd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/adapter_sd.go -------------------------------------------------------------------------------- /adapter_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/adapter_windows.go -------------------------------------------------------------------------------- /att_hci.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/att_hci.go -------------------------------------------------------------------------------- /bluetooth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/bluetooth.go -------------------------------------------------------------------------------- /characteristic_uuids.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/characteristic_uuids.go -------------------------------------------------------------------------------- /debug.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/debug.go -------------------------------------------------------------------------------- /error_sd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/error_sd.go -------------------------------------------------------------------------------- /examples/advertisement/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/examples/advertisement/main.go -------------------------------------------------------------------------------- /examples/battery/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/examples/battery/main.go -------------------------------------------------------------------------------- /examples/beacon/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/examples/beacon/main.go -------------------------------------------------------------------------------- /examples/circuitplay/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/examples/circuitplay/main.go -------------------------------------------------------------------------------- /examples/connparams/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/examples/connparams/main.go -------------------------------------------------------------------------------- /examples/device-information/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/examples/device-information/main.go -------------------------------------------------------------------------------- /examples/discover/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/examples/discover/main.go -------------------------------------------------------------------------------- /examples/discover/mcu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/examples/discover/mcu.go -------------------------------------------------------------------------------- /examples/discover/os.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/examples/discover/os.go -------------------------------------------------------------------------------- /examples/heartrate-monitor/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/examples/heartrate-monitor/main.go -------------------------------------------------------------------------------- /examples/heartrate-monitor/mcu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/examples/heartrate-monitor/mcu.go -------------------------------------------------------------------------------- /examples/heartrate-monitor/os.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/examples/heartrate-monitor/os.go -------------------------------------------------------------------------------- /examples/heartrate/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/examples/heartrate/main.go -------------------------------------------------------------------------------- /examples/ledcolor/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/examples/ledcolor/main.go -------------------------------------------------------------------------------- /examples/nusclient/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/examples/nusclient/main.go -------------------------------------------------------------------------------- /examples/nusserver/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/examples/nusserver/main.go -------------------------------------------------------------------------------- /examples/scanner/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/examples/scanner/main.go -------------------------------------------------------------------------------- /examples/stop-advertisement/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/examples/stop-advertisement/main.go -------------------------------------------------------------------------------- /examples/tinyscan/badger2040w.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/examples/tinyscan/badger2040w.go -------------------------------------------------------------------------------- /examples/tinyscan/clue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/examples/tinyscan/clue.go -------------------------------------------------------------------------------- /examples/tinyscan/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/examples/tinyscan/main.go -------------------------------------------------------------------------------- /examples/tinyscan/pybadge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/examples/tinyscan/pybadge.go -------------------------------------------------------------------------------- /examples/tinyscan/pyportal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/examples/tinyscan/pyportal.go -------------------------------------------------------------------------------- /gap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/gap.go -------------------------------------------------------------------------------- /gap_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/gap_darwin.go -------------------------------------------------------------------------------- /gap_hci.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/gap_hci.go -------------------------------------------------------------------------------- /gap_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/gap_linux.go -------------------------------------------------------------------------------- /gap_nrf51.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/gap_nrf51.go -------------------------------------------------------------------------------- /gap_nrf528xx-advertisement.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/gap_nrf528xx-advertisement.go -------------------------------------------------------------------------------- /gap_nrf528xx-central.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/gap_nrf528xx-central.go -------------------------------------------------------------------------------- /gap_sd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/gap_sd.go -------------------------------------------------------------------------------- /gap_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/gap_test.go -------------------------------------------------------------------------------- /gap_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/gap_windows.go -------------------------------------------------------------------------------- /gattc_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/gattc_darwin.go -------------------------------------------------------------------------------- /gattc_hci.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/gattc_hci.go -------------------------------------------------------------------------------- /gattc_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/gattc_linux.go -------------------------------------------------------------------------------- /gattc_sd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/gattc_sd.go -------------------------------------------------------------------------------- /gattc_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/gattc_windows.go -------------------------------------------------------------------------------- /gatts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/gatts.go -------------------------------------------------------------------------------- /gatts_hci.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/gatts_hci.go -------------------------------------------------------------------------------- /gatts_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/gatts_linux.go -------------------------------------------------------------------------------- /gatts_other.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/gatts_other.go -------------------------------------------------------------------------------- /gatts_sd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/gatts_sd.go -------------------------------------------------------------------------------- /gatts_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/gatts_windows.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/go.sum -------------------------------------------------------------------------------- /hci.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/hci.go -------------------------------------------------------------------------------- /hci_cyw43439.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/hci_cyw43439.go -------------------------------------------------------------------------------- /images/gobluetooth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/images/gobluetooth.png -------------------------------------------------------------------------------- /l2cap_hci.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/l2cap_hci.go -------------------------------------------------------------------------------- /mac.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/mac.go -------------------------------------------------------------------------------- /mac_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/mac_test.go -------------------------------------------------------------------------------- /nodebug.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/nodebug.go -------------------------------------------------------------------------------- /rawterm/hosted.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/rawterm/hosted.go -------------------------------------------------------------------------------- /rawterm/nrf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/rawterm/nrf.go -------------------------------------------------------------------------------- /s110_nrf51_8.0.0/s110_nrf51_8.0.0_API/include/ble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s110_nrf51_8.0.0/s110_nrf51_8.0.0_API/include/ble.h -------------------------------------------------------------------------------- /s110_nrf51_8.0.0/s110_nrf51_8.0.0_API/include/ble_err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s110_nrf51_8.0.0/s110_nrf51_8.0.0_API/include/ble_err.h -------------------------------------------------------------------------------- /s110_nrf51_8.0.0/s110_nrf51_8.0.0_API/include/ble_gap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s110_nrf51_8.0.0/s110_nrf51_8.0.0_API/include/ble_gap.h -------------------------------------------------------------------------------- /s110_nrf51_8.0.0/s110_nrf51_8.0.0_API/include/ble_gatt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s110_nrf51_8.0.0/s110_nrf51_8.0.0_API/include/ble_gatt.h -------------------------------------------------------------------------------- /s110_nrf51_8.0.0/s110_nrf51_8.0.0_API/include/ble_gattc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s110_nrf51_8.0.0/s110_nrf51_8.0.0_API/include/ble_gattc.h -------------------------------------------------------------------------------- /s110_nrf51_8.0.0/s110_nrf51_8.0.0_API/include/ble_gatts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s110_nrf51_8.0.0/s110_nrf51_8.0.0_API/include/ble_gatts.h -------------------------------------------------------------------------------- /s110_nrf51_8.0.0/s110_nrf51_8.0.0_API/include/ble_hci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s110_nrf51_8.0.0/s110_nrf51_8.0.0_API/include/ble_hci.h -------------------------------------------------------------------------------- /s110_nrf51_8.0.0/s110_nrf51_8.0.0_API/include/ble_l2cap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s110_nrf51_8.0.0/s110_nrf51_8.0.0_API/include/ble_l2cap.h -------------------------------------------------------------------------------- /s110_nrf51_8.0.0/s110_nrf51_8.0.0_API/include/ble_ranges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s110_nrf51_8.0.0/s110_nrf51_8.0.0_API/include/ble_ranges.h -------------------------------------------------------------------------------- /s110_nrf51_8.0.0/s110_nrf51_8.0.0_API/include/ble_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s110_nrf51_8.0.0/s110_nrf51_8.0.0_API/include/ble_types.h -------------------------------------------------------------------------------- /s110_nrf51_8.0.0/s110_nrf51_8.0.0_API/include/nrf_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s110_nrf51_8.0.0/s110_nrf51_8.0.0_API/include/nrf_error.h -------------------------------------------------------------------------------- /s110_nrf51_8.0.0/s110_nrf51_8.0.0_API/include/nrf_error_sdm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s110_nrf51_8.0.0/s110_nrf51_8.0.0_API/include/nrf_error_sdm.h -------------------------------------------------------------------------------- /s110_nrf51_8.0.0/s110_nrf51_8.0.0_API/include/nrf_error_soc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s110_nrf51_8.0.0/s110_nrf51_8.0.0_API/include/nrf_error_soc.h -------------------------------------------------------------------------------- /s110_nrf51_8.0.0/s110_nrf51_8.0.0_API/include/nrf_mbr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s110_nrf51_8.0.0/s110_nrf51_8.0.0_API/include/nrf_mbr.h -------------------------------------------------------------------------------- /s110_nrf51_8.0.0/s110_nrf51_8.0.0_API/include/nrf_sdm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s110_nrf51_8.0.0/s110_nrf51_8.0.0_API/include/nrf_sdm.h -------------------------------------------------------------------------------- /s110_nrf51_8.0.0/s110_nrf51_8.0.0_API/include/nrf_soc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s110_nrf51_8.0.0/s110_nrf51_8.0.0_API/include/nrf_soc.h -------------------------------------------------------------------------------- /s110_nrf51_8.0.0/s110_nrf51_8.0.0_API/include/nrf_svc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s110_nrf51_8.0.0/s110_nrf51_8.0.0_API/include/nrf_svc.h -------------------------------------------------------------------------------- /s110_nrf51_8.0.0/s110_nrf51_8.0.0_API/include/softdevice_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s110_nrf51_8.0.0/s110_nrf51_8.0.0_API/include/softdevice_assert.h -------------------------------------------------------------------------------- /s110_nrf51_8.0.0/s110_nrf51_8.0.0_licence_agreement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s110_nrf51_8.0.0/s110_nrf51_8.0.0_licence_agreement.txt -------------------------------------------------------------------------------- /s110_nrf51_8.0.0/s110_nrf51_8.0.0_softdevice.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s110_nrf51_8.0.0/s110_nrf51_8.0.0_softdevice.hex -------------------------------------------------------------------------------- /s113_nrf52_7.0.1/s113_nrf52_7.0.1_API/include/ble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s113_nrf52_7.0.1/s113_nrf52_7.0.1_API/include/ble.h -------------------------------------------------------------------------------- /s113_nrf52_7.0.1/s113_nrf52_7.0.1_API/include/ble_err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s113_nrf52_7.0.1/s113_nrf52_7.0.1_API/include/ble_err.h -------------------------------------------------------------------------------- /s113_nrf52_7.0.1/s113_nrf52_7.0.1_API/include/ble_gap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s113_nrf52_7.0.1/s113_nrf52_7.0.1_API/include/ble_gap.h -------------------------------------------------------------------------------- /s113_nrf52_7.0.1/s113_nrf52_7.0.1_API/include/ble_gatt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s113_nrf52_7.0.1/s113_nrf52_7.0.1_API/include/ble_gatt.h -------------------------------------------------------------------------------- /s113_nrf52_7.0.1/s113_nrf52_7.0.1_API/include/ble_gattc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s113_nrf52_7.0.1/s113_nrf52_7.0.1_API/include/ble_gattc.h -------------------------------------------------------------------------------- /s113_nrf52_7.0.1/s113_nrf52_7.0.1_API/include/ble_gatts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s113_nrf52_7.0.1/s113_nrf52_7.0.1_API/include/ble_gatts.h -------------------------------------------------------------------------------- /s113_nrf52_7.0.1/s113_nrf52_7.0.1_API/include/ble_hci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s113_nrf52_7.0.1/s113_nrf52_7.0.1_API/include/ble_hci.h -------------------------------------------------------------------------------- /s113_nrf52_7.0.1/s113_nrf52_7.0.1_API/include/ble_l2cap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s113_nrf52_7.0.1/s113_nrf52_7.0.1_API/include/ble_l2cap.h -------------------------------------------------------------------------------- /s113_nrf52_7.0.1/s113_nrf52_7.0.1_API/include/ble_ranges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s113_nrf52_7.0.1/s113_nrf52_7.0.1_API/include/ble_ranges.h -------------------------------------------------------------------------------- /s113_nrf52_7.0.1/s113_nrf52_7.0.1_API/include/ble_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s113_nrf52_7.0.1/s113_nrf52_7.0.1_API/include/ble_types.h -------------------------------------------------------------------------------- /s113_nrf52_7.0.1/s113_nrf52_7.0.1_API/include/nrf52/nrf_mbr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s113_nrf52_7.0.1/s113_nrf52_7.0.1_API/include/nrf52/nrf_mbr.h -------------------------------------------------------------------------------- /s113_nrf52_7.0.1/s113_nrf52_7.0.1_API/include/nrf_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s113_nrf52_7.0.1/s113_nrf52_7.0.1_API/include/nrf_error.h -------------------------------------------------------------------------------- /s113_nrf52_7.0.1/s113_nrf52_7.0.1_API/include/nrf_error_sdm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s113_nrf52_7.0.1/s113_nrf52_7.0.1_API/include/nrf_error_sdm.h -------------------------------------------------------------------------------- /s113_nrf52_7.0.1/s113_nrf52_7.0.1_API/include/nrf_error_soc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s113_nrf52_7.0.1/s113_nrf52_7.0.1_API/include/nrf_error_soc.h -------------------------------------------------------------------------------- /s113_nrf52_7.0.1/s113_nrf52_7.0.1_API/include/nrf_nvic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s113_nrf52_7.0.1/s113_nrf52_7.0.1_API/include/nrf_nvic.h -------------------------------------------------------------------------------- /s113_nrf52_7.0.1/s113_nrf52_7.0.1_API/include/nrf_sdm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s113_nrf52_7.0.1/s113_nrf52_7.0.1_API/include/nrf_sdm.h -------------------------------------------------------------------------------- /s113_nrf52_7.0.1/s113_nrf52_7.0.1_API/include/nrf_soc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s113_nrf52_7.0.1/s113_nrf52_7.0.1_API/include/nrf_soc.h -------------------------------------------------------------------------------- /s113_nrf52_7.0.1/s113_nrf52_7.0.1_API/include/nrf_svc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s113_nrf52_7.0.1/s113_nrf52_7.0.1_API/include/nrf_svc.h -------------------------------------------------------------------------------- /s113_nrf52_7.0.1/s113_nrf52_7.0.1_license-agreement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s113_nrf52_7.0.1/s113_nrf52_7.0.1_license-agreement.txt -------------------------------------------------------------------------------- /s113_nrf52_7.0.1/s113_nrf52_7.0.1_softdevice.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s113_nrf52_7.0.1/s113_nrf52_7.0.1_softdevice.hex -------------------------------------------------------------------------------- /s132_nrf52_6.1.1/s132_nrf52_6.1.1_API/include/ble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s132_nrf52_6.1.1/s132_nrf52_6.1.1_API/include/ble.h -------------------------------------------------------------------------------- /s132_nrf52_6.1.1/s132_nrf52_6.1.1_API/include/ble_err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s132_nrf52_6.1.1/s132_nrf52_6.1.1_API/include/ble_err.h -------------------------------------------------------------------------------- /s132_nrf52_6.1.1/s132_nrf52_6.1.1_API/include/ble_gap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s132_nrf52_6.1.1/s132_nrf52_6.1.1_API/include/ble_gap.h -------------------------------------------------------------------------------- /s132_nrf52_6.1.1/s132_nrf52_6.1.1_API/include/ble_gatt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s132_nrf52_6.1.1/s132_nrf52_6.1.1_API/include/ble_gatt.h -------------------------------------------------------------------------------- /s132_nrf52_6.1.1/s132_nrf52_6.1.1_API/include/ble_gattc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s132_nrf52_6.1.1/s132_nrf52_6.1.1_API/include/ble_gattc.h -------------------------------------------------------------------------------- /s132_nrf52_6.1.1/s132_nrf52_6.1.1_API/include/ble_gatts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s132_nrf52_6.1.1/s132_nrf52_6.1.1_API/include/ble_gatts.h -------------------------------------------------------------------------------- /s132_nrf52_6.1.1/s132_nrf52_6.1.1_API/include/ble_hci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s132_nrf52_6.1.1/s132_nrf52_6.1.1_API/include/ble_hci.h -------------------------------------------------------------------------------- /s132_nrf52_6.1.1/s132_nrf52_6.1.1_API/include/ble_l2cap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s132_nrf52_6.1.1/s132_nrf52_6.1.1_API/include/ble_l2cap.h -------------------------------------------------------------------------------- /s132_nrf52_6.1.1/s132_nrf52_6.1.1_API/include/ble_ranges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s132_nrf52_6.1.1/s132_nrf52_6.1.1_API/include/ble_ranges.h -------------------------------------------------------------------------------- /s132_nrf52_6.1.1/s132_nrf52_6.1.1_API/include/ble_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s132_nrf52_6.1.1/s132_nrf52_6.1.1_API/include/ble_types.h -------------------------------------------------------------------------------- /s132_nrf52_6.1.1/s132_nrf52_6.1.1_API/include/nrf52/nrf_mbr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s132_nrf52_6.1.1/s132_nrf52_6.1.1_API/include/nrf52/nrf_mbr.h -------------------------------------------------------------------------------- /s132_nrf52_6.1.1/s132_nrf52_6.1.1_API/include/nrf_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s132_nrf52_6.1.1/s132_nrf52_6.1.1_API/include/nrf_error.h -------------------------------------------------------------------------------- /s132_nrf52_6.1.1/s132_nrf52_6.1.1_API/include/nrf_error_sdm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s132_nrf52_6.1.1/s132_nrf52_6.1.1_API/include/nrf_error_sdm.h -------------------------------------------------------------------------------- /s132_nrf52_6.1.1/s132_nrf52_6.1.1_API/include/nrf_error_soc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s132_nrf52_6.1.1/s132_nrf52_6.1.1_API/include/nrf_error_soc.h -------------------------------------------------------------------------------- /s132_nrf52_6.1.1/s132_nrf52_6.1.1_API/include/nrf_nvic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s132_nrf52_6.1.1/s132_nrf52_6.1.1_API/include/nrf_nvic.h -------------------------------------------------------------------------------- /s132_nrf52_6.1.1/s132_nrf52_6.1.1_API/include/nrf_sdm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s132_nrf52_6.1.1/s132_nrf52_6.1.1_API/include/nrf_sdm.h -------------------------------------------------------------------------------- /s132_nrf52_6.1.1/s132_nrf52_6.1.1_API/include/nrf_soc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s132_nrf52_6.1.1/s132_nrf52_6.1.1_API/include/nrf_soc.h -------------------------------------------------------------------------------- /s132_nrf52_6.1.1/s132_nrf52_6.1.1_API/include/nrf_svc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s132_nrf52_6.1.1/s132_nrf52_6.1.1_API/include/nrf_svc.h -------------------------------------------------------------------------------- /s132_nrf52_6.1.1/s132_nrf52_6.1.1_license-agreement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s132_nrf52_6.1.1/s132_nrf52_6.1.1_license-agreement.txt -------------------------------------------------------------------------------- /s132_nrf52_6.1.1/s132_nrf52_6.1.1_softdevice.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s132_nrf52_6.1.1/s132_nrf52_6.1.1_softdevice.hex -------------------------------------------------------------------------------- /s140_nrf52_6.1.1/s140_nrf52_6.1.1_API/include/ble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s140_nrf52_6.1.1/s140_nrf52_6.1.1_API/include/ble.h -------------------------------------------------------------------------------- /s140_nrf52_6.1.1/s140_nrf52_6.1.1_API/include/ble_err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s140_nrf52_6.1.1/s140_nrf52_6.1.1_API/include/ble_err.h -------------------------------------------------------------------------------- /s140_nrf52_6.1.1/s140_nrf52_6.1.1_API/include/ble_gap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s140_nrf52_6.1.1/s140_nrf52_6.1.1_API/include/ble_gap.h -------------------------------------------------------------------------------- /s140_nrf52_6.1.1/s140_nrf52_6.1.1_API/include/ble_gatt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s140_nrf52_6.1.1/s140_nrf52_6.1.1_API/include/ble_gatt.h -------------------------------------------------------------------------------- /s140_nrf52_6.1.1/s140_nrf52_6.1.1_API/include/ble_gattc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s140_nrf52_6.1.1/s140_nrf52_6.1.1_API/include/ble_gattc.h -------------------------------------------------------------------------------- /s140_nrf52_6.1.1/s140_nrf52_6.1.1_API/include/ble_gatts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s140_nrf52_6.1.1/s140_nrf52_6.1.1_API/include/ble_gatts.h -------------------------------------------------------------------------------- /s140_nrf52_6.1.1/s140_nrf52_6.1.1_API/include/ble_hci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s140_nrf52_6.1.1/s140_nrf52_6.1.1_API/include/ble_hci.h -------------------------------------------------------------------------------- /s140_nrf52_6.1.1/s140_nrf52_6.1.1_API/include/ble_l2cap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s140_nrf52_6.1.1/s140_nrf52_6.1.1_API/include/ble_l2cap.h -------------------------------------------------------------------------------- /s140_nrf52_6.1.1/s140_nrf52_6.1.1_API/include/ble_ranges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s140_nrf52_6.1.1/s140_nrf52_6.1.1_API/include/ble_ranges.h -------------------------------------------------------------------------------- /s140_nrf52_6.1.1/s140_nrf52_6.1.1_API/include/ble_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s140_nrf52_6.1.1/s140_nrf52_6.1.1_API/include/ble_types.h -------------------------------------------------------------------------------- /s140_nrf52_6.1.1/s140_nrf52_6.1.1_API/include/nrf52/nrf_mbr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s140_nrf52_6.1.1/s140_nrf52_6.1.1_API/include/nrf52/nrf_mbr.h -------------------------------------------------------------------------------- /s140_nrf52_6.1.1/s140_nrf52_6.1.1_API/include/nrf_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s140_nrf52_6.1.1/s140_nrf52_6.1.1_API/include/nrf_error.h -------------------------------------------------------------------------------- /s140_nrf52_6.1.1/s140_nrf52_6.1.1_API/include/nrf_error_sdm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s140_nrf52_6.1.1/s140_nrf52_6.1.1_API/include/nrf_error_sdm.h -------------------------------------------------------------------------------- /s140_nrf52_6.1.1/s140_nrf52_6.1.1_API/include/nrf_error_soc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s140_nrf52_6.1.1/s140_nrf52_6.1.1_API/include/nrf_error_soc.h -------------------------------------------------------------------------------- /s140_nrf52_6.1.1/s140_nrf52_6.1.1_API/include/nrf_nvic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s140_nrf52_6.1.1/s140_nrf52_6.1.1_API/include/nrf_nvic.h -------------------------------------------------------------------------------- /s140_nrf52_6.1.1/s140_nrf52_6.1.1_API/include/nrf_sdm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s140_nrf52_6.1.1/s140_nrf52_6.1.1_API/include/nrf_sdm.h -------------------------------------------------------------------------------- /s140_nrf52_6.1.1/s140_nrf52_6.1.1_API/include/nrf_soc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s140_nrf52_6.1.1/s140_nrf52_6.1.1_API/include/nrf_soc.h -------------------------------------------------------------------------------- /s140_nrf52_6.1.1/s140_nrf52_6.1.1_API/include/nrf_svc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s140_nrf52_6.1.1/s140_nrf52_6.1.1_API/include/nrf_svc.h -------------------------------------------------------------------------------- /s140_nrf52_6.1.1/s140_nrf52_6.1.1_license-agreement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s140_nrf52_6.1.1/s140_nrf52_6.1.1_license-agreement.txt -------------------------------------------------------------------------------- /s140_nrf52_6.1.1/s140_nrf52_6.1.1_softdevice.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s140_nrf52_6.1.1/s140_nrf52_6.1.1_softdevice.hex -------------------------------------------------------------------------------- /s140_nrf52_7.3.0/s140_nrf52_7.3.0_API/include/ble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s140_nrf52_7.3.0/s140_nrf52_7.3.0_API/include/ble.h -------------------------------------------------------------------------------- /s140_nrf52_7.3.0/s140_nrf52_7.3.0_API/include/ble_err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s140_nrf52_7.3.0/s140_nrf52_7.3.0_API/include/ble_err.h -------------------------------------------------------------------------------- /s140_nrf52_7.3.0/s140_nrf52_7.3.0_API/include/ble_gap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s140_nrf52_7.3.0/s140_nrf52_7.3.0_API/include/ble_gap.h -------------------------------------------------------------------------------- /s140_nrf52_7.3.0/s140_nrf52_7.3.0_API/include/ble_gatt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s140_nrf52_7.3.0/s140_nrf52_7.3.0_API/include/ble_gatt.h -------------------------------------------------------------------------------- /s140_nrf52_7.3.0/s140_nrf52_7.3.0_API/include/ble_gattc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s140_nrf52_7.3.0/s140_nrf52_7.3.0_API/include/ble_gattc.h -------------------------------------------------------------------------------- /s140_nrf52_7.3.0/s140_nrf52_7.3.0_API/include/ble_gatts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s140_nrf52_7.3.0/s140_nrf52_7.3.0_API/include/ble_gatts.h -------------------------------------------------------------------------------- /s140_nrf52_7.3.0/s140_nrf52_7.3.0_API/include/ble_hci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s140_nrf52_7.3.0/s140_nrf52_7.3.0_API/include/ble_hci.h -------------------------------------------------------------------------------- /s140_nrf52_7.3.0/s140_nrf52_7.3.0_API/include/ble_l2cap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s140_nrf52_7.3.0/s140_nrf52_7.3.0_API/include/ble_l2cap.h -------------------------------------------------------------------------------- /s140_nrf52_7.3.0/s140_nrf52_7.3.0_API/include/ble_ranges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s140_nrf52_7.3.0/s140_nrf52_7.3.0_API/include/ble_ranges.h -------------------------------------------------------------------------------- /s140_nrf52_7.3.0/s140_nrf52_7.3.0_API/include/ble_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s140_nrf52_7.3.0/s140_nrf52_7.3.0_API/include/ble_types.h -------------------------------------------------------------------------------- /s140_nrf52_7.3.0/s140_nrf52_7.3.0_API/include/nrf52/nrf_mbr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s140_nrf52_7.3.0/s140_nrf52_7.3.0_API/include/nrf52/nrf_mbr.h -------------------------------------------------------------------------------- /s140_nrf52_7.3.0/s140_nrf52_7.3.0_API/include/nrf_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s140_nrf52_7.3.0/s140_nrf52_7.3.0_API/include/nrf_error.h -------------------------------------------------------------------------------- /s140_nrf52_7.3.0/s140_nrf52_7.3.0_API/include/nrf_error_sdm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s140_nrf52_7.3.0/s140_nrf52_7.3.0_API/include/nrf_error_sdm.h -------------------------------------------------------------------------------- /s140_nrf52_7.3.0/s140_nrf52_7.3.0_API/include/nrf_error_soc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s140_nrf52_7.3.0/s140_nrf52_7.3.0_API/include/nrf_error_soc.h -------------------------------------------------------------------------------- /s140_nrf52_7.3.0/s140_nrf52_7.3.0_API/include/nrf_nvic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s140_nrf52_7.3.0/s140_nrf52_7.3.0_API/include/nrf_nvic.h -------------------------------------------------------------------------------- /s140_nrf52_7.3.0/s140_nrf52_7.3.0_API/include/nrf_sdm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s140_nrf52_7.3.0/s140_nrf52_7.3.0_API/include/nrf_sdm.h -------------------------------------------------------------------------------- /s140_nrf52_7.3.0/s140_nrf52_7.3.0_API/include/nrf_soc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s140_nrf52_7.3.0/s140_nrf52_7.3.0_API/include/nrf_soc.h -------------------------------------------------------------------------------- /s140_nrf52_7.3.0/s140_nrf52_7.3.0_API/include/nrf_svc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s140_nrf52_7.3.0/s140_nrf52_7.3.0_API/include/nrf_svc.h -------------------------------------------------------------------------------- /s140_nrf52_7.3.0/s140_nrf52_7.3.0_license-agreement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s140_nrf52_7.3.0/s140_nrf52_7.3.0_license-agreement.txt -------------------------------------------------------------------------------- /s140_nrf52_7.3.0/s140_nrf52_7.3.0_softdevice.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/s140_nrf52_7.3.0/s140_nrf52_7.3.0_softdevice.hex -------------------------------------------------------------------------------- /service_uuids.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/service_uuids.go -------------------------------------------------------------------------------- /tools/gen-characteristic-uuids/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/tools/gen-characteristic-uuids/main.go -------------------------------------------------------------------------------- /tools/gen-service-uuids/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/tools/gen-service-uuids/main.go -------------------------------------------------------------------------------- /uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/uuid.go -------------------------------------------------------------------------------- /uuid_hci.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/uuid_hci.go -------------------------------------------------------------------------------- /uuid_sd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/uuid_sd.go -------------------------------------------------------------------------------- /uuid_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/uuid_test.go -------------------------------------------------------------------------------- /version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinygo-org/bluetooth/HEAD/version.go --------------------------------------------------------------------------------