├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── feature_request.md └── workflows │ ├── githubci.yml │ ├── release.yml │ └── update_package_list.py ├── .gitignore ├── .gitmodules ├── BlueFruit_nRF52.md ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── boards.txt ├── bootloader ├── circuitplayground_nrf52840 │ ├── circuitplayground_nrf52840_bootloader-0.6.1_s140_7.0.1.hex │ ├── circuitplayground_nrf52840_bootloader-0.6.1_s140_7.0.1.zip │ └── update-circuitplayground_nrf52840_bootloader-0.6.1_nosd.uf2 ├── clue_nrf52840 │ ├── clue_nrf52840_bootloader-0.6.1_s140_7.0.1.hex │ ├── clue_nrf52840_bootloader-0.6.1_s140_7.0.1.zip │ └── update-clue_nrf52840_bootloader-0.6.1_nosd.uf2 ├── feather_nrf52840_express │ ├── feather_nrf52840_express_bootloader-0.6.1_s140_7.0.1.hex │ ├── feather_nrf52840_express_bootloader-0.6.1_s140_7.0.1.zip │ └── update-feather_nrf52840_express_bootloader-0.6.1_nosd.uf2 ├── feather_nrf52840_sense │ ├── feather_nrf52840_sense_bootloader-0.6.1_s140_7.0.1.hex │ ├── feather_nrf52840_sense_bootloader-0.6.1_s140_7.0.1.zip │ └── update-feather_nrf52840_sense_bootloader-0.6.1_nosd.uf2 ├── itsybitsy_nrf52840_express │ ├── itsybitsy_nrf52840_express_bootloader-0.6.1_s140_7.0.1.hex │ ├── itsybitsy_nrf52840_express_bootloader-0.6.1_s140_7.0.1.zip │ └── update-itsybitsy_nrf52840_express_bootloader-0.6.1_nosd.uf2 ├── metro_nrf52840_express │ ├── metro_nrf52840_express_bootloader-0.6.1_s140_7.0.1.hex │ ├── metro_nrf52840_express_bootloader-0.6.1_s140_7.0.1.zip │ └── update-metro_nrf52840_express_bootloader-0.6.1_nosd.uf2 ├── particle_xenon │ ├── particle_xenon_bootloader-0.6.1_s140_7.0.1.hex │ ├── particle_xenon_bootloader-0.6.1_s140_7.0.1.zip │ └── update-particle_xenon_bootloader-0.6.1_nosd.uf2 ├── pca10056 │ ├── pca10056_bootloader-0.6.1_s140_7.0.1.hex │ ├── pca10056_bootloader-0.6.1_s140_7.0.1.zip │ └── update-pca10056_bootloader-0.6.1_nosd.uf2 └── raytac_mdbt50q_rx │ ├── raytac_mdbt50q_rx_bootloader-0.6.1_s140_7.0.1.hex │ ├── raytac_mdbt50q_rx_bootloader-0.6.1_s140_7.0.1.zip │ └── update-raytac_mdbt50q_rx_bootloader-0.6.1_nosd.uf2 ├── changelog.md ├── cores └── nRF5 │ ├── Arduino.h │ ├── Client.h │ ├── HardwarePWM.cpp │ ├── HardwarePWM.h │ ├── HardwareSerial.h │ ├── IPAddress.cpp │ ├── IPAddress.h │ ├── Print.cpp │ ├── Print.h │ ├── Printable.h │ ├── RingBuffer.cpp │ ├── RingBuffer.h │ ├── Server.h │ ├── Stream.cpp │ ├── Stream.h │ ├── Tone.cpp │ ├── Tone.h │ ├── Uart.cpp │ ├── Uart.h │ ├── Udp.h │ ├── WCharacter.h │ ├── WInterrupts.c │ ├── WInterrupts.h │ ├── WMath.cpp │ ├── WMath.h │ ├── WString.cpp │ ├── WString.h │ ├── WVariant.h │ ├── abi.cpp │ ├── avr │ ├── dtostrf.c │ ├── dtostrf.h │ ├── interrupt.h │ └── pgmspace.h │ ├── binary.h │ ├── common_func.h │ ├── common_inc.h │ ├── delay.c │ ├── delay.h │ ├── freertos │ ├── License │ │ └── license.txt │ ├── Source │ │ ├── croutine.c │ │ ├── event_groups.c │ │ ├── include │ │ │ ├── FreeRTOS.h │ │ │ ├── StackMacros.h │ │ │ ├── croutine.h │ │ │ ├── deprecated_definitions.h │ │ │ ├── event_groups.h │ │ │ ├── list.h │ │ │ ├── message_buffer.h │ │ │ ├── mpu_prototypes.h │ │ │ ├── mpu_wrappers.h │ │ │ ├── portable.h │ │ │ ├── projdefs.h │ │ │ ├── queue.h │ │ │ ├── semphr.h │ │ │ ├── stack_macros.h │ │ │ ├── stdint.readme │ │ │ ├── stream_buffer.h │ │ │ ├── task.h │ │ │ └── timers.h │ │ ├── list.c │ │ ├── portable │ │ │ ├── MemMang │ │ │ │ └── heap_3.c │ │ │ └── readme.txt │ │ ├── queue.c │ │ ├── readme.txt │ │ ├── stream_buffer.c │ │ ├── tasks.c │ │ └── timers.c │ ├── config │ │ └── FreeRTOSConfig.h │ ├── portable │ │ ├── CMSIS │ │ │ └── nrf52 │ │ │ │ ├── port_cmsis.c │ │ │ │ ├── port_cmsis_systick.c │ │ │ │ └── portmacro_cmsis.h │ │ └── GCC │ │ │ └── nrf52 │ │ │ ├── port.c │ │ │ └── portmacro.h │ └── readme.txt │ ├── hooks.c │ ├── itoa.c │ ├── itoa.h │ ├── linker │ ├── gcc_startup_nrf52840.S │ ├── nrf52840_s140_v7.ld │ ├── nrf52_common.ld │ └── system_nrf52840.c │ ├── main.cpp │ ├── new.cpp │ ├── nordic │ ├── components │ │ └── libraries │ │ │ ├── experimental_section_vars │ │ │ ├── nrf_section.h │ │ │ ├── nrf_section_iter.c │ │ │ └── nrf_section_iter.h │ │ │ ├── log │ │ │ ├── nrf_log.h │ │ │ ├── nrf_log_instance.h │ │ │ └── nrf_log_types.h │ │ │ ├── strerror │ │ │ ├── nrf_strerror.c │ │ │ └── nrf_strerror.h │ │ │ └── util │ │ │ ├── app_error.c │ │ │ ├── app_error.h │ │ │ ├── app_error_handler_gcc.c │ │ │ ├── app_error_weak.h │ │ │ ├── app_util.h │ │ │ ├── app_util_bds.h │ │ │ ├── app_util_platform.c │ │ │ ├── app_util_platform.h │ │ │ ├── nordic_common.h │ │ │ ├── nrf_assert.h │ │ │ ├── nrf_bitmask.h │ │ │ ├── sdk_common.h │ │ │ ├── sdk_errors.h │ │ │ ├── sdk_macros.h │ │ │ ├── sdk_os.h │ │ │ └── sdk_resources.h │ ├── config │ │ └── nrf52840 │ │ │ └── config │ │ │ ├── openthread-config-generic.h │ │ │ ├── openthread-config-wrap.h │ │ │ └── sdk_config.h │ ├── external │ │ ├── nRF-IEEE-802.15.4-radio-driver │ │ │ ├── .travis.yml │ │ │ ├── .uncrustify.cfg │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── release_notes │ │ │ │ ├── nrf_802154_1.0.0.md │ │ │ │ ├── nrf_802154_1.1.0.md │ │ │ │ ├── nrf_802154_1.2.0.md │ │ │ │ ├── nrf_802154_1.2.1.md │ │ │ │ ├── nrf_802154_1.2.2.md │ │ │ │ ├── nrf_802154_1.2.3.md │ │ │ │ ├── nrf_802154_1.3.0.md │ │ │ │ ├── nrf_802154_1.4.0.md │ │ │ │ ├── nrf_802154_1.5.0.md │ │ │ │ ├── nrf_802154_1.6.0.md │ │ │ │ └── nrf_802154_1.6.1.md │ │ │ ├── scripts │ │ │ │ └── pretty.sh │ │ │ ├── src │ │ │ │ ├── fal │ │ │ │ │ └── nrf_802154_fal.h │ │ │ │ ├── fem │ │ │ │ │ ├── none │ │ │ │ │ │ └── nrf_fem_config.h │ │ │ │ │ ├── nrf_fem_control_config.h │ │ │ │ │ ├── nrf_fem_protocol_api.h │ │ │ │ │ ├── nrf_fem_protocol_legacy_api.h │ │ │ │ │ ├── simple_gpio │ │ │ │ │ │ └── nrf_fem_config.h │ │ │ │ │ └── three_pin_gpio │ │ │ │ │ │ └── nrf_fem_config.h │ │ │ │ ├── mac_features │ │ │ │ │ ├── ack_generator │ │ │ │ │ │ ├── nrf_802154_ack_data.h │ │ │ │ │ │ ├── nrf_802154_ack_generator.h │ │ │ │ │ │ ├── nrf_802154_enh_ack_generator.h │ │ │ │ │ │ └── nrf_802154_imm_ack_generator.h │ │ │ │ │ ├── nrf_802154_ack_timeout.h │ │ │ │ │ ├── nrf_802154_csma_ca.h │ │ │ │ │ ├── nrf_802154_delayed_trx.h │ │ │ │ │ ├── nrf_802154_filter.h │ │ │ │ │ └── nrf_802154_frame_parser.h │ │ │ │ ├── nrf_802154.h │ │ │ │ ├── nrf_802154_config.h │ │ │ │ ├── nrf_802154_const.h │ │ │ │ ├── nrf_802154_core.h │ │ │ │ ├── nrf_802154_core_hooks.h │ │ │ │ ├── nrf_802154_critical_section.h │ │ │ │ ├── nrf_802154_debug.h │ │ │ │ ├── nrf_802154_debug_core.h │ │ │ │ ├── nrf_802154_notification.h │ │ │ │ ├── nrf_802154_peripherals.h │ │ │ │ ├── nrf_802154_pib.h │ │ │ │ ├── nrf_802154_priority_drop.h │ │ │ │ ├── nrf_802154_procedures_duration.h │ │ │ │ ├── nrf_802154_request.h │ │ │ │ ├── nrf_802154_rssi.h │ │ │ │ ├── nrf_802154_rx_buffer.h │ │ │ │ ├── nrf_802154_swi.h │ │ │ │ ├── nrf_802154_timer_coord.h │ │ │ │ ├── nrf_802154_types.h │ │ │ │ ├── nrf_802154_utils.h │ │ │ │ ├── platform │ │ │ │ │ ├── clock │ │ │ │ │ │ └── nrf_802154_clock.h │ │ │ │ │ ├── coex │ │ │ │ │ │ └── nrf_802154_wifi_coex.h │ │ │ │ │ ├── hp_timer │ │ │ │ │ │ └── nrf_802154_hp_timer.h │ │ │ │ │ ├── lp_timer │ │ │ │ │ │ └── nrf_802154_lp_timer.h │ │ │ │ │ ├── random │ │ │ │ │ │ └── nrf_802154_random.h │ │ │ │ │ └── temperature │ │ │ │ │ │ └── nrf_802154_temperature.h │ │ │ │ ├── rsch │ │ │ │ │ ├── nrf_802154_rsch.h │ │ │ │ │ ├── nrf_802154_rsch_crit_sect.h │ │ │ │ │ └── raal │ │ │ │ │ │ ├── nrf_raal_api.h │ │ │ │ │ │ ├── nrf_raal_config.h │ │ │ │ │ │ └── softdevice │ │ │ │ │ │ ├── nrf_802154_debug.h │ │ │ │ │ │ └── nrf_raal_softdevice.h │ │ │ │ └── timer_scheduler │ │ │ │ │ └── nrf_802154_timer_sched.h │ │ │ └── tools │ │ │ │ └── event_decoder │ │ │ │ ├── decoder.html │ │ │ │ └── decoder.py │ │ ├── nrf_security │ │ │ ├── config │ │ │ │ └── nrf-config.h │ │ │ ├── include │ │ │ │ ├── mbedtls │ │ │ │ │ ├── aes.h │ │ │ │ │ ├── aes_alt.h │ │ │ │ │ ├── aesni.h │ │ │ │ │ ├── arc4.h │ │ │ │ │ ├── aria.h │ │ │ │ │ ├── asn1.h │ │ │ │ │ ├── asn1write.h │ │ │ │ │ ├── base64.h │ │ │ │ │ ├── bignum.h │ │ │ │ │ ├── blowfish.h │ │ │ │ │ ├── bn_mul.h │ │ │ │ │ ├── camellia.h │ │ │ │ │ ├── ccm.h │ │ │ │ │ ├── ccm_alt.h │ │ │ │ │ ├── certs.h │ │ │ │ │ ├── chacha20.h │ │ │ │ │ ├── chacha20_alt.h │ │ │ │ │ ├── chachapoly.h │ │ │ │ │ ├── chachapoly_alt.h │ │ │ │ │ ├── check_config.h │ │ │ │ │ ├── cipher.h │ │ │ │ │ ├── cipher_internal.h │ │ │ │ │ ├── cmac.h │ │ │ │ │ ├── cmac_alt.h │ │ │ │ │ ├── compat-1.3.h │ │ │ │ │ ├── config.h │ │ │ │ │ ├── ctr_drbg.h │ │ │ │ │ ├── debug.h │ │ │ │ │ ├── des.h │ │ │ │ │ ├── dhm.h │ │ │ │ │ ├── dhm_alt.h │ │ │ │ │ ├── ecdh.h │ │ │ │ │ ├── ecdsa.h │ │ │ │ │ ├── ecjpake.h │ │ │ │ │ ├── ecp.h │ │ │ │ │ ├── ecp_alt.h │ │ │ │ │ ├── ecp_internal.h │ │ │ │ │ ├── entropy.h │ │ │ │ │ ├── entropy_poll.h │ │ │ │ │ ├── error.h │ │ │ │ │ ├── gcm.h │ │ │ │ │ ├── havege.h │ │ │ │ │ ├── hkdf.h │ │ │ │ │ ├── hmac_drbg.h │ │ │ │ │ ├── md.h │ │ │ │ │ ├── md2.h │ │ │ │ │ ├── md4.h │ │ │ │ │ ├── md5.h │ │ │ │ │ ├── md_internal.h │ │ │ │ │ ├── memory_buffer_alloc.h │ │ │ │ │ ├── net.h │ │ │ │ │ ├── net_sockets.h │ │ │ │ │ ├── nist_kw.h │ │ │ │ │ ├── oid.h │ │ │ │ │ ├── padlock.h │ │ │ │ │ ├── pem.h │ │ │ │ │ ├── pk.h │ │ │ │ │ ├── pk_internal.h │ │ │ │ │ ├── pkcs11.h │ │ │ │ │ ├── pkcs12.h │ │ │ │ │ ├── pkcs5.h │ │ │ │ │ ├── platform.h │ │ │ │ │ ├── platform_alt.h │ │ │ │ │ ├── platform_time.h │ │ │ │ │ ├── platform_util.h │ │ │ │ │ ├── poly1305.h │ │ │ │ │ ├── poly1305_alt.h │ │ │ │ │ ├── ripemd160.h │ │ │ │ │ ├── rsa.h │ │ │ │ │ ├── rsa_internal.h │ │ │ │ │ ├── sha1.h │ │ │ │ │ ├── sha1_alt.h │ │ │ │ │ ├── sha256.h │ │ │ │ │ ├── sha256_alt.h │ │ │ │ │ ├── sha512.h │ │ │ │ │ ├── ssl.h │ │ │ │ │ ├── ssl_cache.h │ │ │ │ │ ├── ssl_ciphersuites.h │ │ │ │ │ ├── ssl_cookie.h │ │ │ │ │ ├── ssl_internal.h │ │ │ │ │ ├── ssl_ticket.h │ │ │ │ │ ├── threading.h │ │ │ │ │ ├── threading_alt.h │ │ │ │ │ ├── timing.h │ │ │ │ │ ├── version.h │ │ │ │ │ ├── x509.h │ │ │ │ │ ├── x509_crl.h │ │ │ │ │ ├── x509_crt.h │ │ │ │ │ ├── x509_csr.h │ │ │ │ │ └── xtea.h │ │ │ │ └── software-only-threading │ │ │ │ │ └── threading_alt.h │ │ │ ├── lib │ │ │ │ ├── libmbedcrypto_cc310_backend.a │ │ │ │ ├── libmbedcrypto_cc310_backend_short_wchar.a │ │ │ │ ├── libmbedcrypto_glue.a │ │ │ │ ├── libmbedcrypto_glue_cc310.a │ │ │ │ ├── libmbedcrypto_glue_cc310_short_wchar.a │ │ │ │ ├── libmbedcrypto_glue_short_wchar.a │ │ │ │ ├── libmbedcrypto_glue_vanilla.a │ │ │ │ ├── libmbedcrypto_glue_vanilla_short_wchar.a │ │ │ │ ├── libmbedcrypto_vanilla_backend.a │ │ │ │ ├── libmbedcrypto_vanilla_backend_short_wchar.a │ │ │ │ ├── libmbedtls_base_vanilla.a │ │ │ │ ├── libmbedtls_base_vanilla_short_wchar.a │ │ │ │ ├── libmbedtls_tls_vanilla.a │ │ │ │ ├── libmbedtls_tls_vanilla_short_wchar.a │ │ │ │ ├── libmbedtls_x509_vanilla.a │ │ │ │ ├── libmbedtls_x509_vanilla_short_wchar.a │ │ │ │ ├── libnrf_cc310_platform_0.9.2.a │ │ │ │ └── libnrf_cc310_platform_0.9.2_short_wchar.a │ │ │ ├── mbedtls_plat_config │ │ │ │ ├── nrf52811-mbedtls-config.h │ │ │ │ ├── nrf52833-mbedtls-config.h │ │ │ │ └── nrf52840-mbedtls-config.h │ │ │ └── nrf_cc310_plat │ │ │ │ ├── include │ │ │ │ ├── nrf_cc310_platform.h │ │ │ │ ├── nrf_cc310_platform_abort.h │ │ │ │ ├── nrf_cc310_platform_defines.h │ │ │ │ ├── nrf_cc310_platform_entropy.h │ │ │ │ └── nrf_cc310_platform_mutex.h │ │ │ │ └── src │ │ │ │ ├── nrf_cc310_platform_abort_freertos.c │ │ │ │ └── nrf_cc310_platform_mutex_freertos.c │ │ └── openthread │ │ │ ├── include │ │ │ ├── config │ │ │ │ ├── announce_sender.h │ │ │ │ ├── backbone_router.h │ │ │ │ ├── border_router.h │ │ │ │ ├── channel_manager.h │ │ │ │ ├── channel_monitor.h │ │ │ │ ├── child_supervision.h │ │ │ │ ├── coap.h │ │ │ │ ├── commissioner.h │ │ │ │ ├── dhcp6_client.h │ │ │ │ ├── dhcp6_server.h │ │ │ │ ├── diag.h │ │ │ │ ├── dns_client.h │ │ │ │ ├── ip6.h │ │ │ │ ├── joiner.h │ │ │ │ ├── link_quality.h │ │ │ │ ├── link_raw.h │ │ │ │ ├── logging.h │ │ │ │ ├── mac.h │ │ │ │ ├── mle.h │ │ │ │ ├── openthread-core-config-check.h │ │ │ │ ├── openthread-core-default-config.h │ │ │ │ ├── parent_search.h │ │ │ │ ├── platform.h │ │ │ │ ├── sntp_client.h │ │ │ │ ├── time_sync.h │ │ │ │ └── tmf.h │ │ │ ├── openthread-core-config.h │ │ │ ├── openthread │ │ │ │ ├── backbone_router.h │ │ │ │ ├── backbone_router_ftd.h │ │ │ │ ├── border_agent.h │ │ │ │ ├── border_router.h │ │ │ │ ├── channel_manager.h │ │ │ │ ├── channel_monitor.h │ │ │ │ ├── child_supervision.h │ │ │ │ ├── cli.h │ │ │ │ ├── coap.h │ │ │ │ ├── coap_secure.h │ │ │ │ ├── commissioner.h │ │ │ │ ├── config.h │ │ │ │ ├── crypto.h │ │ │ │ ├── dataset.h │ │ │ │ ├── dataset_ftd.h │ │ │ │ ├── diag.h │ │ │ │ ├── dns.h │ │ │ │ ├── entropy.h │ │ │ │ ├── error.h │ │ │ │ ├── heap.h │ │ │ │ ├── icmp6.h │ │ │ │ ├── instance.h │ │ │ │ ├── ip6.h │ │ │ │ ├── jam_detection.h │ │ │ │ ├── joiner.h │ │ │ │ ├── link.h │ │ │ │ ├── link_raw.h │ │ │ │ ├── logging.h │ │ │ │ ├── message.h │ │ │ │ ├── ncp.h │ │ │ │ ├── netdata.h │ │ │ │ ├── netdiag.h │ │ │ │ ├── network_time.h │ │ │ │ ├── ot_api_doc.h │ │ │ │ ├── platform │ │ │ │ │ ├── alarm-micro.h │ │ │ │ │ ├── alarm-milli.h │ │ │ │ │ ├── ble.h │ │ │ │ │ ├── diag.h │ │ │ │ │ ├── entropy.h │ │ │ │ │ ├── flash.h │ │ │ │ │ ├── logging.h │ │ │ │ │ ├── memory.h │ │ │ │ │ ├── messagepool.h │ │ │ │ │ ├── misc.h │ │ │ │ │ ├── openthread-system.h │ │ │ │ │ ├── otns.h │ │ │ │ │ ├── platform-fem.h │ │ │ │ │ ├── platform-softdevice.h │ │ │ │ │ ├── radio.h │ │ │ │ │ ├── settings.h │ │ │ │ │ ├── spi-slave.h │ │ │ │ │ ├── time.h │ │ │ │ │ ├── toolchain.h │ │ │ │ │ ├── uart.h │ │ │ │ │ └── udp.h │ │ │ │ ├── random_crypto.h │ │ │ │ ├── random_noncrypto.h │ │ │ │ ├── server.h │ │ │ │ ├── sntp.h │ │ │ │ ├── tasklet.h │ │ │ │ ├── thread.h │ │ │ │ ├── thread_ftd.h │ │ │ │ └── udp.h │ │ │ └── spinel │ │ │ │ └── spinel.h │ │ │ └── lib │ │ │ └── nrf52840 │ │ │ └── gcc │ │ │ ├── libnordicsemi-nrf52840-radio-driver-softdevice.a │ │ │ ├── libnordicsemi-nrf52840-radio-driver.a │ │ │ ├── libopenthread-cli-ftd-optimized-ftd.a │ │ │ ├── libopenthread-cli-ftd.a │ │ │ ├── libopenthread-cli-mtd-optimized-mtd.a │ │ │ ├── libopenthread-cli-mtd.a │ │ │ ├── libopenthread-ftd-optimized-ftd.a │ │ │ ├── libopenthread-ftd.a │ │ │ ├── libopenthread-hdlc.a │ │ │ ├── libopenthread-mtd-optimized-mtd.a │ │ │ ├── libopenthread-mtd.a │ │ │ ├── libopenthread-ncp-ftd-spi.a │ │ │ ├── libopenthread-ncp-ftd.a │ │ │ ├── libopenthread-ncp-mtd-spi.a │ │ │ ├── libopenthread-ncp-mtd.a │ │ │ ├── libopenthread-nrf52840-sdk-nodiag.a │ │ │ ├── libopenthread-nrf52840-sdk.a │ │ │ ├── libopenthread-nrf52840-softdevice-sdk-nodiag.a │ │ │ ├── libopenthread-nrf52840-softdevice-sdk.a │ │ │ ├── libopenthread-nrf52840-transport-none.a │ │ │ ├── libopenthread-nrf52840-transport-spi.a │ │ │ ├── libopenthread-nrf52840-transport-usb.a │ │ │ ├── libopenthread-nrf52840-transport.a │ │ │ ├── libopenthread-platform-utils-optimized-ftd.a │ │ │ ├── libopenthread-platform-utils-optimized-mtd.a │ │ │ ├── libopenthread-platform-utils.a │ │ │ ├── libopenthread-radio.a │ │ │ ├── libopenthread-rcp-spi.a │ │ │ ├── libopenthread-rcp.a │ │ │ ├── libopenthread-spinel-ncp.a │ │ │ └── libopenthread-spinel-rcp.a │ ├── nrfx │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── drivers │ │ │ ├── include │ │ │ │ ├── nrf_bitmask.h │ │ │ │ ├── nrfx_adc.h │ │ │ │ ├── nrfx_clock.h │ │ │ │ ├── nrfx_comp.h │ │ │ │ ├── nrfx_dppi.h │ │ │ │ ├── nrfx_egu.h │ │ │ │ ├── nrfx_gpiote.h │ │ │ │ ├── nrfx_i2s.h │ │ │ │ ├── nrfx_ipc.h │ │ │ │ ├── nrfx_lpcomp.h │ │ │ │ ├── nrfx_nfct.h │ │ │ │ ├── nrfx_nvmc.h │ │ │ │ ├── nrfx_pdm.h │ │ │ │ ├── nrfx_power.h │ │ │ │ ├── nrfx_power_clock.h │ │ │ │ ├── nrfx_power_compat.h │ │ │ │ ├── nrfx_ppi.h │ │ │ │ ├── nrfx_pwm.h │ │ │ │ ├── nrfx_qdec.h │ │ │ │ ├── nrfx_qspi.h │ │ │ │ ├── nrfx_rng.h │ │ │ │ ├── nrfx_rtc.h │ │ │ │ ├── nrfx_saadc.h │ │ │ │ ├── nrfx_spi.h │ │ │ │ ├── nrfx_spim.h │ │ │ │ ├── nrfx_spis.h │ │ │ │ ├── nrfx_systick.h │ │ │ │ ├── nrfx_temp.h │ │ │ │ ├── nrfx_timer.h │ │ │ │ ├── nrfx_twi.h │ │ │ │ ├── nrfx_twi_twim.h │ │ │ │ ├── nrfx_twim.h │ │ │ │ ├── nrfx_twis.h │ │ │ │ ├── nrfx_uart.h │ │ │ │ ├── nrfx_uarte.h │ │ │ │ ├── nrfx_usbd.h │ │ │ │ ├── nrfx_usbreg.h │ │ │ │ └── nrfx_wdt.h │ │ │ ├── nrfx_common.h │ │ │ ├── nrfx_errors.h │ │ │ └── src │ │ │ │ ├── nrfx_adc.c │ │ │ │ ├── nrfx_clock.c │ │ │ │ ├── nrfx_comp.c │ │ │ │ ├── nrfx_dppi.c │ │ │ │ ├── nrfx_egu.c │ │ │ │ ├── nrfx_gpiote.c │ │ │ │ ├── nrfx_i2s.c │ │ │ │ ├── nrfx_ipc.c │ │ │ │ ├── nrfx_lpcomp.c │ │ │ │ ├── nrfx_nfct.c │ │ │ │ ├── nrfx_nvmc.c │ │ │ │ ├── nrfx_pdm.c │ │ │ │ ├── nrfx_power.c │ │ │ │ ├── nrfx_ppi.c │ │ │ │ ├── nrfx_pwm.c │ │ │ │ ├── nrfx_qdec.c │ │ │ │ ├── nrfx_qspi.c │ │ │ │ ├── nrfx_rng.c │ │ │ │ ├── nrfx_rtc.c │ │ │ │ ├── nrfx_saadc.c │ │ │ │ ├── nrfx_spi.c │ │ │ │ ├── nrfx_spim.c │ │ │ │ ├── nrfx_spis.c │ │ │ │ ├── nrfx_systick.c │ │ │ │ ├── nrfx_temp.c │ │ │ │ ├── nrfx_timer.c │ │ │ │ ├── nrfx_twi.c │ │ │ │ ├── nrfx_twi_twim.c │ │ │ │ ├── nrfx_twim.c │ │ │ │ ├── nrfx_twis.c │ │ │ │ ├── nrfx_uart.c │ │ │ │ ├── nrfx_uarte.c │ │ │ │ ├── nrfx_usbd.c │ │ │ │ ├── nrfx_usbd_errata.h │ │ │ │ ├── nrfx_usbreg.c │ │ │ │ ├── nrfx_wdt.c │ │ │ │ └── prs │ │ │ │ ├── nrfx_prs.c │ │ │ │ └── nrfx_prs.h │ │ ├── hal │ │ │ ├── nrf_aar.h │ │ │ ├── nrf_acl.h │ │ │ ├── nrf_adc.h │ │ │ ├── nrf_bprot.h │ │ │ ├── nrf_cache.h │ │ │ ├── nrf_ccm.h │ │ │ ├── nrf_clock.h │ │ │ ├── nrf_comp.h │ │ │ ├── nrf_dcnf.h │ │ │ ├── nrf_dppi.h │ │ │ ├── nrf_ecb.h │ │ │ ├── nrf_egu.h │ │ │ ├── nrf_ficr.h │ │ │ ├── nrf_fpu.h │ │ │ ├── nrf_gpio.h │ │ │ ├── nrf_gpiote.h │ │ │ ├── nrf_i2s.h │ │ │ ├── nrf_ipc.h │ │ │ ├── nrf_kmu.h │ │ │ ├── nrf_lpcomp.h │ │ │ ├── nrf_mpu.h │ │ │ ├── nrf_mutex.h │ │ │ ├── nrf_mwu.h │ │ │ ├── nrf_nfct.h │ │ │ ├── nrf_nvmc.h │ │ │ ├── nrf_oscillators.h │ │ │ ├── nrf_pdm.h │ │ │ ├── nrf_power.h │ │ │ ├── nrf_ppi.h │ │ │ ├── nrf_pwm.h │ │ │ ├── nrf_qdec.h │ │ │ ├── nrf_qspi.h │ │ │ ├── nrf_radio.h │ │ │ ├── nrf_regulators.h │ │ │ ├── nrf_reset.h │ │ │ ├── nrf_rng.h │ │ │ ├── nrf_rtc.h │ │ │ ├── nrf_saadc.h │ │ │ ├── nrf_spi.h │ │ │ ├── nrf_spim.h │ │ │ ├── nrf_spis.h │ │ │ ├── nrf_spu.h │ │ │ ├── nrf_systick.h │ │ │ ├── nrf_temp.h │ │ │ ├── nrf_timer.h │ │ │ ├── nrf_twi.h │ │ │ ├── nrf_twim.h │ │ │ ├── nrf_twis.h │ │ │ ├── nrf_uart.h │ │ │ ├── nrf_uarte.h │ │ │ ├── nrf_usbd.h │ │ │ ├── nrf_usbreg.h │ │ │ ├── nrf_vmc.h │ │ │ ├── nrf_vreqctrl.h │ │ │ └── nrf_wdt.h │ │ ├── helpers │ │ │ └── nrfx_gppi.h │ │ ├── legacy │ │ │ ├── apply_old_config.h │ │ │ ├── nrf_drv_clock.c │ │ │ └── nrf_drv_clock.h │ │ ├── mdk │ │ │ ├── compiler_abstraction.h │ │ │ ├── nrf.h │ │ │ ├── nrf51.h │ │ │ ├── nrf51.svd │ │ │ ├── nrf51422_peripherals.h │ │ │ ├── nrf51801_peripherals.h │ │ │ ├── nrf51802_peripherals.h │ │ │ ├── nrf51822_peripherals.h │ │ │ ├── nrf51824_peripherals.h │ │ │ ├── nrf51_bitfields.h │ │ │ ├── nrf51_common.ld │ │ │ ├── nrf51_deprecated.h │ │ │ ├── nrf51_erratas.h │ │ │ ├── nrf51_peripherals.h │ │ │ ├── nrf51_to_nrf52.h │ │ │ ├── nrf51_to_nrf52810.h │ │ │ ├── nrf51_to_nrf52840.h │ │ │ ├── nrf51_xxaa.ld │ │ │ ├── nrf51_xxab.ld │ │ │ ├── nrf51_xxac.ld │ │ │ ├── nrf52.h │ │ │ ├── nrf52.svd │ │ │ ├── nrf52805.h │ │ │ ├── nrf52805.svd │ │ │ ├── nrf52805_bitfields.h │ │ │ ├── nrf52805_peripherals.h │ │ │ ├── nrf52805_xxaa.ld │ │ │ ├── nrf52810.h │ │ │ ├── nrf52810.svd │ │ │ ├── nrf52810_bitfields.h │ │ │ ├── nrf52810_name_change.h │ │ │ ├── nrf52810_peripherals.h │ │ │ ├── nrf52810_to_nrf52811.h │ │ │ ├── nrf52810_xxaa.ld │ │ │ ├── nrf52811.h │ │ │ ├── nrf52811.svd │ │ │ ├── nrf52811_bitfields.h │ │ │ ├── nrf52811_peripherals.h │ │ │ ├── nrf52811_xxaa.ld │ │ │ ├── nrf52832_peripherals.h │ │ │ ├── nrf52832_xxaa.ld │ │ │ ├── nrf52832_xxab.ld │ │ │ ├── nrf52833.h │ │ │ ├── nrf52833.svd │ │ │ ├── nrf52833_bitfields.h │ │ │ ├── nrf52833_peripherals.h │ │ │ ├── nrf52833_xxaa.ld │ │ │ ├── nrf52840.h │ │ │ ├── nrf52840.svd │ │ │ ├── nrf52840_bitfields.h │ │ │ ├── nrf52840_peripherals.h │ │ │ ├── nrf52840_xxaa.ld │ │ │ ├── nrf52_bitfields.h │ │ │ ├── nrf52_common.ld │ │ │ ├── nrf52_erratas.h │ │ │ ├── nrf52_name_change.h │ │ │ ├── nrf52_to_nrf52810.h │ │ │ ├── nrf52_to_nrf52833.h │ │ │ ├── nrf52_to_nrf52840.h │ │ │ ├── nrf52_xxaa.ld │ │ │ ├── nrf5340_application.h │ │ │ ├── nrf5340_application.svd │ │ │ ├── nrf5340_application_bitfields.h │ │ │ ├── nrf5340_application_peripherals.h │ │ │ ├── nrf5340_network.h │ │ │ ├── nrf5340_network.svd │ │ │ ├── nrf5340_network_bitfields.h │ │ │ ├── nrf5340_network_peripherals.h │ │ │ ├── nrf5340_xxaa_application.ld │ │ │ ├── nrf5340_xxaa_network.ld │ │ │ ├── nrf53_erratas.h │ │ │ ├── nrf9160.h │ │ │ ├── nrf9160.svd │ │ │ ├── nrf9160_bitfields.h │ │ │ ├── nrf9160_name_change.h │ │ │ ├── nrf9160_peripherals.h │ │ │ ├── nrf9160_xxaa.ld │ │ │ ├── nrf91_erratas.h │ │ │ ├── nrf_common.ld │ │ │ ├── nrf_erratas.h │ │ │ ├── nrf_peripherals.h │ │ │ ├── system_nrf.h │ │ │ ├── system_nrf51.h │ │ │ ├── system_nrf52.c │ │ │ ├── system_nrf52.h │ │ │ ├── system_nrf52805.h │ │ │ ├── system_nrf52810.h │ │ │ ├── system_nrf52811.h │ │ │ ├── system_nrf52833.h │ │ │ ├── system_nrf52840.c │ │ │ ├── system_nrf52840.h │ │ │ ├── system_nrf5340_application.h │ │ │ ├── system_nrf5340_network.h │ │ │ └── system_nrf9160.h │ │ ├── nrfx.h │ │ └── soc │ │ │ ├── nrfx_atomic.c │ │ │ ├── nrfx_atomic.h │ │ │ ├── nrfx_atomic_internal.h │ │ │ ├── nrfx_coredep.h │ │ │ ├── nrfx_irqs.h │ │ │ ├── nrfx_irqs_nrf51.h │ │ │ ├── nrfx_irqs_nrf52810.h │ │ │ ├── nrfx_irqs_nrf52811.h │ │ │ ├── nrfx_irqs_nrf52832.h │ │ │ ├── nrfx_irqs_nrf52833.h │ │ │ ├── nrfx_irqs_nrf52840.h │ │ │ ├── nrfx_irqs_nrf5340_application.h │ │ │ ├── nrfx_irqs_nrf5340_network.h │ │ │ └── nrfx_irqs_nrf9160.h │ ├── nrfx_config.h │ ├── nrfx_glue.h │ ├── nrfx_log.h │ └── softdevice │ │ ├── common │ │ ├── nrf_sdh.c │ │ ├── nrf_sdh.h │ │ ├── nrf_sdh_ant.c │ │ ├── nrf_sdh_ant.h │ │ ├── nrf_sdh_ble.c │ │ ├── nrf_sdh_ble.h │ │ ├── nrf_sdh_freertos.c │ │ ├── nrf_sdh_freertos.h │ │ ├── nrf_sdh_soc.c │ │ └── nrf_sdh_soc.h │ │ └── s140_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_sd_def.h │ │ ├── nrf_sdm.h │ │ ├── nrf_soc.h │ │ └── nrf_svc.h │ ├── nrf_log_internal.h │ ├── pins_arduino.h │ ├── pulse.c │ ├── pulse.h │ ├── pulse_asm.S │ ├── rtos.cpp │ ├── rtos.h │ ├── sysview │ ├── Config │ │ ├── Global.h │ │ ├── SEGGER_RTT_Conf.h │ │ ├── SEGGER_SYSVIEW_Conf.h │ │ └── SEGGER_SYSVIEW_Config_FreeRTOS.c │ ├── SEGGER │ │ ├── SEGGER.h │ │ ├── SEGGER_RTT.c │ │ ├── SEGGER_RTT.h │ │ ├── SEGGER_RTT_ASM_ARMv7M.S │ │ ├── SEGGER_RTT_printf.c │ │ ├── SEGGER_SYSVIEW.c │ │ ├── SEGGER_SYSVIEW.h │ │ ├── SEGGER_SYSVIEW_ConfDefaults.h │ │ └── SEGGER_SYSVIEW_Int.h │ ├── SEGGER_SYSVIEW_FreeRTOS.c │ └── SEGGER_SYSVIEW_FreeRTOS.h │ ├── utility │ ├── AdaCallback.c │ ├── AdaCallback.h │ ├── SoftwareTimer.cpp │ ├── SoftwareTimer.h │ ├── TimeoutTimer.h │ ├── adafruit_fifo.cpp │ ├── adafruit_fifo.h │ ├── debug.cpp │ ├── debug.h │ ├── utilities.c │ └── utilities.h │ ├── verify.h │ ├── wiring.c │ ├── wiring.h │ ├── wiring_analog.cpp │ ├── wiring_analog.h │ ├── wiring_analog_nRF52.c │ ├── wiring_constants.h │ ├── wiring_digital.c │ ├── wiring_digital.h │ ├── wiring_private.c │ ├── wiring_private.h │ ├── wiring_shift.c │ └── wiring_shift.h ├── keywords.txt ├── libraries ├── Adafruit_LittleFS │ ├── library.properties │ └── src │ │ ├── Adafruit_LittleFS.cpp │ │ ├── Adafruit_LittleFS.h │ │ ├── Adafruit_LittleFS_File.cpp │ │ ├── Adafruit_LittleFS_File.h │ │ └── littlefs │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── lfs.c │ │ ├── lfs.h │ │ ├── lfs_util.c │ │ └── lfs_util.h ├── BLEAdafruitService │ ├── library.properties │ └── src │ │ ├── BLEAdafruitService.h │ │ └── services │ │ ├── BLEAdafruitAccel.cpp │ │ ├── BLEAdafruitAccel.h │ │ ├── BLEAdafruitAddressablePixel.cpp │ │ ├── BLEAdafruitAddressablePixel.h │ │ ├── BLEAdafruitBaro.cpp │ │ ├── BLEAdafruitBaro.h │ │ ├── BLEAdafruitButton.cpp │ │ ├── BLEAdafruitButton.h │ │ ├── BLEAdafruitColor.cpp │ │ ├── BLEAdafruitColor.h │ │ ├── BLEAdafruitGesture.cpp │ │ ├── BLEAdafruitGesture.h │ │ ├── BLEAdafruitGyro.cpp │ │ ├── BLEAdafruitGyro.h │ │ ├── BLEAdafruitHumid.cpp │ │ ├── BLEAdafruitHumid.h │ │ ├── BLEAdafruitLightSensor.cpp │ │ ├── BLEAdafruitLightSensor.h │ │ ├── BLEAdafruitMagnetic.cpp │ │ ├── BLEAdafruitMagnetic.h │ │ ├── BLEAdafruitProximity.cpp │ │ ├── BLEAdafruitProximity.h │ │ ├── BLEAdafruitQuaternion.cpp │ │ ├── BLEAdafruitQuaternion.h │ │ ├── BLEAdafruitSensor.cpp │ │ ├── BLEAdafruitSensor.h │ │ ├── BLEAdafruitSound.cpp │ │ ├── BLEAdafruitSound.h │ │ ├── BLEAdafruitTemperature.cpp │ │ ├── BLEAdafruitTemperature.h │ │ ├── BLEAdafruitTone.cpp │ │ └── BLEAdafruitTone.h ├── BLEHomekit │ ├── README.md │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── BLEHomekit.cpp │ │ ├── BLEHomekit.h │ │ ├── HAPCharacteristic.cpp │ │ ├── HAPCharacteristic.h │ │ ├── HAPProcedure.cpp │ │ ├── HAPProcedure.h │ │ ├── HAPService.cpp │ │ ├── HAPService.h │ │ ├── HAPUuid.h │ │ ├── crypto │ │ ├── crypto.c │ │ ├── crypto.h │ │ ├── random.c │ │ ├── random.h │ │ ├── srp │ │ │ ├── bignum.c │ │ │ ├── bignum.h │ │ │ ├── bn_mul.h │ │ │ ├── check_config.h │ │ │ ├── config.h │ │ │ ├── memory_buffer_alloc.c │ │ │ ├── memory_buffer_alloc.h │ │ │ ├── platform.c │ │ │ ├── platform.h │ │ │ ├── srp.c │ │ │ └── srp.h │ │ └── tweetnacl-modified │ │ │ ├── tweetnacl.c │ │ │ └── tweetnacl.h │ │ └── service │ │ ├── HAPAccessoryInfo.cpp │ │ ├── HAPAccessoryInfo.h │ │ ├── HAPLightBulb.cpp │ │ ├── HAPLightBulb.h │ │ ├── HAPPairing.cpp │ │ ├── HAPPairing.h │ │ ├── HAPProtocol.cpp │ │ └── HAPProtocol.h ├── Bluefruit52Lib │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── Central │ │ │ ├── central_bleuart │ │ │ │ └── central_bleuart.ino │ │ │ ├── central_bleuart_multi │ │ │ │ └── central_bleuart_multi.ino │ │ │ ├── central_custom_hrm │ │ │ │ └── central_custom_hrm.ino │ │ │ ├── central_hid │ │ │ │ └── central_hid.ino │ │ │ ├── central_pairing │ │ │ │ └── central_pairing.ino │ │ │ ├── central_scan │ │ │ │ └── central_scan.ino │ │ │ ├── central_scan_advanced │ │ │ │ └── central_scan_advanced.ino │ │ │ ├── central_throughput │ │ │ │ └── central_throughput.ino │ │ │ └── central_ti_sensortag_optical │ │ │ │ └── central_ti_sensortag_optical.ino │ │ ├── DualRoles │ │ │ └── dual_bleuart │ │ │ │ └── dual_bleuart.ino │ │ ├── Hardware │ │ │ ├── Fading │ │ │ │ └── Fading.ino │ │ │ ├── Serial1_test │ │ │ │ ├── .feather52832.test.skip │ │ │ │ └── Serial1_test.ino │ │ │ ├── SerialEcho │ │ │ │ └── SerialEcho.ino │ │ │ ├── adc │ │ │ │ └── adc.ino │ │ │ ├── adc_vbat │ │ │ │ ├── .cluenrf52840.test.skip │ │ │ │ ├── .itsybitsy52840.test.skip │ │ │ │ └── adc_vbat.ino │ │ │ ├── blink_sleep │ │ │ │ └── blink_sleep.ino │ │ │ ├── blinky │ │ │ │ └── blinky.ino │ │ │ ├── dfu_ota │ │ │ │ └── dfu_ota.ino │ │ │ ├── dfu_serial │ │ │ │ └── dfu_serial.ino │ │ │ ├── digital_interrupt_deferred │ │ │ │ └── digital_interrupt_deferred.ino │ │ │ ├── fwinfo │ │ │ │ └── fwinfo.ino │ │ │ ├── gpstest_swuart │ │ │ │ └── gpstest_swuart.ino │ │ │ ├── hw_systick │ │ │ │ └── hw_systick.ino │ │ │ ├── hwinfo │ │ │ │ └── hwinfo.ino │ │ │ ├── hwpwm │ │ │ │ └── hwpwm.ino │ │ │ ├── meminfo │ │ │ │ └── meminfo.ino │ │ │ ├── nfc_to_gpio │ │ │ │ └── nfc_to_gpio.ino │ │ │ ├── rtos_scheduler │ │ │ │ └── rtos_scheduler.ino │ │ │ ├── software_timer │ │ │ │ └── software_timer.ino │ │ │ └── tone_happy_birthday │ │ │ │ └── tone_happy_birthday.ino │ │ ├── Peripheral │ │ │ ├── StandardFirmataBLE │ │ │ │ ├── LICENSE.txt │ │ │ │ └── StandardFirmataBLE.ino │ │ │ ├── adv_AdafruitColor │ │ │ │ └── adv_AdafruitColor.ino │ │ │ ├── adv_advanced │ │ │ │ └── adv_advanced.ino │ │ │ ├── ancs │ │ │ │ └── ancs.ino │ │ │ ├── ancs_arcada │ │ │ │ ├── .cluenrf52840.test.only │ │ │ │ ├── .cplaynrf52840.test.only │ │ │ │ └── ancs_arcada.ino │ │ │ ├── ancs_oled │ │ │ │ └── ancs_oled.ino │ │ │ ├── arduino_science_journal │ │ │ │ ├── .cluenrf52840.test.only │ │ │ │ ├── .cplaynrf52840.test.only │ │ │ │ ├── .feather52840sense.test.only │ │ │ │ └── arduino_science_journal.ino │ │ │ ├── beacon │ │ │ │ └── beacon.ino │ │ │ ├── blemidi │ │ │ │ └── blemidi.ino │ │ │ ├── bleuart │ │ │ │ └── bleuart.ino │ │ │ ├── bleuart_multi │ │ │ │ └── bleuart_multi.ino │ │ │ ├── blinky_ota │ │ │ │ └── blinky_ota.ino │ │ │ ├── bluefruit_playground │ │ │ │ ├── .cluenrf52840.test.only │ │ │ │ ├── .cplaynrf52840.test.only │ │ │ │ ├── .feather52840sense.test.only │ │ │ │ └── bluefruit_playground.ino │ │ │ ├── clearbonds │ │ │ │ └── clearbonds.ino │ │ │ ├── client_cts │ │ │ │ └── client_cts.ino │ │ │ ├── client_cts_oled │ │ │ │ └── client_cts_oled.ino │ │ │ ├── controller │ │ │ │ ├── controller.ino │ │ │ │ └── packetParser.cpp │ │ │ ├── custom_hrm │ │ │ │ └── custom_hrm.ino │ │ │ ├── custom_htm │ │ │ │ ├── IEEE11073float.cpp │ │ │ │ ├── IEEE11073float.h │ │ │ │ └── custom_htm.ino │ │ │ ├── eddystone_url │ │ │ │ └── eddystone_url.ino │ │ │ ├── hid_camerashutter │ │ │ │ └── hid_camerashutter.ino │ │ │ ├── hid_keyboard │ │ │ │ └── hid_keyboard.ino │ │ │ ├── hid_keyscan │ │ │ │ └── hid_keyscan.ino │ │ │ ├── hid_mouse │ │ │ │ └── hid_mouse.ino │ │ │ ├── image_eink_transfer │ │ │ │ └── image_eink_transfer.ino │ │ │ ├── image_transfer │ │ │ │ └── image_transfer.ino │ │ │ ├── neomatrix │ │ │ │ └── neomatrix.ino │ │ │ ├── neopixel │ │ │ │ └── neopixel.ino │ │ │ ├── nrf_blinky │ │ │ │ └── nrf_blinky.ino │ │ │ ├── pairing_passkey │ │ │ │ └── pairing_passkey.ino │ │ │ ├── pairing_passkey_arcada │ │ │ │ ├── .cluenrf52840.test.only │ │ │ │ ├── .cplaynrf52840.test.only │ │ │ │ └── pairing_passkey_arcada.ino │ │ │ ├── pairing_pin │ │ │ │ └── pairing_pin.ino │ │ │ ├── rssi_callback │ │ │ │ └── rssi_callback.ino │ │ │ ├── rssi_poll │ │ │ │ └── rssi_poll.ino │ │ │ ├── tf4micro-motion-kit │ │ │ │ ├── .cluenrf52840.test.only │ │ │ │ ├── .feather52840sense.test.only │ │ │ │ ├── ble_file_transfer.cpp │ │ │ │ ├── ble_file_transfer.h │ │ │ │ ├── data_provider.cpp │ │ │ │ ├── data_provider.h │ │ │ │ ├── model_tester.cpp │ │ │ │ ├── model_tester.h │ │ │ │ └── tf4micro-motion-kit.ino │ │ │ └── throughput │ │ │ │ └── throughput.ino │ │ └── Projects │ │ │ ├── homekit │ │ │ └── homekit_lightbulb │ │ │ │ ├── .all.test.skip │ │ │ │ └── homekit_lightbulb.ino │ │ │ └── rssi_proximity │ │ │ ├── README.md │ │ │ ├── rssi_proximity_central │ │ │ └── rssi_proximity_central.ino │ │ │ └── rssi_proximity_peripheral │ │ │ └── rssi_proximity_peripheral.ino │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── BLEAdvertising.cpp │ │ ├── BLEAdvertising.h │ │ ├── BLECentral.cpp │ │ ├── BLECentral.h │ │ ├── BLECharacteristic.cpp │ │ ├── BLECharacteristic.h │ │ ├── BLEClientCharacteristic.cpp │ │ ├── BLEClientCharacteristic.h │ │ ├── BLEClientService.cpp │ │ ├── BLEClientService.h │ │ ├── BLEConnection.cpp │ │ ├── BLEConnection.h │ │ ├── BLEDiscovery.cpp │ │ ├── BLEDiscovery.h │ │ ├── BLEGatt.cpp │ │ ├── BLEGatt.h │ │ ├── BLEPeriph.cpp │ │ ├── BLEPeriph.h │ │ ├── BLEScanner.cpp │ │ ├── BLEScanner.h │ │ ├── BLESecurity.cpp │ │ ├── BLESecurity.h │ │ ├── BLEService.cpp │ │ ├── BLEService.h │ │ ├── BLEUuid.cpp │ │ ├── BLEUuid.h │ │ ├── bluefruit.cpp │ │ ├── bluefruit.h │ │ ├── bluefruit_common.h │ │ ├── clients │ │ ├── BLEAncs.cpp │ │ ├── BLEAncs.h │ │ ├── BLEClientBas.cpp │ │ ├── BLEClientBas.h │ │ ├── BLEClientCts.cpp │ │ ├── BLEClientCts.h │ │ ├── BLEClientDis.cpp │ │ ├── BLEClientDis.h │ │ ├── BLEClientHidAdafruit.cpp │ │ ├── BLEClientHidAdafruit.h │ │ ├── BLEClientUart.cpp │ │ └── BLEClientUart.h │ │ ├── services │ │ ├── BLEBas.cpp │ │ ├── BLEBas.h │ │ ├── BLEBeacon.cpp │ │ ├── BLEBeacon.h │ │ ├── BLEDfu.cpp │ │ ├── BLEDfu.h │ │ ├── BLEDis.cpp │ │ ├── BLEDis.h │ │ ├── BLEHidAdafruit.cpp │ │ ├── BLEHidAdafruit.h │ │ ├── BLEHidGeneric.cpp │ │ ├── BLEHidGeneric.h │ │ ├── BLEMidi.cpp │ │ ├── BLEMidi.h │ │ ├── BLEUart.cpp │ │ ├── BLEUart.h │ │ ├── EddyStone.cpp │ │ └── EddyStone.h │ │ └── utility │ │ ├── AdaMsg.cpp │ │ ├── AdaMsg.h │ │ ├── bonding.cpp │ │ ├── bonding.h │ │ └── bootloader_util.c ├── InternalFileSytem │ ├── examples │ │ ├── Internal_Format │ │ │ └── Internal_Format.ino │ │ ├── Internal_ListFiles │ │ │ └── Internal_ListFiles.ino │ │ ├── Internal_ReadWrite │ │ │ └── Internal_ReadWrite.ino │ │ └── Internal_StressTest │ │ │ └── Internal_StressTest.ino │ ├── library.properties │ └── src │ │ ├── InternalFileSystem.cpp │ │ ├── InternalFileSystem.h │ │ └── flash │ │ ├── flash_cache.c │ │ ├── flash_cache.h │ │ ├── flash_nrf5x.c │ │ └── flash_nrf5x.h ├── OpenThread │ ├── README.adoc │ ├── dist │ │ ├── format_protptype.rb │ │ ├── funclist_filter_api.rb │ │ ├── gen_class_decls.rb │ │ ├── gen_funclist_from_doxyxml.rb │ │ └── gen_impls.rb │ ├── examples │ │ ├── OpenThreadCliExample │ │ │ └── OpenThreadCliExample.ino │ │ └── ot-udp-echo │ │ │ └── ot-udp-echo.ino │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── OpenThread.cpp │ │ ├── OpenThread.h │ │ ├── OpenThreadCli.cpp │ │ ├── OpenThreadCli.h │ │ ├── OpenThread_cmds.hpp │ │ ├── OpenThread_types.cpp │ │ ├── OpenThread_types.hpp │ │ ├── core │ │ ├── netif.h │ │ ├── openthread_freertos.c │ │ ├── otr_system.c │ │ ├── otr_system.h │ │ └── uart_lock.h │ │ ├── net │ │ └── utils │ │ │ ├── nat64_utils.h │ │ │ └── time_ntp.h │ │ ├── openthread │ │ └── openthread-freertos.h │ │ ├── otapi.cpp │ │ ├── otapi.hpp │ │ ├── otcmd.cpp │ │ ├── otcmd.hpp │ │ ├── otcmd_coap.cpp │ │ ├── otcmd_coaps.cpp │ │ └── portable │ │ ├── nrf52.c │ │ └── portable.h ├── PDM │ ├── examples │ │ └── PDMSerialPlotter │ │ │ └── PDMSerialPlotter.ino │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── PDM.cpp │ │ ├── PDM.h │ │ └── utility │ │ ├── PDMDoubleBuffer.cpp │ │ └── PDMDoubleBuffer.h ├── RotaryEncoder │ ├── LICENSE │ ├── RotaryEncoder.cpp │ ├── RotaryEncoder.h │ ├── SwRotaryEncoder.cpp │ ├── SwRotaryEncoder.h │ ├── examples │ │ ├── HwEncoderCallback │ │ │ └── HwEncoderCallback.ino │ │ ├── HwEncoderPoll │ │ │ └── HwEncoderPoll.ino │ │ ├── SwEncoderCallback │ │ │ └── SwEncoderCallback.ino │ │ └── SwEncoderPoll │ │ │ └── SwEncoderPoll.ino │ ├── keywords.txt │ └── library.properties ├── SPI │ ├── SPI.cpp │ ├── SPI.h │ ├── SPI_nrf52832.cpp │ ├── examples │ │ ├── BarometricPressureSensor │ │ │ └── BarometricPressureSensor.ino │ │ └── DigitalPotControl │ │ │ └── DigitalPotControl.ino │ ├── keywords.txt │ └── library.properties ├── Servo │ ├── README.adoc │ ├── examples │ │ ├── Knob │ │ │ └── Knob.ino │ │ └── Sweep │ │ │ └── Sweep.ino │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── Servo.h │ │ └── nrf52 │ │ ├── Servo.cpp │ │ └── ServoTimers.h ├── Sockets │ ├── README.adoc │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── UdpSocket.cpp │ │ ├── UdpSocket.h │ │ ├── ringbuf.c │ │ └── ringbuf.h ├── SoftwareSerial │ ├── SoftwareSerial.cpp │ ├── SoftwareSerial.h │ ├── examples │ │ ├── SoftwareSerialExample │ │ │ └── SoftwareSerialExample.ino │ │ └── TwoPortReceive │ │ │ └── TwoPortReceive.ino │ ├── keywords.txt │ └── library.properties └── Wire │ ├── Wire.h │ ├── Wire_nRF52.cpp │ ├── examples │ ├── SFRRanger_reader │ │ └── SFRRanger_reader.ino │ ├── digital_potentiometer │ │ └── digital_potentiometer.ino │ ├── main_reader │ │ └── main_reader.ino │ ├── main_scan │ │ └── main_scan.ino │ ├── main_writer │ │ └── main_writer.ino │ ├── secondary_receiver │ │ └── secondary_receiver.ino │ └── secondary_sender │ │ └── secondary_sender.ino │ ├── keywords.txt │ └── library.properties ├── platform.txt ├── programmers.txt ├── tools ├── adafruit-nrfutil │ ├── macos │ │ └── adafruit-nrfutil │ └── win32 │ │ └── adafruit-nrfutil.exe ├── build_all.py ├── midi_tests │ ├── README.md │ ├── package.json │ ├── rx.js │ ├── rx_arduino │ │ └── rx_arduino.ino │ ├── tx.js │ └── tx_arduino │ │ └── tx_arduino.ino ├── pynrfbintool │ ├── nrfbintool.c │ ├── pynrfbintool.py │ └── readme.md ├── uf2conv │ ├── LICENSE.txt │ ├── README.md │ └── uf2conv.py └── update_bootloader.py └── variants ├── circuitplayground_nrf52840 ├── variant.cpp └── variant.h ├── clue_nrf52840 ├── variant.cpp └── variant.h ├── feather_nrf52840_express ├── variant.cpp └── variant.h ├── feather_nrf52840_sense ├── variant.cpp └── variant.h ├── itsybitsy_nrf52840_express ├── variant.cpp └── variant.h ├── metro_nrf52840_express ├── variant.cpp └── variant.h ├── particle_xenon ├── variant.cpp └── variant.h ├── pca10056 ├── variant.cpp └── variant.h └── raytac_mdbt50q_rx ├── variant.cpp └── variant.h /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/githubci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/.github/workflows/githubci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/update_package_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/.github/workflows/update_package_list.py -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/.gitmodules -------------------------------------------------------------------------------- /BlueFruit_nRF52.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/BlueFruit_nRF52.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/README.md -------------------------------------------------------------------------------- /boards.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/boards.txt -------------------------------------------------------------------------------- /bootloader/pca10056/pca10056_bootloader-0.6.1_s140_7.0.1.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/bootloader/pca10056/pca10056_bootloader-0.6.1_s140_7.0.1.hex -------------------------------------------------------------------------------- /bootloader/pca10056/pca10056_bootloader-0.6.1_s140_7.0.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/bootloader/pca10056/pca10056_bootloader-0.6.1_s140_7.0.1.zip -------------------------------------------------------------------------------- /bootloader/pca10056/update-pca10056_bootloader-0.6.1_nosd.uf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/bootloader/pca10056/update-pca10056_bootloader-0.6.1_nosd.uf2 -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/changelog.md -------------------------------------------------------------------------------- /cores/nRF5/Arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/Arduino.h -------------------------------------------------------------------------------- /cores/nRF5/Client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/Client.h -------------------------------------------------------------------------------- /cores/nRF5/HardwarePWM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/HardwarePWM.cpp -------------------------------------------------------------------------------- /cores/nRF5/HardwarePWM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/HardwarePWM.h -------------------------------------------------------------------------------- /cores/nRF5/HardwareSerial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/HardwareSerial.h -------------------------------------------------------------------------------- /cores/nRF5/IPAddress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/IPAddress.cpp -------------------------------------------------------------------------------- /cores/nRF5/IPAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/IPAddress.h -------------------------------------------------------------------------------- /cores/nRF5/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/Print.cpp -------------------------------------------------------------------------------- /cores/nRF5/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/Print.h -------------------------------------------------------------------------------- /cores/nRF5/Printable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/Printable.h -------------------------------------------------------------------------------- /cores/nRF5/RingBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/RingBuffer.cpp -------------------------------------------------------------------------------- /cores/nRF5/RingBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/RingBuffer.h -------------------------------------------------------------------------------- /cores/nRF5/Server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/Server.h -------------------------------------------------------------------------------- /cores/nRF5/Stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/Stream.cpp -------------------------------------------------------------------------------- /cores/nRF5/Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/Stream.h -------------------------------------------------------------------------------- /cores/nRF5/Tone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/Tone.cpp -------------------------------------------------------------------------------- /cores/nRF5/Tone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/Tone.h -------------------------------------------------------------------------------- /cores/nRF5/Uart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/Uart.cpp -------------------------------------------------------------------------------- /cores/nRF5/Uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/Uart.h -------------------------------------------------------------------------------- /cores/nRF5/Udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/Udp.h -------------------------------------------------------------------------------- /cores/nRF5/WCharacter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/WCharacter.h -------------------------------------------------------------------------------- /cores/nRF5/WInterrupts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/WInterrupts.c -------------------------------------------------------------------------------- /cores/nRF5/WInterrupts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/WInterrupts.h -------------------------------------------------------------------------------- /cores/nRF5/WMath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/WMath.cpp -------------------------------------------------------------------------------- /cores/nRF5/WMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/WMath.h -------------------------------------------------------------------------------- /cores/nRF5/WString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/WString.cpp -------------------------------------------------------------------------------- /cores/nRF5/WString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/WString.h -------------------------------------------------------------------------------- /cores/nRF5/WVariant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/WVariant.h -------------------------------------------------------------------------------- /cores/nRF5/abi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/abi.cpp -------------------------------------------------------------------------------- /cores/nRF5/avr/dtostrf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/avr/dtostrf.c -------------------------------------------------------------------------------- /cores/nRF5/avr/dtostrf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/avr/dtostrf.h -------------------------------------------------------------------------------- /cores/nRF5/avr/interrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/avr/interrupt.h -------------------------------------------------------------------------------- /cores/nRF5/avr/pgmspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/avr/pgmspace.h -------------------------------------------------------------------------------- /cores/nRF5/binary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/binary.h -------------------------------------------------------------------------------- /cores/nRF5/common_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/common_func.h -------------------------------------------------------------------------------- /cores/nRF5/common_inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/common_inc.h -------------------------------------------------------------------------------- /cores/nRF5/delay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/delay.c -------------------------------------------------------------------------------- /cores/nRF5/delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/delay.h -------------------------------------------------------------------------------- /cores/nRF5/freertos/License/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/freertos/License/license.txt -------------------------------------------------------------------------------- /cores/nRF5/freertos/Source/croutine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/freertos/Source/croutine.c -------------------------------------------------------------------------------- /cores/nRF5/freertos/Source/event_groups.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/freertos/Source/event_groups.c -------------------------------------------------------------------------------- /cores/nRF5/freertos/Source/include/FreeRTOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/freertos/Source/include/FreeRTOS.h -------------------------------------------------------------------------------- /cores/nRF5/freertos/Source/include/StackMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/freertos/Source/include/StackMacros.h -------------------------------------------------------------------------------- /cores/nRF5/freertos/Source/include/croutine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/freertos/Source/include/croutine.h -------------------------------------------------------------------------------- /cores/nRF5/freertos/Source/include/deprecated_definitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/freertos/Source/include/deprecated_definitions.h -------------------------------------------------------------------------------- /cores/nRF5/freertos/Source/include/event_groups.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/freertos/Source/include/event_groups.h -------------------------------------------------------------------------------- /cores/nRF5/freertos/Source/include/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/freertos/Source/include/list.h -------------------------------------------------------------------------------- /cores/nRF5/freertos/Source/include/message_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/freertos/Source/include/message_buffer.h -------------------------------------------------------------------------------- /cores/nRF5/freertos/Source/include/mpu_prototypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/freertos/Source/include/mpu_prototypes.h -------------------------------------------------------------------------------- /cores/nRF5/freertos/Source/include/mpu_wrappers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/freertos/Source/include/mpu_wrappers.h -------------------------------------------------------------------------------- /cores/nRF5/freertos/Source/include/portable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/freertos/Source/include/portable.h -------------------------------------------------------------------------------- /cores/nRF5/freertos/Source/include/projdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/freertos/Source/include/projdefs.h -------------------------------------------------------------------------------- /cores/nRF5/freertos/Source/include/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/freertos/Source/include/queue.h -------------------------------------------------------------------------------- /cores/nRF5/freertos/Source/include/semphr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/freertos/Source/include/semphr.h -------------------------------------------------------------------------------- /cores/nRF5/freertos/Source/include/stack_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/freertos/Source/include/stack_macros.h -------------------------------------------------------------------------------- /cores/nRF5/freertos/Source/include/stdint.readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/freertos/Source/include/stdint.readme -------------------------------------------------------------------------------- /cores/nRF5/freertos/Source/include/stream_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/freertos/Source/include/stream_buffer.h -------------------------------------------------------------------------------- /cores/nRF5/freertos/Source/include/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/freertos/Source/include/task.h -------------------------------------------------------------------------------- /cores/nRF5/freertos/Source/include/timers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/freertos/Source/include/timers.h -------------------------------------------------------------------------------- /cores/nRF5/freertos/Source/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/freertos/Source/list.c -------------------------------------------------------------------------------- /cores/nRF5/freertos/Source/portable/MemMang/heap_3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/freertos/Source/portable/MemMang/heap_3.c -------------------------------------------------------------------------------- /cores/nRF5/freertos/Source/portable/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/freertos/Source/portable/readme.txt -------------------------------------------------------------------------------- /cores/nRF5/freertos/Source/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/freertos/Source/queue.c -------------------------------------------------------------------------------- /cores/nRF5/freertos/Source/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/freertos/Source/readme.txt -------------------------------------------------------------------------------- /cores/nRF5/freertos/Source/stream_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/freertos/Source/stream_buffer.c -------------------------------------------------------------------------------- /cores/nRF5/freertos/Source/tasks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/freertos/Source/tasks.c -------------------------------------------------------------------------------- /cores/nRF5/freertos/Source/timers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/freertos/Source/timers.c -------------------------------------------------------------------------------- /cores/nRF5/freertos/config/FreeRTOSConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/freertos/config/FreeRTOSConfig.h -------------------------------------------------------------------------------- /cores/nRF5/freertos/portable/CMSIS/nrf52/port_cmsis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/freertos/portable/CMSIS/nrf52/port_cmsis.c -------------------------------------------------------------------------------- /cores/nRF5/freertos/portable/CMSIS/nrf52/port_cmsis_systick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/freertos/portable/CMSIS/nrf52/port_cmsis_systick.c -------------------------------------------------------------------------------- /cores/nRF5/freertos/portable/CMSIS/nrf52/portmacro_cmsis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/freertos/portable/CMSIS/nrf52/portmacro_cmsis.h -------------------------------------------------------------------------------- /cores/nRF5/freertos/portable/GCC/nrf52/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/freertos/portable/GCC/nrf52/port.c -------------------------------------------------------------------------------- /cores/nRF5/freertos/portable/GCC/nrf52/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/freertos/portable/GCC/nrf52/portmacro.h -------------------------------------------------------------------------------- /cores/nRF5/freertos/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/freertos/readme.txt -------------------------------------------------------------------------------- /cores/nRF5/hooks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/hooks.c -------------------------------------------------------------------------------- /cores/nRF5/itoa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/itoa.c -------------------------------------------------------------------------------- /cores/nRF5/itoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/itoa.h -------------------------------------------------------------------------------- /cores/nRF5/linker/gcc_startup_nrf52840.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/linker/gcc_startup_nrf52840.S -------------------------------------------------------------------------------- /cores/nRF5/linker/nrf52840_s140_v7.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/linker/nrf52840_s140_v7.ld -------------------------------------------------------------------------------- /cores/nRF5/linker/nrf52_common.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/linker/nrf52_common.ld -------------------------------------------------------------------------------- /cores/nRF5/linker/system_nrf52840.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/linker/system_nrf52840.c -------------------------------------------------------------------------------- /cores/nRF5/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/main.cpp -------------------------------------------------------------------------------- /cores/nRF5/new.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/new.cpp -------------------------------------------------------------------------------- /cores/nRF5/nordic/components/libraries/log/nrf_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/components/libraries/log/nrf_log.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/components/libraries/log/nrf_log_instance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/components/libraries/log/nrf_log_instance.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/components/libraries/log/nrf_log_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/components/libraries/log/nrf_log_types.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/components/libraries/strerror/nrf_strerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/components/libraries/strerror/nrf_strerror.c -------------------------------------------------------------------------------- /cores/nRF5/nordic/components/libraries/strerror/nrf_strerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/components/libraries/strerror/nrf_strerror.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/components/libraries/util/app_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/components/libraries/util/app_error.c -------------------------------------------------------------------------------- /cores/nRF5/nordic/components/libraries/util/app_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/components/libraries/util/app_error.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/components/libraries/util/app_error_weak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/components/libraries/util/app_error_weak.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/components/libraries/util/app_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/components/libraries/util/app_util.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/components/libraries/util/app_util_bds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/components/libraries/util/app_util_bds.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/components/libraries/util/app_util_platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/components/libraries/util/app_util_platform.c -------------------------------------------------------------------------------- /cores/nRF5/nordic/components/libraries/util/app_util_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/components/libraries/util/app_util_platform.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/components/libraries/util/nordic_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/components/libraries/util/nordic_common.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/components/libraries/util/nrf_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/components/libraries/util/nrf_assert.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/components/libraries/util/nrf_bitmask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/components/libraries/util/nrf_bitmask.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/components/libraries/util/sdk_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/components/libraries/util/sdk_common.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/components/libraries/util/sdk_errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/components/libraries/util/sdk_errors.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/components/libraries/util/sdk_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/components/libraries/util/sdk_macros.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/components/libraries/util/sdk_os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/components/libraries/util/sdk_os.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/components/libraries/util/sdk_resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/components/libraries/util/sdk_resources.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/config/nrf52840/config/sdk_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/config/nrf52840/config/sdk_config.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/external/nrf_security/config/nrf-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/external/nrf_security/config/nrf-config.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/external/nrf_security/include/mbedtls/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/external/nrf_security/include/mbedtls/aes.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/external/nrf_security/include/mbedtls/aesni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/external/nrf_security/include/mbedtls/aesni.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/external/nrf_security/include/mbedtls/arc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/external/nrf_security/include/mbedtls/arc4.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/external/nrf_security/include/mbedtls/aria.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/external/nrf_security/include/mbedtls/aria.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/external/nrf_security/include/mbedtls/asn1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/external/nrf_security/include/mbedtls/asn1.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/external/nrf_security/include/mbedtls/ccm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/external/nrf_security/include/mbedtls/ccm.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/external/nrf_security/include/mbedtls/certs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/external/nrf_security/include/mbedtls/certs.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/external/nrf_security/include/mbedtls/cmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/external/nrf_security/include/mbedtls/cmac.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/external/nrf_security/include/mbedtls/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/external/nrf_security/include/mbedtls/debug.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/external/nrf_security/include/mbedtls/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/external/nrf_security/include/mbedtls/des.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/external/nrf_security/include/mbedtls/dhm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/external/nrf_security/include/mbedtls/dhm.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/external/nrf_security/include/mbedtls/ecdh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/external/nrf_security/include/mbedtls/ecdh.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/external/nrf_security/include/mbedtls/ecdsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/external/nrf_security/include/mbedtls/ecdsa.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/external/nrf_security/include/mbedtls/ecp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/external/nrf_security/include/mbedtls/ecp.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/external/nrf_security/include/mbedtls/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/external/nrf_security/include/mbedtls/error.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/external/nrf_security/include/mbedtls/gcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/external/nrf_security/include/mbedtls/gcm.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/external/nrf_security/include/mbedtls/hkdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/external/nrf_security/include/mbedtls/hkdf.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/external/nrf_security/include/mbedtls/md.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/external/nrf_security/include/mbedtls/md.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/external/nrf_security/include/mbedtls/md2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/external/nrf_security/include/mbedtls/md2.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/external/nrf_security/include/mbedtls/md4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/external/nrf_security/include/mbedtls/md4.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/external/nrf_security/include/mbedtls/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/external/nrf_security/include/mbedtls/md5.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/external/nrf_security/include/mbedtls/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/external/nrf_security/include/mbedtls/net.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/external/nrf_security/include/mbedtls/oid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/external/nrf_security/include/mbedtls/oid.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/external/nrf_security/include/mbedtls/pem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/external/nrf_security/include/mbedtls/pem.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/external/nrf_security/include/mbedtls/pk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/external/nrf_security/include/mbedtls/pk.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/external/nrf_security/include/mbedtls/pkcs5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/external/nrf_security/include/mbedtls/pkcs5.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/external/nrf_security/include/mbedtls/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/external/nrf_security/include/mbedtls/rsa.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/external/nrf_security/include/mbedtls/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/external/nrf_security/include/mbedtls/sha1.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/external/nrf_security/include/mbedtls/ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/external/nrf_security/include/mbedtls/ssl.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/external/nrf_security/include/mbedtls/x509.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/external/nrf_security/include/mbedtls/x509.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/external/nrf_security/include/mbedtls/xtea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/external/nrf_security/include/mbedtls/xtea.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/external/openthread/include/config/coap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/external/openthread/include/config/coap.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/external/openthread/include/config/diag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/external/openthread/include/config/diag.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/external/openthread/include/config/ip6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/external/openthread/include/config/ip6.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/external/openthread/include/config/joiner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/external/openthread/include/config/joiner.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/external/openthread/include/config/link_raw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/external/openthread/include/config/link_raw.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/external/openthread/include/config/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/external/openthread/include/config/logging.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/external/openthread/include/config/mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/external/openthread/include/config/mac.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/external/openthread/include/config/mle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/external/openthread/include/config/mle.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/external/openthread/include/config/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/external/openthread/include/config/platform.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/external/openthread/include/config/tmf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/external/openthread/include/config/tmf.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/external/openthread/include/openthread/cli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/external/openthread/include/openthread/cli.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/external/openthread/include/openthread/coap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/external/openthread/include/openthread/coap.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/external/openthread/include/openthread/diag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/external/openthread/include/openthread/diag.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/external/openthread/include/openthread/dns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/external/openthread/include/openthread/dns.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/external/openthread/include/openthread/heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/external/openthread/include/openthread/heap.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/external/openthread/include/openthread/ip6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/external/openthread/include/openthread/ip6.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/external/openthread/include/openthread/link.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/external/openthread/include/openthread/link.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/external/openthread/include/openthread/ncp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/external/openthread/include/openthread/ncp.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/external/openthread/include/openthread/sntp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/external/openthread/include/openthread/sntp.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/external/openthread/include/openthread/udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/external/openthread/include/openthread/udp.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/external/openthread/include/spinel/spinel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/external/openthread/include/spinel/spinel.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/CHANGELOG.md -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/LICENSE -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/README.md -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/include/nrf_bitmask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/include/nrf_bitmask.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/include/nrfx_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/include/nrfx_adc.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/include/nrfx_clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/include/nrfx_clock.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/include/nrfx_comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/include/nrfx_comp.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/include/nrfx_dppi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/include/nrfx_dppi.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/include/nrfx_egu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/include/nrfx_egu.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/include/nrfx_gpiote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/include/nrfx_gpiote.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/include/nrfx_i2s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/include/nrfx_i2s.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/include/nrfx_ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/include/nrfx_ipc.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/include/nrfx_lpcomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/include/nrfx_lpcomp.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/include/nrfx_nfct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/include/nrfx_nfct.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/include/nrfx_nvmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/include/nrfx_nvmc.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/include/nrfx_pdm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/include/nrfx_pdm.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/include/nrfx_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/include/nrfx_power.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/include/nrfx_power_clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/include/nrfx_power_clock.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/include/nrfx_power_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/include/nrfx_power_compat.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/include/nrfx_ppi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/include/nrfx_ppi.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/include/nrfx_pwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/include/nrfx_pwm.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/include/nrfx_qdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/include/nrfx_qdec.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/include/nrfx_qspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/include/nrfx_qspi.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/include/nrfx_rng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/include/nrfx_rng.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/include/nrfx_rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/include/nrfx_rtc.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/include/nrfx_saadc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/include/nrfx_saadc.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/include/nrfx_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/include/nrfx_spi.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/include/nrfx_spim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/include/nrfx_spim.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/include/nrfx_spis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/include/nrfx_spis.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/include/nrfx_systick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/include/nrfx_systick.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/include/nrfx_temp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/include/nrfx_temp.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/include/nrfx_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/include/nrfx_timer.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/include/nrfx_twi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/include/nrfx_twi.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/include/nrfx_twi_twim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/include/nrfx_twi_twim.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/include/nrfx_twim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/include/nrfx_twim.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/include/nrfx_twis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/include/nrfx_twis.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/include/nrfx_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/include/nrfx_uart.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/include/nrfx_uarte.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/include/nrfx_uarte.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/include/nrfx_usbd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/include/nrfx_usbd.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/include/nrfx_usbreg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/include/nrfx_usbreg.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/include/nrfx_wdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/include/nrfx_wdt.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/nrfx_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/nrfx_common.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/nrfx_errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/nrfx_errors.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/src/nrfx_adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/src/nrfx_adc.c -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/src/nrfx_clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/src/nrfx_clock.c -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/src/nrfx_comp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/src/nrfx_comp.c -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/src/nrfx_dppi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/src/nrfx_dppi.c -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/src/nrfx_egu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/src/nrfx_egu.c -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/src/nrfx_gpiote.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/src/nrfx_gpiote.c -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/src/nrfx_i2s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/src/nrfx_i2s.c -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/src/nrfx_ipc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/src/nrfx_ipc.c -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/src/nrfx_lpcomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/src/nrfx_lpcomp.c -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/src/nrfx_nfct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/src/nrfx_nfct.c -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/src/nrfx_nvmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/src/nrfx_nvmc.c -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/src/nrfx_pdm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/src/nrfx_pdm.c -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/src/nrfx_power.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/src/nrfx_power.c -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/src/nrfx_ppi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/src/nrfx_ppi.c -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/src/nrfx_pwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/src/nrfx_pwm.c -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/src/nrfx_qdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/src/nrfx_qdec.c -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/src/nrfx_qspi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/src/nrfx_qspi.c -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/src/nrfx_rng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/src/nrfx_rng.c -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/src/nrfx_rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/src/nrfx_rtc.c -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/src/nrfx_saadc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/src/nrfx_saadc.c -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/src/nrfx_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/src/nrfx_spi.c -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/src/nrfx_spim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/src/nrfx_spim.c -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/src/nrfx_spis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/src/nrfx_spis.c -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/src/nrfx_systick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/src/nrfx_systick.c -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/src/nrfx_temp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/src/nrfx_temp.c -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/src/nrfx_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/src/nrfx_timer.c -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/src/nrfx_twi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/src/nrfx_twi.c -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/src/nrfx_twi_twim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/src/nrfx_twi_twim.c -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/src/nrfx_twim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/src/nrfx_twim.c -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/src/nrfx_twis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/src/nrfx_twis.c -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/src/nrfx_uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/src/nrfx_uart.c -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/src/nrfx_uarte.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/src/nrfx_uarte.c -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/src/nrfx_usbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/src/nrfx_usbd.c -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/src/nrfx_usbd_errata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/src/nrfx_usbd_errata.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/src/nrfx_usbreg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/src/nrfx_usbreg.c -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/src/nrfx_wdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/src/nrfx_wdt.c -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/src/prs/nrfx_prs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/src/prs/nrfx_prs.c -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/drivers/src/prs/nrfx_prs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/drivers/src/prs/nrfx_prs.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_aar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_aar.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_acl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_acl.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_adc.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_bprot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_bprot.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_cache.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_ccm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_ccm.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_clock.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_comp.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_dcnf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_dcnf.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_dppi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_dppi.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_ecb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_ecb.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_egu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_egu.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_ficr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_ficr.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_fpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_fpu.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_gpio.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_gpiote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_gpiote.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_i2s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_i2s.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_ipc.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_kmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_kmu.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_lpcomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_lpcomp.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_mpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_mpu.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_mutex.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_mwu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_mwu.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_nfct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_nfct.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_nvmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_nvmc.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_oscillators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_oscillators.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_pdm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_pdm.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_power.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_ppi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_ppi.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_pwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_pwm.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_qdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_qdec.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_qspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_qspi.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_radio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_radio.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_regulators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_regulators.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_reset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_reset.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_rng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_rng.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_rtc.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_saadc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_saadc.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_spi.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_spim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_spim.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_spis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_spis.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_spu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_spu.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_systick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_systick.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_temp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_temp.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_timer.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_twi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_twi.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_twim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_twim.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_twis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_twis.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_uart.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_uarte.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_uarte.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_usbd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_usbd.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_usbreg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_usbreg.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_vmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_vmc.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_vreqctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_vreqctrl.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/hal/nrf_wdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/hal/nrf_wdt.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/helpers/nrfx_gppi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/helpers/nrfx_gppi.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/legacy/apply_old_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/legacy/apply_old_config.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/legacy/nrf_drv_clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/legacy/nrf_drv_clock.c -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/legacy/nrf_drv_clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/legacy/nrf_drv_clock.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/compiler_abstraction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/compiler_abstraction.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf51.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf51.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf51.svd -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf51422_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf51422_peripherals.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf51801_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf51801_peripherals.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf51802_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf51802_peripherals.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf51822_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf51822_peripherals.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf51824_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf51824_peripherals.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf51_bitfields.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf51_bitfields.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf51_common.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf51_common.ld -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf51_deprecated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf51_deprecated.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf51_erratas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf51_erratas.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf51_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf51_peripherals.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf51_to_nrf52.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf51_to_nrf52.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf51_to_nrf52810.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf51_to_nrf52810.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf51_to_nrf52840.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf51_to_nrf52840.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf51_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf51_xxaa.ld -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf51_xxab.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf51_xxab.ld -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf51_xxac.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf51_xxac.ld -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf52.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf52.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf52.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf52.svd -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf52805.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf52805.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf52805.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf52805.svd -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf52805_bitfields.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf52805_bitfields.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf52805_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf52805_peripherals.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf52805_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf52805_xxaa.ld -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf52810.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf52810.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf52810.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf52810.svd -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf52810_bitfields.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf52810_bitfields.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf52810_name_change.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf52810_name_change.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf52810_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf52810_peripherals.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf52810_to_nrf52811.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf52810_to_nrf52811.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf52810_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf52810_xxaa.ld -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf52811.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf52811.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf52811.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf52811.svd -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf52811_bitfields.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf52811_bitfields.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf52811_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf52811_peripherals.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf52811_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf52811_xxaa.ld -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf52832_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf52832_peripherals.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf52832_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf52832_xxaa.ld -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf52832_xxab.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf52832_xxab.ld -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf52833.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf52833.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf52833.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf52833.svd -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf52833_bitfields.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf52833_bitfields.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf52833_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf52833_peripherals.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf52833_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf52833_xxaa.ld -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf52840.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf52840.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf52840.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf52840.svd -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf52840_bitfields.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf52840_bitfields.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf52840_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf52840_peripherals.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf52840_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf52840_xxaa.ld -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf52_bitfields.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf52_bitfields.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf52_common.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf52_common.ld -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf52_erratas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf52_erratas.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf52_name_change.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf52_name_change.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf52_to_nrf52810.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf52_to_nrf52810.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf52_to_nrf52833.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf52_to_nrf52833.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf52_to_nrf52840.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf52_to_nrf52840.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf52_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf52_xxaa.ld -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf5340_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf5340_application.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf5340_application.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf5340_application.svd -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf5340_application_bitfields.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf5340_application_bitfields.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf5340_application_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf5340_application_peripherals.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf5340_network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf5340_network.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf5340_network.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf5340_network.svd -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf5340_network_bitfields.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf5340_network_bitfields.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf5340_network_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf5340_network_peripherals.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf5340_xxaa_application.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf5340_xxaa_application.ld -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf5340_xxaa_network.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf5340_xxaa_network.ld -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf53_erratas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf53_erratas.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf9160.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf9160.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf9160.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf9160.svd -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf9160_bitfields.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf9160_bitfields.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf9160_name_change.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf9160_name_change.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf9160_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf9160_peripherals.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf9160_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf9160_xxaa.ld -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf91_erratas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf91_erratas.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf_common.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf_common.ld -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf_erratas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf_erratas.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/nrf_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/nrf_peripherals.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/system_nrf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/system_nrf.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/system_nrf51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/system_nrf51.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/system_nrf52.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/system_nrf52.c -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/system_nrf52.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/system_nrf52.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/system_nrf52805.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/system_nrf52805.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/system_nrf52810.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/system_nrf52810.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/system_nrf52811.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/system_nrf52811.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/system_nrf52833.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/system_nrf52833.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/system_nrf52840.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/system_nrf52840.c -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/system_nrf52840.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/system_nrf52840.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/system_nrf5340_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/system_nrf5340_application.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/system_nrf5340_network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/system_nrf5340_network.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/mdk/system_nrf9160.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/mdk/system_nrf9160.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/nrfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/nrfx.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/soc/nrfx_atomic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/soc/nrfx_atomic.c -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/soc/nrfx_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/soc/nrfx_atomic.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/soc/nrfx_atomic_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/soc/nrfx_atomic_internal.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/soc/nrfx_coredep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/soc/nrfx_coredep.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/soc/nrfx_irqs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/soc/nrfx_irqs.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/soc/nrfx_irqs_nrf51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/soc/nrfx_irqs_nrf51.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/soc/nrfx_irqs_nrf52810.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/soc/nrfx_irqs_nrf52810.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/soc/nrfx_irqs_nrf52811.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/soc/nrfx_irqs_nrf52811.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/soc/nrfx_irqs_nrf52832.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/soc/nrfx_irqs_nrf52832.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/soc/nrfx_irqs_nrf52833.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/soc/nrfx_irqs_nrf52833.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/soc/nrfx_irqs_nrf52840.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/soc/nrfx_irqs_nrf52840.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/soc/nrfx_irqs_nrf5340_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/soc/nrfx_irqs_nrf5340_application.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/soc/nrfx_irqs_nrf5340_network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/soc/nrfx_irqs_nrf5340_network.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx/soc/nrfx_irqs_nrf9160.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx/soc/nrfx_irqs_nrf9160.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx_config.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx_glue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx_glue.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/nrfx_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/nrfx_log.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/softdevice/common/nrf_sdh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/softdevice/common/nrf_sdh.c -------------------------------------------------------------------------------- /cores/nRF5/nordic/softdevice/common/nrf_sdh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/softdevice/common/nrf_sdh.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/softdevice/common/nrf_sdh_ant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/softdevice/common/nrf_sdh_ant.c -------------------------------------------------------------------------------- /cores/nRF5/nordic/softdevice/common/nrf_sdh_ant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/softdevice/common/nrf_sdh_ant.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/softdevice/common/nrf_sdh_ble.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/softdevice/common/nrf_sdh_ble.c -------------------------------------------------------------------------------- /cores/nRF5/nordic/softdevice/common/nrf_sdh_ble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/softdevice/common/nrf_sdh_ble.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/softdevice/common/nrf_sdh_freertos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/softdevice/common/nrf_sdh_freertos.c -------------------------------------------------------------------------------- /cores/nRF5/nordic/softdevice/common/nrf_sdh_freertos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/softdevice/common/nrf_sdh_freertos.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/softdevice/common/nrf_sdh_soc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/softdevice/common/nrf_sdh_soc.c -------------------------------------------------------------------------------- /cores/nRF5/nordic/softdevice/common/nrf_sdh_soc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/softdevice/common/nrf_sdh_soc.h -------------------------------------------------------------------------------- /cores/nRF5/nordic/softdevice/s140_nrf52_7.0.1_API/include/ble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nordic/softdevice/s140_nrf52_7.0.1_API/include/ble.h -------------------------------------------------------------------------------- /cores/nRF5/nrf_log_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/nrf_log_internal.h -------------------------------------------------------------------------------- /cores/nRF5/pins_arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/pins_arduino.h -------------------------------------------------------------------------------- /cores/nRF5/pulse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/pulse.c -------------------------------------------------------------------------------- /cores/nRF5/pulse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/pulse.h -------------------------------------------------------------------------------- /cores/nRF5/pulse_asm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/pulse_asm.S -------------------------------------------------------------------------------- /cores/nRF5/rtos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/rtos.cpp -------------------------------------------------------------------------------- /cores/nRF5/rtos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/rtos.h -------------------------------------------------------------------------------- /cores/nRF5/sysview/Config/Global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/sysview/Config/Global.h -------------------------------------------------------------------------------- /cores/nRF5/sysview/Config/SEGGER_RTT_Conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/sysview/Config/SEGGER_RTT_Conf.h -------------------------------------------------------------------------------- /cores/nRF5/sysview/Config/SEGGER_SYSVIEW_Conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/sysview/Config/SEGGER_SYSVIEW_Conf.h -------------------------------------------------------------------------------- /cores/nRF5/sysview/Config/SEGGER_SYSVIEW_Config_FreeRTOS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/sysview/Config/SEGGER_SYSVIEW_Config_FreeRTOS.c -------------------------------------------------------------------------------- /cores/nRF5/sysview/SEGGER/SEGGER.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/sysview/SEGGER/SEGGER.h -------------------------------------------------------------------------------- /cores/nRF5/sysview/SEGGER/SEGGER_RTT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/sysview/SEGGER/SEGGER_RTT.c -------------------------------------------------------------------------------- /cores/nRF5/sysview/SEGGER/SEGGER_RTT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/sysview/SEGGER/SEGGER_RTT.h -------------------------------------------------------------------------------- /cores/nRF5/sysview/SEGGER/SEGGER_RTT_ASM_ARMv7M.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/sysview/SEGGER/SEGGER_RTT_ASM_ARMv7M.S -------------------------------------------------------------------------------- /cores/nRF5/sysview/SEGGER/SEGGER_RTT_printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/sysview/SEGGER/SEGGER_RTT_printf.c -------------------------------------------------------------------------------- /cores/nRF5/sysview/SEGGER/SEGGER_SYSVIEW.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/sysview/SEGGER/SEGGER_SYSVIEW.c -------------------------------------------------------------------------------- /cores/nRF5/sysview/SEGGER/SEGGER_SYSVIEW.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/sysview/SEGGER/SEGGER_SYSVIEW.h -------------------------------------------------------------------------------- /cores/nRF5/sysview/SEGGER/SEGGER_SYSVIEW_ConfDefaults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/sysview/SEGGER/SEGGER_SYSVIEW_ConfDefaults.h -------------------------------------------------------------------------------- /cores/nRF5/sysview/SEGGER/SEGGER_SYSVIEW_Int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/sysview/SEGGER/SEGGER_SYSVIEW_Int.h -------------------------------------------------------------------------------- /cores/nRF5/sysview/SEGGER_SYSVIEW_FreeRTOS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/sysview/SEGGER_SYSVIEW_FreeRTOS.c -------------------------------------------------------------------------------- /cores/nRF5/sysview/SEGGER_SYSVIEW_FreeRTOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/sysview/SEGGER_SYSVIEW_FreeRTOS.h -------------------------------------------------------------------------------- /cores/nRF5/utility/AdaCallback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/utility/AdaCallback.c -------------------------------------------------------------------------------- /cores/nRF5/utility/AdaCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/utility/AdaCallback.h -------------------------------------------------------------------------------- /cores/nRF5/utility/SoftwareTimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/utility/SoftwareTimer.cpp -------------------------------------------------------------------------------- /cores/nRF5/utility/SoftwareTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/utility/SoftwareTimer.h -------------------------------------------------------------------------------- /cores/nRF5/utility/TimeoutTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/utility/TimeoutTimer.h -------------------------------------------------------------------------------- /cores/nRF5/utility/adafruit_fifo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/utility/adafruit_fifo.cpp -------------------------------------------------------------------------------- /cores/nRF5/utility/adafruit_fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/utility/adafruit_fifo.h -------------------------------------------------------------------------------- /cores/nRF5/utility/debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/utility/debug.cpp -------------------------------------------------------------------------------- /cores/nRF5/utility/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/utility/debug.h -------------------------------------------------------------------------------- /cores/nRF5/utility/utilities.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/utility/utilities.c -------------------------------------------------------------------------------- /cores/nRF5/utility/utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/utility/utilities.h -------------------------------------------------------------------------------- /cores/nRF5/verify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/verify.h -------------------------------------------------------------------------------- /cores/nRF5/wiring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/wiring.c -------------------------------------------------------------------------------- /cores/nRF5/wiring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/wiring.h -------------------------------------------------------------------------------- /cores/nRF5/wiring_analog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/wiring_analog.cpp -------------------------------------------------------------------------------- /cores/nRF5/wiring_analog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/wiring_analog.h -------------------------------------------------------------------------------- /cores/nRF5/wiring_analog_nRF52.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/wiring_analog_nRF52.c -------------------------------------------------------------------------------- /cores/nRF5/wiring_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/wiring_constants.h -------------------------------------------------------------------------------- /cores/nRF5/wiring_digital.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/wiring_digital.c -------------------------------------------------------------------------------- /cores/nRF5/wiring_digital.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/wiring_digital.h -------------------------------------------------------------------------------- /cores/nRF5/wiring_private.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/wiring_private.c -------------------------------------------------------------------------------- /cores/nRF5/wiring_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/wiring_private.h -------------------------------------------------------------------------------- /cores/nRF5/wiring_shift.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/wiring_shift.c -------------------------------------------------------------------------------- /cores/nRF5/wiring_shift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/cores/nRF5/wiring_shift.h -------------------------------------------------------------------------------- /keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/keywords.txt -------------------------------------------------------------------------------- /libraries/Adafruit_LittleFS/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Adafruit_LittleFS/library.properties -------------------------------------------------------------------------------- /libraries/Adafruit_LittleFS/src/Adafruit_LittleFS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Adafruit_LittleFS/src/Adafruit_LittleFS.cpp -------------------------------------------------------------------------------- /libraries/Adafruit_LittleFS/src/Adafruit_LittleFS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Adafruit_LittleFS/src/Adafruit_LittleFS.h -------------------------------------------------------------------------------- /libraries/Adafruit_LittleFS/src/Adafruit_LittleFS_File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Adafruit_LittleFS/src/Adafruit_LittleFS_File.cpp -------------------------------------------------------------------------------- /libraries/Adafruit_LittleFS/src/Adafruit_LittleFS_File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Adafruit_LittleFS/src/Adafruit_LittleFS_File.h -------------------------------------------------------------------------------- /libraries/Adafruit_LittleFS/src/littlefs/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Adafruit_LittleFS/src/littlefs/LICENSE.md -------------------------------------------------------------------------------- /libraries/Adafruit_LittleFS/src/littlefs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Adafruit_LittleFS/src/littlefs/README.md -------------------------------------------------------------------------------- /libraries/Adafruit_LittleFS/src/littlefs/lfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Adafruit_LittleFS/src/littlefs/lfs.c -------------------------------------------------------------------------------- /libraries/Adafruit_LittleFS/src/littlefs/lfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Adafruit_LittleFS/src/littlefs/lfs.h -------------------------------------------------------------------------------- /libraries/Adafruit_LittleFS/src/littlefs/lfs_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Adafruit_LittleFS/src/littlefs/lfs_util.c -------------------------------------------------------------------------------- /libraries/Adafruit_LittleFS/src/littlefs/lfs_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Adafruit_LittleFS/src/littlefs/lfs_util.h -------------------------------------------------------------------------------- /libraries/BLEAdafruitService/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/BLEAdafruitService/library.properties -------------------------------------------------------------------------------- /libraries/BLEAdafruitService/src/BLEAdafruitService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/BLEAdafruitService/src/BLEAdafruitService.h -------------------------------------------------------------------------------- /libraries/BLEAdafruitService/src/services/BLEAdafruitAccel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/BLEAdafruitService/src/services/BLEAdafruitAccel.cpp -------------------------------------------------------------------------------- /libraries/BLEAdafruitService/src/services/BLEAdafruitAccel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/BLEAdafruitService/src/services/BLEAdafruitAccel.h -------------------------------------------------------------------------------- /libraries/BLEAdafruitService/src/services/BLEAdafruitBaro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/BLEAdafruitService/src/services/BLEAdafruitBaro.cpp -------------------------------------------------------------------------------- /libraries/BLEAdafruitService/src/services/BLEAdafruitBaro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/BLEAdafruitService/src/services/BLEAdafruitBaro.h -------------------------------------------------------------------------------- /libraries/BLEAdafruitService/src/services/BLEAdafruitButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/BLEAdafruitService/src/services/BLEAdafruitButton.cpp -------------------------------------------------------------------------------- /libraries/BLEAdafruitService/src/services/BLEAdafruitButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/BLEAdafruitService/src/services/BLEAdafruitButton.h -------------------------------------------------------------------------------- /libraries/BLEAdafruitService/src/services/BLEAdafruitColor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/BLEAdafruitService/src/services/BLEAdafruitColor.cpp -------------------------------------------------------------------------------- /libraries/BLEAdafruitService/src/services/BLEAdafruitColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/BLEAdafruitService/src/services/BLEAdafruitColor.h -------------------------------------------------------------------------------- /libraries/BLEAdafruitService/src/services/BLEAdafruitGesture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/BLEAdafruitService/src/services/BLEAdafruitGesture.h -------------------------------------------------------------------------------- /libraries/BLEAdafruitService/src/services/BLEAdafruitGyro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/BLEAdafruitService/src/services/BLEAdafruitGyro.cpp -------------------------------------------------------------------------------- /libraries/BLEAdafruitService/src/services/BLEAdafruitGyro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/BLEAdafruitService/src/services/BLEAdafruitGyro.h -------------------------------------------------------------------------------- /libraries/BLEAdafruitService/src/services/BLEAdafruitHumid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/BLEAdafruitService/src/services/BLEAdafruitHumid.cpp -------------------------------------------------------------------------------- /libraries/BLEAdafruitService/src/services/BLEAdafruitHumid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/BLEAdafruitService/src/services/BLEAdafruitHumid.h -------------------------------------------------------------------------------- /libraries/BLEAdafruitService/src/services/BLEAdafruitMagnetic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/BLEAdafruitService/src/services/BLEAdafruitMagnetic.h -------------------------------------------------------------------------------- /libraries/BLEAdafruitService/src/services/BLEAdafruitSensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/BLEAdafruitService/src/services/BLEAdafruitSensor.cpp -------------------------------------------------------------------------------- /libraries/BLEAdafruitService/src/services/BLEAdafruitSensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/BLEAdafruitService/src/services/BLEAdafruitSensor.h -------------------------------------------------------------------------------- /libraries/BLEAdafruitService/src/services/BLEAdafruitSound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/BLEAdafruitService/src/services/BLEAdafruitSound.cpp -------------------------------------------------------------------------------- /libraries/BLEAdafruitService/src/services/BLEAdafruitSound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/BLEAdafruitService/src/services/BLEAdafruitSound.h -------------------------------------------------------------------------------- /libraries/BLEAdafruitService/src/services/BLEAdafruitTone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/BLEAdafruitService/src/services/BLEAdafruitTone.cpp -------------------------------------------------------------------------------- /libraries/BLEAdafruitService/src/services/BLEAdafruitTone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/BLEAdafruitService/src/services/BLEAdafruitTone.h -------------------------------------------------------------------------------- /libraries/BLEHomekit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/BLEHomekit/README.md -------------------------------------------------------------------------------- /libraries/BLEHomekit/keywords.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/BLEHomekit/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/BLEHomekit/library.properties -------------------------------------------------------------------------------- /libraries/BLEHomekit/src/BLEHomekit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/BLEHomekit/src/BLEHomekit.cpp -------------------------------------------------------------------------------- /libraries/BLEHomekit/src/BLEHomekit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/BLEHomekit/src/BLEHomekit.h -------------------------------------------------------------------------------- /libraries/BLEHomekit/src/HAPCharacteristic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/BLEHomekit/src/HAPCharacteristic.cpp -------------------------------------------------------------------------------- /libraries/BLEHomekit/src/HAPCharacteristic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/BLEHomekit/src/HAPCharacteristic.h -------------------------------------------------------------------------------- /libraries/BLEHomekit/src/HAPProcedure.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/BLEHomekit/src/HAPProcedure.cpp -------------------------------------------------------------------------------- /libraries/BLEHomekit/src/HAPProcedure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/BLEHomekit/src/HAPProcedure.h -------------------------------------------------------------------------------- /libraries/BLEHomekit/src/HAPService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/BLEHomekit/src/HAPService.cpp -------------------------------------------------------------------------------- /libraries/BLEHomekit/src/HAPService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/BLEHomekit/src/HAPService.h -------------------------------------------------------------------------------- /libraries/BLEHomekit/src/HAPUuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/BLEHomekit/src/HAPUuid.h -------------------------------------------------------------------------------- /libraries/BLEHomekit/src/crypto/crypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/BLEHomekit/src/crypto/crypto.c -------------------------------------------------------------------------------- /libraries/BLEHomekit/src/crypto/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/BLEHomekit/src/crypto/crypto.h -------------------------------------------------------------------------------- /libraries/BLEHomekit/src/crypto/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/BLEHomekit/src/crypto/random.c -------------------------------------------------------------------------------- /libraries/BLEHomekit/src/crypto/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/BLEHomekit/src/crypto/random.h -------------------------------------------------------------------------------- /libraries/BLEHomekit/src/crypto/srp/bignum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/BLEHomekit/src/crypto/srp/bignum.c -------------------------------------------------------------------------------- /libraries/BLEHomekit/src/crypto/srp/bignum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/BLEHomekit/src/crypto/srp/bignum.h -------------------------------------------------------------------------------- /libraries/BLEHomekit/src/crypto/srp/bn_mul.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/BLEHomekit/src/crypto/srp/bn_mul.h -------------------------------------------------------------------------------- /libraries/BLEHomekit/src/crypto/srp/check_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/BLEHomekit/src/crypto/srp/check_config.h -------------------------------------------------------------------------------- /libraries/BLEHomekit/src/crypto/srp/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/BLEHomekit/src/crypto/srp/config.h -------------------------------------------------------------------------------- /libraries/BLEHomekit/src/crypto/srp/memory_buffer_alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/BLEHomekit/src/crypto/srp/memory_buffer_alloc.c -------------------------------------------------------------------------------- /libraries/BLEHomekit/src/crypto/srp/memory_buffer_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/BLEHomekit/src/crypto/srp/memory_buffer_alloc.h -------------------------------------------------------------------------------- /libraries/BLEHomekit/src/crypto/srp/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/BLEHomekit/src/crypto/srp/platform.c -------------------------------------------------------------------------------- /libraries/BLEHomekit/src/crypto/srp/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/BLEHomekit/src/crypto/srp/platform.h -------------------------------------------------------------------------------- /libraries/BLEHomekit/src/crypto/srp/srp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/BLEHomekit/src/crypto/srp/srp.c -------------------------------------------------------------------------------- /libraries/BLEHomekit/src/crypto/srp/srp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/BLEHomekit/src/crypto/srp/srp.h -------------------------------------------------------------------------------- /libraries/BLEHomekit/src/crypto/tweetnacl-modified/tweetnacl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/BLEHomekit/src/crypto/tweetnacl-modified/tweetnacl.c -------------------------------------------------------------------------------- /libraries/BLEHomekit/src/crypto/tweetnacl-modified/tweetnacl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/BLEHomekit/src/crypto/tweetnacl-modified/tweetnacl.h -------------------------------------------------------------------------------- /libraries/BLEHomekit/src/service/HAPAccessoryInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/BLEHomekit/src/service/HAPAccessoryInfo.cpp -------------------------------------------------------------------------------- /libraries/BLEHomekit/src/service/HAPAccessoryInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/BLEHomekit/src/service/HAPAccessoryInfo.h -------------------------------------------------------------------------------- /libraries/BLEHomekit/src/service/HAPLightBulb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/BLEHomekit/src/service/HAPLightBulb.cpp -------------------------------------------------------------------------------- /libraries/BLEHomekit/src/service/HAPLightBulb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/BLEHomekit/src/service/HAPLightBulb.h -------------------------------------------------------------------------------- /libraries/BLEHomekit/src/service/HAPPairing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/BLEHomekit/src/service/HAPPairing.cpp -------------------------------------------------------------------------------- /libraries/BLEHomekit/src/service/HAPPairing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/BLEHomekit/src/service/HAPPairing.h -------------------------------------------------------------------------------- /libraries/BLEHomekit/src/service/HAPProtocol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/BLEHomekit/src/service/HAPProtocol.cpp -------------------------------------------------------------------------------- /libraries/BLEHomekit/src/service/HAPProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/BLEHomekit/src/service/HAPProtocol.h -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Bluefruit52Lib/LICENSE -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Bluefruit52Lib/README.md -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/examples/Hardware/Fading/Fading.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Bluefruit52Lib/examples/Hardware/Fading/Fading.ino -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/examples/Hardware/Serial1_test/.feather52832.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/examples/Hardware/adc/adc.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Bluefruit52Lib/examples/Hardware/adc/adc.ino -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/examples/Hardware/adc_vbat/.cluenrf52840.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/examples/Hardware/adc_vbat/.itsybitsy52840.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/examples/Hardware/blinky/blinky.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Bluefruit52Lib/examples/Hardware/blinky/blinky.ino -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/examples/Hardware/dfu_ota/dfu_ota.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Bluefruit52Lib/examples/Hardware/dfu_ota/dfu_ota.ino -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/examples/Hardware/fwinfo/fwinfo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Bluefruit52Lib/examples/Hardware/fwinfo/fwinfo.ino -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/examples/Hardware/hwinfo/hwinfo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Bluefruit52Lib/examples/Hardware/hwinfo/hwinfo.ino -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/examples/Hardware/hwpwm/hwpwm.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Bluefruit52Lib/examples/Hardware/hwpwm/hwpwm.ino -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/examples/Hardware/meminfo/meminfo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Bluefruit52Lib/examples/Hardware/meminfo/meminfo.ino -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/examples/Peripheral/ancs/ancs.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Bluefruit52Lib/examples/Peripheral/ancs/ancs.ino -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/examples/Peripheral/ancs_arcada/.cluenrf52840.test.only: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/examples/Peripheral/ancs_arcada/.cplaynrf52840.test.only: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/examples/Peripheral/arduino_science_journal/.cluenrf52840.test.only: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/examples/Peripheral/arduino_science_journal/.cplaynrf52840.test.only: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/examples/Peripheral/arduino_science_journal/.feather52840sense.test.only: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/examples/Peripheral/beacon/beacon.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Bluefruit52Lib/examples/Peripheral/beacon/beacon.ino -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/examples/Peripheral/bluefruit_playground/.cluenrf52840.test.only: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/examples/Peripheral/bluefruit_playground/.cplaynrf52840.test.only: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/examples/Peripheral/bluefruit_playground/.feather52840sense.test.only: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/examples/Peripheral/pairing_passkey_arcada/.cluenrf52840.test.only: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/examples/Peripheral/pairing_passkey_arcada/.cplaynrf52840.test.only: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/examples/Peripheral/tf4micro-motion-kit/.cluenrf52840.test.only: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/examples/Peripheral/tf4micro-motion-kit/.feather52840sense.test.only: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/examples/Projects/homekit/homekit_lightbulb/.all.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Bluefruit52Lib/keywords.txt -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Bluefruit52Lib/library.properties -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/BLEAdvertising.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Bluefruit52Lib/src/BLEAdvertising.cpp -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/BLEAdvertising.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Bluefruit52Lib/src/BLEAdvertising.h -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/BLECentral.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Bluefruit52Lib/src/BLECentral.cpp -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/BLECentral.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Bluefruit52Lib/src/BLECentral.h -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/BLECharacteristic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Bluefruit52Lib/src/BLECharacteristic.cpp -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/BLECharacteristic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Bluefruit52Lib/src/BLECharacteristic.h -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/BLEClientCharacteristic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Bluefruit52Lib/src/BLEClientCharacteristic.cpp -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/BLEClientCharacteristic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Bluefruit52Lib/src/BLEClientCharacteristic.h -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/BLEClientService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Bluefruit52Lib/src/BLEClientService.cpp -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/BLEClientService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Bluefruit52Lib/src/BLEClientService.h -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/BLEConnection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Bluefruit52Lib/src/BLEConnection.cpp -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/BLEConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Bluefruit52Lib/src/BLEConnection.h -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/BLEDiscovery.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Bluefruit52Lib/src/BLEDiscovery.cpp -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/BLEDiscovery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Bluefruit52Lib/src/BLEDiscovery.h -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/BLEGatt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Bluefruit52Lib/src/BLEGatt.cpp -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/BLEGatt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Bluefruit52Lib/src/BLEGatt.h -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/BLEPeriph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Bluefruit52Lib/src/BLEPeriph.cpp -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/BLEPeriph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Bluefruit52Lib/src/BLEPeriph.h -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/BLEScanner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Bluefruit52Lib/src/BLEScanner.cpp -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/BLEScanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Bluefruit52Lib/src/BLEScanner.h -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/BLESecurity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Bluefruit52Lib/src/BLESecurity.cpp -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/BLESecurity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Bluefruit52Lib/src/BLESecurity.h -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/BLEService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Bluefruit52Lib/src/BLEService.cpp -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/BLEService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Bluefruit52Lib/src/BLEService.h -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/BLEUuid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Bluefruit52Lib/src/BLEUuid.cpp -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/BLEUuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Bluefruit52Lib/src/BLEUuid.h -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/bluefruit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Bluefruit52Lib/src/bluefruit.cpp -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/bluefruit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Bluefruit52Lib/src/bluefruit.h -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/bluefruit_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Bluefruit52Lib/src/bluefruit_common.h -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/clients/BLEAncs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Bluefruit52Lib/src/clients/BLEAncs.cpp -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/clients/BLEAncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Bluefruit52Lib/src/clients/BLEAncs.h -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/clients/BLEClientBas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Bluefruit52Lib/src/clients/BLEClientBas.cpp -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/clients/BLEClientBas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Bluefruit52Lib/src/clients/BLEClientBas.h -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/clients/BLEClientCts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Bluefruit52Lib/src/clients/BLEClientCts.cpp -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/clients/BLEClientCts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Bluefruit52Lib/src/clients/BLEClientCts.h -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/clients/BLEClientDis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Bluefruit52Lib/src/clients/BLEClientDis.cpp -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/clients/BLEClientDis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Bluefruit52Lib/src/clients/BLEClientDis.h -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/clients/BLEClientHidAdafruit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Bluefruit52Lib/src/clients/BLEClientHidAdafruit.h -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/clients/BLEClientUart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Bluefruit52Lib/src/clients/BLEClientUart.cpp -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/clients/BLEClientUart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Bluefruit52Lib/src/clients/BLEClientUart.h -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/services/BLEBas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Bluefruit52Lib/src/services/BLEBas.cpp -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/services/BLEBas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Bluefruit52Lib/src/services/BLEBas.h -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/services/BLEBeacon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Bluefruit52Lib/src/services/BLEBeacon.cpp -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/services/BLEBeacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Bluefruit52Lib/src/services/BLEBeacon.h -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/services/BLEDfu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Bluefruit52Lib/src/services/BLEDfu.cpp -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/services/BLEDfu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Bluefruit52Lib/src/services/BLEDfu.h -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/services/BLEDis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Bluefruit52Lib/src/services/BLEDis.cpp -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/services/BLEDis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Bluefruit52Lib/src/services/BLEDis.h -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/services/BLEHidAdafruit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Bluefruit52Lib/src/services/BLEHidAdafruit.cpp -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/services/BLEHidAdafruit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Bluefruit52Lib/src/services/BLEHidAdafruit.h -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/services/BLEHidGeneric.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Bluefruit52Lib/src/services/BLEHidGeneric.cpp -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/services/BLEHidGeneric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Bluefruit52Lib/src/services/BLEHidGeneric.h -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/services/BLEMidi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Bluefruit52Lib/src/services/BLEMidi.cpp -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/services/BLEMidi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Bluefruit52Lib/src/services/BLEMidi.h -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/services/BLEUart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Bluefruit52Lib/src/services/BLEUart.cpp -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/services/BLEUart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Bluefruit52Lib/src/services/BLEUart.h -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/services/EddyStone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Bluefruit52Lib/src/services/EddyStone.cpp -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/services/EddyStone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Bluefruit52Lib/src/services/EddyStone.h -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/utility/AdaMsg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Bluefruit52Lib/src/utility/AdaMsg.cpp -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/utility/AdaMsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Bluefruit52Lib/src/utility/AdaMsg.h -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/utility/bonding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Bluefruit52Lib/src/utility/bonding.cpp -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/utility/bonding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Bluefruit52Lib/src/utility/bonding.h -------------------------------------------------------------------------------- /libraries/Bluefruit52Lib/src/utility/bootloader_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Bluefruit52Lib/src/utility/bootloader_util.c -------------------------------------------------------------------------------- /libraries/InternalFileSytem/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/InternalFileSytem/library.properties -------------------------------------------------------------------------------- /libraries/InternalFileSytem/src/InternalFileSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/InternalFileSytem/src/InternalFileSystem.cpp -------------------------------------------------------------------------------- /libraries/InternalFileSytem/src/InternalFileSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/InternalFileSytem/src/InternalFileSystem.h -------------------------------------------------------------------------------- /libraries/InternalFileSytem/src/flash/flash_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/InternalFileSytem/src/flash/flash_cache.c -------------------------------------------------------------------------------- /libraries/InternalFileSytem/src/flash/flash_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/InternalFileSytem/src/flash/flash_cache.h -------------------------------------------------------------------------------- /libraries/InternalFileSytem/src/flash/flash_nrf5x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/InternalFileSytem/src/flash/flash_nrf5x.c -------------------------------------------------------------------------------- /libraries/InternalFileSytem/src/flash/flash_nrf5x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/InternalFileSytem/src/flash/flash_nrf5x.h -------------------------------------------------------------------------------- /libraries/OpenThread/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/OpenThread/README.adoc -------------------------------------------------------------------------------- /libraries/OpenThread/dist/format_protptype.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/OpenThread/dist/format_protptype.rb -------------------------------------------------------------------------------- /libraries/OpenThread/dist/funclist_filter_api.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/OpenThread/dist/funclist_filter_api.rb -------------------------------------------------------------------------------- /libraries/OpenThread/dist/gen_class_decls.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/OpenThread/dist/gen_class_decls.rb -------------------------------------------------------------------------------- /libraries/OpenThread/dist/gen_funclist_from_doxyxml.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/OpenThread/dist/gen_funclist_from_doxyxml.rb -------------------------------------------------------------------------------- /libraries/OpenThread/dist/gen_impls.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/OpenThread/dist/gen_impls.rb -------------------------------------------------------------------------------- /libraries/OpenThread/examples/ot-udp-echo/ot-udp-echo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/OpenThread/examples/ot-udp-echo/ot-udp-echo.ino -------------------------------------------------------------------------------- /libraries/OpenThread/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/OpenThread/keywords.txt -------------------------------------------------------------------------------- /libraries/OpenThread/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/OpenThread/library.properties -------------------------------------------------------------------------------- /libraries/OpenThread/src/OpenThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/OpenThread/src/OpenThread.cpp -------------------------------------------------------------------------------- /libraries/OpenThread/src/OpenThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/OpenThread/src/OpenThread.h -------------------------------------------------------------------------------- /libraries/OpenThread/src/OpenThreadCli.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/OpenThread/src/OpenThreadCli.cpp -------------------------------------------------------------------------------- /libraries/OpenThread/src/OpenThreadCli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/OpenThread/src/OpenThreadCli.h -------------------------------------------------------------------------------- /libraries/OpenThread/src/OpenThread_cmds.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/OpenThread/src/OpenThread_cmds.hpp -------------------------------------------------------------------------------- /libraries/OpenThread/src/OpenThread_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/OpenThread/src/OpenThread_types.cpp -------------------------------------------------------------------------------- /libraries/OpenThread/src/OpenThread_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/OpenThread/src/OpenThread_types.hpp -------------------------------------------------------------------------------- /libraries/OpenThread/src/core/netif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/OpenThread/src/core/netif.h -------------------------------------------------------------------------------- /libraries/OpenThread/src/core/openthread_freertos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/OpenThread/src/core/openthread_freertos.c -------------------------------------------------------------------------------- /libraries/OpenThread/src/core/otr_system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/OpenThread/src/core/otr_system.c -------------------------------------------------------------------------------- /libraries/OpenThread/src/core/otr_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/OpenThread/src/core/otr_system.h -------------------------------------------------------------------------------- /libraries/OpenThread/src/core/uart_lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/OpenThread/src/core/uart_lock.h -------------------------------------------------------------------------------- /libraries/OpenThread/src/net/utils/nat64_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/OpenThread/src/net/utils/nat64_utils.h -------------------------------------------------------------------------------- /libraries/OpenThread/src/net/utils/time_ntp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/OpenThread/src/net/utils/time_ntp.h -------------------------------------------------------------------------------- /libraries/OpenThread/src/openthread/openthread-freertos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/OpenThread/src/openthread/openthread-freertos.h -------------------------------------------------------------------------------- /libraries/OpenThread/src/otapi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/OpenThread/src/otapi.cpp -------------------------------------------------------------------------------- /libraries/OpenThread/src/otapi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/OpenThread/src/otapi.hpp -------------------------------------------------------------------------------- /libraries/OpenThread/src/otcmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/OpenThread/src/otcmd.cpp -------------------------------------------------------------------------------- /libraries/OpenThread/src/otcmd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/OpenThread/src/otcmd.hpp -------------------------------------------------------------------------------- /libraries/OpenThread/src/otcmd_coap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/OpenThread/src/otcmd_coap.cpp -------------------------------------------------------------------------------- /libraries/OpenThread/src/otcmd_coaps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/OpenThread/src/otcmd_coaps.cpp -------------------------------------------------------------------------------- /libraries/OpenThread/src/portable/nrf52.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/OpenThread/src/portable/nrf52.c -------------------------------------------------------------------------------- /libraries/OpenThread/src/portable/portable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/OpenThread/src/portable/portable.h -------------------------------------------------------------------------------- /libraries/PDM/examples/PDMSerialPlotter/PDMSerialPlotter.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/PDM/examples/PDMSerialPlotter/PDMSerialPlotter.ino -------------------------------------------------------------------------------- /libraries/PDM/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/PDM/keywords.txt -------------------------------------------------------------------------------- /libraries/PDM/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/PDM/library.properties -------------------------------------------------------------------------------- /libraries/PDM/src/PDM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/PDM/src/PDM.cpp -------------------------------------------------------------------------------- /libraries/PDM/src/PDM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/PDM/src/PDM.h -------------------------------------------------------------------------------- /libraries/PDM/src/utility/PDMDoubleBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/PDM/src/utility/PDMDoubleBuffer.cpp -------------------------------------------------------------------------------- /libraries/PDM/src/utility/PDMDoubleBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/PDM/src/utility/PDMDoubleBuffer.h -------------------------------------------------------------------------------- /libraries/RotaryEncoder/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/RotaryEncoder/LICENSE -------------------------------------------------------------------------------- /libraries/RotaryEncoder/RotaryEncoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/RotaryEncoder/RotaryEncoder.cpp -------------------------------------------------------------------------------- /libraries/RotaryEncoder/RotaryEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/RotaryEncoder/RotaryEncoder.h -------------------------------------------------------------------------------- /libraries/RotaryEncoder/SwRotaryEncoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/RotaryEncoder/SwRotaryEncoder.cpp -------------------------------------------------------------------------------- /libraries/RotaryEncoder/SwRotaryEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/RotaryEncoder/SwRotaryEncoder.h -------------------------------------------------------------------------------- /libraries/RotaryEncoder/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/RotaryEncoder/keywords.txt -------------------------------------------------------------------------------- /libraries/RotaryEncoder/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/RotaryEncoder/library.properties -------------------------------------------------------------------------------- /libraries/SPI/SPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/SPI/SPI.cpp -------------------------------------------------------------------------------- /libraries/SPI/SPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/SPI/SPI.h -------------------------------------------------------------------------------- /libraries/SPI/SPI_nrf52832.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/SPI/SPI_nrf52832.cpp -------------------------------------------------------------------------------- /libraries/SPI/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/SPI/keywords.txt -------------------------------------------------------------------------------- /libraries/SPI/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/SPI/library.properties -------------------------------------------------------------------------------- /libraries/Servo/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Servo/README.adoc -------------------------------------------------------------------------------- /libraries/Servo/examples/Knob/Knob.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Servo/examples/Knob/Knob.ino -------------------------------------------------------------------------------- /libraries/Servo/examples/Sweep/Sweep.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Servo/examples/Sweep/Sweep.ino -------------------------------------------------------------------------------- /libraries/Servo/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Servo/keywords.txt -------------------------------------------------------------------------------- /libraries/Servo/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Servo/library.properties -------------------------------------------------------------------------------- /libraries/Servo/src/Servo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Servo/src/Servo.h -------------------------------------------------------------------------------- /libraries/Servo/src/nrf52/Servo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Servo/src/nrf52/Servo.cpp -------------------------------------------------------------------------------- /libraries/Servo/src/nrf52/ServoTimers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Servo/src/nrf52/ServoTimers.h -------------------------------------------------------------------------------- /libraries/Sockets/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Sockets/README.adoc -------------------------------------------------------------------------------- /libraries/Sockets/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Sockets/keywords.txt -------------------------------------------------------------------------------- /libraries/Sockets/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Sockets/library.properties -------------------------------------------------------------------------------- /libraries/Sockets/src/UdpSocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Sockets/src/UdpSocket.cpp -------------------------------------------------------------------------------- /libraries/Sockets/src/UdpSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Sockets/src/UdpSocket.h -------------------------------------------------------------------------------- /libraries/Sockets/src/ringbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Sockets/src/ringbuf.c -------------------------------------------------------------------------------- /libraries/Sockets/src/ringbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Sockets/src/ringbuf.h -------------------------------------------------------------------------------- /libraries/SoftwareSerial/SoftwareSerial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/SoftwareSerial/SoftwareSerial.cpp -------------------------------------------------------------------------------- /libraries/SoftwareSerial/SoftwareSerial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/SoftwareSerial/SoftwareSerial.h -------------------------------------------------------------------------------- /libraries/SoftwareSerial/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/SoftwareSerial/keywords.txt -------------------------------------------------------------------------------- /libraries/SoftwareSerial/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/SoftwareSerial/library.properties -------------------------------------------------------------------------------- /libraries/Wire/Wire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Wire/Wire.h -------------------------------------------------------------------------------- /libraries/Wire/Wire_nRF52.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Wire/Wire_nRF52.cpp -------------------------------------------------------------------------------- /libraries/Wire/examples/main_reader/main_reader.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Wire/examples/main_reader/main_reader.ino -------------------------------------------------------------------------------- /libraries/Wire/examples/main_scan/main_scan.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Wire/examples/main_scan/main_scan.ino -------------------------------------------------------------------------------- /libraries/Wire/examples/main_writer/main_writer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Wire/examples/main_writer/main_writer.ino -------------------------------------------------------------------------------- /libraries/Wire/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Wire/keywords.txt -------------------------------------------------------------------------------- /libraries/Wire/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/libraries/Wire/library.properties -------------------------------------------------------------------------------- /platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/platform.txt -------------------------------------------------------------------------------- /programmers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/programmers.txt -------------------------------------------------------------------------------- /tools/adafruit-nrfutil/macos/adafruit-nrfutil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/tools/adafruit-nrfutil/macos/adafruit-nrfutil -------------------------------------------------------------------------------- /tools/adafruit-nrfutil/win32/adafruit-nrfutil.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/tools/adafruit-nrfutil/win32/adafruit-nrfutil.exe -------------------------------------------------------------------------------- /tools/build_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/tools/build_all.py -------------------------------------------------------------------------------- /tools/midi_tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/tools/midi_tests/README.md -------------------------------------------------------------------------------- /tools/midi_tests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/tools/midi_tests/package.json -------------------------------------------------------------------------------- /tools/midi_tests/rx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/tools/midi_tests/rx.js -------------------------------------------------------------------------------- /tools/midi_tests/rx_arduino/rx_arduino.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/tools/midi_tests/rx_arduino/rx_arduino.ino -------------------------------------------------------------------------------- /tools/midi_tests/tx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/tools/midi_tests/tx.js -------------------------------------------------------------------------------- /tools/midi_tests/tx_arduino/tx_arduino.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/tools/midi_tests/tx_arduino/tx_arduino.ino -------------------------------------------------------------------------------- /tools/pynrfbintool/nrfbintool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/tools/pynrfbintool/nrfbintool.c -------------------------------------------------------------------------------- /tools/pynrfbintool/pynrfbintool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/tools/pynrfbintool/pynrfbintool.py -------------------------------------------------------------------------------- /tools/pynrfbintool/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/tools/pynrfbintool/readme.md -------------------------------------------------------------------------------- /tools/uf2conv/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/tools/uf2conv/LICENSE.txt -------------------------------------------------------------------------------- /tools/uf2conv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/tools/uf2conv/README.md -------------------------------------------------------------------------------- /tools/uf2conv/uf2conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/tools/uf2conv/uf2conv.py -------------------------------------------------------------------------------- /tools/update_bootloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/tools/update_bootloader.py -------------------------------------------------------------------------------- /variants/circuitplayground_nrf52840/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/variants/circuitplayground_nrf52840/variant.cpp -------------------------------------------------------------------------------- /variants/circuitplayground_nrf52840/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/variants/circuitplayground_nrf52840/variant.h -------------------------------------------------------------------------------- /variants/clue_nrf52840/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/variants/clue_nrf52840/variant.cpp -------------------------------------------------------------------------------- /variants/clue_nrf52840/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/variants/clue_nrf52840/variant.h -------------------------------------------------------------------------------- /variants/feather_nrf52840_express/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/variants/feather_nrf52840_express/variant.cpp -------------------------------------------------------------------------------- /variants/feather_nrf52840_express/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/variants/feather_nrf52840_express/variant.h -------------------------------------------------------------------------------- /variants/feather_nrf52840_sense/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/variants/feather_nrf52840_sense/variant.cpp -------------------------------------------------------------------------------- /variants/feather_nrf52840_sense/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/variants/feather_nrf52840_sense/variant.h -------------------------------------------------------------------------------- /variants/itsybitsy_nrf52840_express/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/variants/itsybitsy_nrf52840_express/variant.cpp -------------------------------------------------------------------------------- /variants/itsybitsy_nrf52840_express/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/variants/itsybitsy_nrf52840_express/variant.h -------------------------------------------------------------------------------- /variants/metro_nrf52840_express/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/variants/metro_nrf52840_express/variant.cpp -------------------------------------------------------------------------------- /variants/metro_nrf52840_express/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/variants/metro_nrf52840_express/variant.h -------------------------------------------------------------------------------- /variants/particle_xenon/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/variants/particle_xenon/variant.cpp -------------------------------------------------------------------------------- /variants/particle_xenon/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/variants/particle_xenon/variant.h -------------------------------------------------------------------------------- /variants/pca10056/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/variants/pca10056/variant.cpp -------------------------------------------------------------------------------- /variants/pca10056/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/variants/pca10056/variant.h -------------------------------------------------------------------------------- /variants/raytac_mdbt50q_rx/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/variants/raytac_mdbt50q_rx/variant.cpp -------------------------------------------------------------------------------- /variants/raytac_mdbt50q_rx/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soburi/openthread_nrf52_arduino/HEAD/variants/raytac_mdbt50q_rx/variant.h --------------------------------------------------------------------------------