├── .cargo └── config ├── .gitignore ├── .gitmodules ├── Cargo.toml ├── Dockerfile ├── LICENSE ├── README.md ├── SETUP.md ├── bindings.h ├── examples ├── ble_app_template.rs ├── blinky.rs └── logging.rs ├── extract-features.py ├── nRF5-sdk ├── components │ ├── ble │ │ ├── ble_advertising │ │ │ ├── ble_advertising.c │ │ │ └── ble_advertising.h │ │ ├── common │ │ │ ├── ble_advdata.c │ │ │ ├── ble_advdata.h │ │ │ ├── ble_conn_params.c │ │ │ ├── ble_conn_params.h │ │ │ ├── ble_conn_state.c │ │ │ ├── ble_conn_state.h │ │ │ ├── ble_date_time.h │ │ │ ├── ble_gatt_db.h │ │ │ ├── ble_sensor_location.h │ │ │ ├── ble_srv_common.c │ │ │ └── ble_srv_common.h │ │ ├── nrf_ble_gatt │ │ │ ├── nrf_ble_gatt.c │ │ │ └── nrf_ble_gatt.h │ │ └── peer_manager │ │ │ ├── gatt_cache_manager.c │ │ │ ├── gatt_cache_manager.h │ │ │ ├── gatts_cache_manager.c │ │ │ ├── gatts_cache_manager.h │ │ │ ├── id_manager.c │ │ │ ├── id_manager.h │ │ │ ├── peer_data_storage.c │ │ │ ├── peer_data_storage.h │ │ │ ├── peer_database.c │ │ │ ├── peer_database.h │ │ │ ├── peer_id.c │ │ │ ├── peer_id.h │ │ │ ├── peer_manager.c │ │ │ ├── peer_manager.h │ │ │ ├── peer_manager_internal.h │ │ │ ├── peer_manager_types.h │ │ │ ├── pm_buffer.c │ │ │ ├── pm_buffer.h │ │ │ ├── pm_mutex.c │ │ │ ├── pm_mutex.h │ │ │ ├── security_dispatcher.c │ │ │ ├── security_dispatcher.h │ │ │ ├── security_manager.c │ │ │ └── security_manager.h │ ├── boards │ │ ├── boards.c │ │ ├── boards.h │ │ └── pca10040.h │ ├── device │ │ ├── compiler_abstraction.h │ │ ├── nrf.h │ │ ├── nrf51_to_nrf52.h │ │ ├── nrf52.h │ │ ├── nrf52832_peripherals.h │ │ ├── nrf52_bitfields.h │ │ └── nrf52_name_change.h │ ├── drivers_nrf │ │ ├── clock │ │ │ ├── nrf_drv_clock.c │ │ │ └── nrf_drv_clock.h │ │ ├── common │ │ │ ├── nrf_drv_common.c │ │ │ └── nrf_drv_common.h │ │ ├── delay │ │ │ └── nrf_delay.h │ │ ├── gpiote │ │ │ ├── nrf_drv_gpiote.c │ │ │ └── nrf_drv_gpiote.h │ │ ├── hal │ │ │ ├── nrf_clock.h │ │ │ ├── nrf_comp.h │ │ │ ├── nrf_ecb.c │ │ │ ├── nrf_ecb.h │ │ │ ├── nrf_egu.h │ │ │ ├── nrf_gpio.h │ │ │ ├── nrf_gpiote.h │ │ │ ├── nrf_i2s.h │ │ │ ├── nrf_lpcomp.h │ │ │ ├── nrf_nvmc.c │ │ │ ├── nrf_nvmc.h │ │ │ ├── nrf_pdm.h │ │ │ ├── nrf_peripherals.h │ │ │ ├── nrf_power.h │ │ │ ├── nrf_ppi.h │ │ │ ├── nrf_pwm.h │ │ │ ├── nrf_qdec.h │ │ │ ├── nrf_qspi.h │ │ │ ├── nrf_rng.h │ │ │ ├── nrf_rtc.h │ │ │ ├── nrf_saadc.c │ │ │ ├── nrf_saadc.h │ │ │ ├── nrf_spi.h │ │ │ ├── nrf_spim.h │ │ │ ├── nrf_spis.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_wdt.h │ │ └── uart │ │ │ ├── nrf_drv_uart.c │ │ │ └── nrf_drv_uart.h │ ├── libraries │ │ ├── bsp │ │ │ ├── bsp.c │ │ │ ├── bsp.h │ │ │ ├── bsp_btn_ant.h │ │ │ ├── bsp_btn_ble.c │ │ │ ├── bsp_btn_ble.h │ │ │ ├── bsp_config.h │ │ │ ├── bsp_nfc.c │ │ │ └── bsp_nfc.h │ │ ├── button │ │ │ ├── app_button.c │ │ │ └── app_button.h │ │ ├── crc16 │ │ │ ├── crc16.c │ │ │ └── crc16.h │ │ ├── experimental_section_vars │ │ │ ├── nrf_section.h │ │ │ ├── nrf_section_iter.c │ │ │ └── nrf_section_iter.h │ │ ├── fds │ │ │ ├── fds.c │ │ │ ├── fds.h │ │ │ └── fds_internal_defs.h │ │ ├── fstorage │ │ │ ├── fstorage.c │ │ │ ├── fstorage.h │ │ │ ├── fstorage_internal_defs.h │ │ │ └── fstorage_nosd.c │ │ ├── hardfault │ │ │ ├── hardfault.h │ │ │ ├── hardfault_implementation.c │ │ │ ├── nrf51 │ │ │ │ └── handler │ │ │ │ │ ├── hardfault_handler_gcc.c │ │ │ │ │ ├── hardfault_handler_iar.c │ │ │ │ │ └── hardfault_handler_keil.c │ │ │ └── nrf52 │ │ │ │ └── handler │ │ │ │ ├── hardfault_handler_gcc.c │ │ │ │ ├── hardfault_handler_iar.c │ │ │ │ └── hardfault_handler_keil.c │ │ ├── log │ │ │ ├── nrf_log.h │ │ │ ├── nrf_log_backend.h │ │ │ ├── nrf_log_ctrl.h │ │ │ └── src │ │ │ │ ├── nrf_log_backend_serial.c │ │ │ │ ├── nrf_log_ctrl_internal.h │ │ │ │ ├── nrf_log_frontend.c │ │ │ │ └── nrf_log_internal.h │ │ ├── scheduler │ │ │ ├── app_scheduler.c │ │ │ ├── app_scheduler.h │ │ │ └── app_scheduler_serconn.c │ │ ├── sensorsim │ │ │ ├── sensorsim.c │ │ │ └── sensorsim.h │ │ ├── strerror │ │ │ ├── nrf_strerror.c │ │ │ └── nrf_strerror.h │ │ ├── timer │ │ │ ├── app_timer.c │ │ │ └── app_timer.h │ │ └── util │ │ │ ├── app_error.c │ │ │ ├── app_error.h │ │ │ ├── app_error_weak.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.c │ │ │ ├── nrf_assert.h │ │ │ ├── nrf_bitmask.h │ │ │ ├── sdk_common.h │ │ │ ├── sdk_errors.h │ │ │ ├── sdk_macros.h │ │ │ ├── sdk_mapped_flags.c │ │ │ ├── sdk_mapped_flags.h │ │ │ ├── sdk_os.h │ │ │ └── sdk_resources.h │ ├── softdevice │ │ ├── common │ │ │ └── softdevice_handler │ │ │ │ ├── ant_stack_handler_types.h │ │ │ │ ├── ble_stack_handler_types.h │ │ │ │ ├── softdevice_handler.c │ │ │ │ ├── softdevice_handler.h │ │ │ │ ├── softdevice_handler_appsh.c │ │ │ │ └── softdevice_handler_appsh.h │ │ └── s132 │ │ │ └── headers │ │ │ ├── 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 │ └── toolchain │ │ ├── cmsis │ │ └── include │ │ │ ├── cmsis_gcc.h │ │ │ ├── core_cm4.h │ │ │ ├── core_cmFunc.h │ │ │ ├── core_cmInstr.h │ │ │ └── core_cmSimd.h │ │ ├── gcc │ │ └── gcc_startup_nrf52.S │ │ ├── system_nrf52.c │ │ └── system_nrf52.h └── external │ └── segger_rtt │ ├── RTT_Syscalls_GCC.c │ ├── RTT_Syscalls_IAR.c │ ├── RTT_Syscalls_KEIL.c │ ├── SEGGER_RTT.c │ ├── SEGGER_RTT.h │ ├── SEGGER_RTT_Conf.h │ ├── SEGGER_RTT_printf.c │ └── license │ └── license.txt ├── nrf52dk-sys.ld ├── nrf5x_common.ld ├── shims ├── sdk_config.h ├── shimmy.c └── shims.h └── src ├── lang_items.rs ├── lib.rs └── macros.rs /.cargo/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/.cargo/config -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/Cargo.toml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/README.md -------------------------------------------------------------------------------- /SETUP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/SETUP.md -------------------------------------------------------------------------------- /bindings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/bindings.h -------------------------------------------------------------------------------- /examples/ble_app_template.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/examples/ble_app_template.rs -------------------------------------------------------------------------------- /examples/blinky.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/examples/blinky.rs -------------------------------------------------------------------------------- /examples/logging.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/examples/logging.rs -------------------------------------------------------------------------------- /extract-features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/extract-features.py -------------------------------------------------------------------------------- /nRF5-sdk/components/ble/ble_advertising/ble_advertising.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/ble/ble_advertising/ble_advertising.c -------------------------------------------------------------------------------- /nRF5-sdk/components/ble/ble_advertising/ble_advertising.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/ble/ble_advertising/ble_advertising.h -------------------------------------------------------------------------------- /nRF5-sdk/components/ble/common/ble_advdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/ble/common/ble_advdata.c -------------------------------------------------------------------------------- /nRF5-sdk/components/ble/common/ble_advdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/ble/common/ble_advdata.h -------------------------------------------------------------------------------- /nRF5-sdk/components/ble/common/ble_conn_params.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/ble/common/ble_conn_params.c -------------------------------------------------------------------------------- /nRF5-sdk/components/ble/common/ble_conn_params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/ble/common/ble_conn_params.h -------------------------------------------------------------------------------- /nRF5-sdk/components/ble/common/ble_conn_state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/ble/common/ble_conn_state.c -------------------------------------------------------------------------------- /nRF5-sdk/components/ble/common/ble_conn_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/ble/common/ble_conn_state.h -------------------------------------------------------------------------------- /nRF5-sdk/components/ble/common/ble_date_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/ble/common/ble_date_time.h -------------------------------------------------------------------------------- /nRF5-sdk/components/ble/common/ble_gatt_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/ble/common/ble_gatt_db.h -------------------------------------------------------------------------------- /nRF5-sdk/components/ble/common/ble_sensor_location.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/ble/common/ble_sensor_location.h -------------------------------------------------------------------------------- /nRF5-sdk/components/ble/common/ble_srv_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/ble/common/ble_srv_common.c -------------------------------------------------------------------------------- /nRF5-sdk/components/ble/common/ble_srv_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/ble/common/ble_srv_common.h -------------------------------------------------------------------------------- /nRF5-sdk/components/ble/nrf_ble_gatt/nrf_ble_gatt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/ble/nrf_ble_gatt/nrf_ble_gatt.c -------------------------------------------------------------------------------- /nRF5-sdk/components/ble/nrf_ble_gatt/nrf_ble_gatt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/ble/nrf_ble_gatt/nrf_ble_gatt.h -------------------------------------------------------------------------------- /nRF5-sdk/components/ble/peer_manager/gatt_cache_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/ble/peer_manager/gatt_cache_manager.c -------------------------------------------------------------------------------- /nRF5-sdk/components/ble/peer_manager/gatt_cache_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/ble/peer_manager/gatt_cache_manager.h -------------------------------------------------------------------------------- /nRF5-sdk/components/ble/peer_manager/gatts_cache_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/ble/peer_manager/gatts_cache_manager.c -------------------------------------------------------------------------------- /nRF5-sdk/components/ble/peer_manager/gatts_cache_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/ble/peer_manager/gatts_cache_manager.h -------------------------------------------------------------------------------- /nRF5-sdk/components/ble/peer_manager/id_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/ble/peer_manager/id_manager.c -------------------------------------------------------------------------------- /nRF5-sdk/components/ble/peer_manager/id_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/ble/peer_manager/id_manager.h -------------------------------------------------------------------------------- /nRF5-sdk/components/ble/peer_manager/peer_data_storage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/ble/peer_manager/peer_data_storage.c -------------------------------------------------------------------------------- /nRF5-sdk/components/ble/peer_manager/peer_data_storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/ble/peer_manager/peer_data_storage.h -------------------------------------------------------------------------------- /nRF5-sdk/components/ble/peer_manager/peer_database.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/ble/peer_manager/peer_database.c -------------------------------------------------------------------------------- /nRF5-sdk/components/ble/peer_manager/peer_database.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/ble/peer_manager/peer_database.h -------------------------------------------------------------------------------- /nRF5-sdk/components/ble/peer_manager/peer_id.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/ble/peer_manager/peer_id.c -------------------------------------------------------------------------------- /nRF5-sdk/components/ble/peer_manager/peer_id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/ble/peer_manager/peer_id.h -------------------------------------------------------------------------------- /nRF5-sdk/components/ble/peer_manager/peer_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/ble/peer_manager/peer_manager.c -------------------------------------------------------------------------------- /nRF5-sdk/components/ble/peer_manager/peer_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/ble/peer_manager/peer_manager.h -------------------------------------------------------------------------------- /nRF5-sdk/components/ble/peer_manager/peer_manager_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/ble/peer_manager/peer_manager_internal.h -------------------------------------------------------------------------------- /nRF5-sdk/components/ble/peer_manager/peer_manager_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/ble/peer_manager/peer_manager_types.h -------------------------------------------------------------------------------- /nRF5-sdk/components/ble/peer_manager/pm_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/ble/peer_manager/pm_buffer.c -------------------------------------------------------------------------------- /nRF5-sdk/components/ble/peer_manager/pm_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/ble/peer_manager/pm_buffer.h -------------------------------------------------------------------------------- /nRF5-sdk/components/ble/peer_manager/pm_mutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/ble/peer_manager/pm_mutex.c -------------------------------------------------------------------------------- /nRF5-sdk/components/ble/peer_manager/pm_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/ble/peer_manager/pm_mutex.h -------------------------------------------------------------------------------- /nRF5-sdk/components/ble/peer_manager/security_dispatcher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/ble/peer_manager/security_dispatcher.c -------------------------------------------------------------------------------- /nRF5-sdk/components/ble/peer_manager/security_dispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/ble/peer_manager/security_dispatcher.h -------------------------------------------------------------------------------- /nRF5-sdk/components/ble/peer_manager/security_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/ble/peer_manager/security_manager.c -------------------------------------------------------------------------------- /nRF5-sdk/components/ble/peer_manager/security_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/ble/peer_manager/security_manager.h -------------------------------------------------------------------------------- /nRF5-sdk/components/boards/boards.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/boards/boards.c -------------------------------------------------------------------------------- /nRF5-sdk/components/boards/boards.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/boards/boards.h -------------------------------------------------------------------------------- /nRF5-sdk/components/boards/pca10040.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/boards/pca10040.h -------------------------------------------------------------------------------- /nRF5-sdk/components/device/compiler_abstraction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/device/compiler_abstraction.h -------------------------------------------------------------------------------- /nRF5-sdk/components/device/nrf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/device/nrf.h -------------------------------------------------------------------------------- /nRF5-sdk/components/device/nrf51_to_nrf52.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/device/nrf51_to_nrf52.h -------------------------------------------------------------------------------- /nRF5-sdk/components/device/nrf52.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/device/nrf52.h -------------------------------------------------------------------------------- /nRF5-sdk/components/device/nrf52832_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/device/nrf52832_peripherals.h -------------------------------------------------------------------------------- /nRF5-sdk/components/device/nrf52_bitfields.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/device/nrf52_bitfields.h -------------------------------------------------------------------------------- /nRF5-sdk/components/device/nrf52_name_change.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/device/nrf52_name_change.h -------------------------------------------------------------------------------- /nRF5-sdk/components/drivers_nrf/clock/nrf_drv_clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/drivers_nrf/clock/nrf_drv_clock.c -------------------------------------------------------------------------------- /nRF5-sdk/components/drivers_nrf/clock/nrf_drv_clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/drivers_nrf/clock/nrf_drv_clock.h -------------------------------------------------------------------------------- /nRF5-sdk/components/drivers_nrf/common/nrf_drv_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/drivers_nrf/common/nrf_drv_common.c -------------------------------------------------------------------------------- /nRF5-sdk/components/drivers_nrf/common/nrf_drv_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/drivers_nrf/common/nrf_drv_common.h -------------------------------------------------------------------------------- /nRF5-sdk/components/drivers_nrf/delay/nrf_delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/drivers_nrf/delay/nrf_delay.h -------------------------------------------------------------------------------- /nRF5-sdk/components/drivers_nrf/gpiote/nrf_drv_gpiote.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/drivers_nrf/gpiote/nrf_drv_gpiote.c -------------------------------------------------------------------------------- /nRF5-sdk/components/drivers_nrf/gpiote/nrf_drv_gpiote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/drivers_nrf/gpiote/nrf_drv_gpiote.h -------------------------------------------------------------------------------- /nRF5-sdk/components/drivers_nrf/hal/nrf_clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/drivers_nrf/hal/nrf_clock.h -------------------------------------------------------------------------------- /nRF5-sdk/components/drivers_nrf/hal/nrf_comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/drivers_nrf/hal/nrf_comp.h -------------------------------------------------------------------------------- /nRF5-sdk/components/drivers_nrf/hal/nrf_ecb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/drivers_nrf/hal/nrf_ecb.c -------------------------------------------------------------------------------- /nRF5-sdk/components/drivers_nrf/hal/nrf_ecb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/drivers_nrf/hal/nrf_ecb.h -------------------------------------------------------------------------------- /nRF5-sdk/components/drivers_nrf/hal/nrf_egu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/drivers_nrf/hal/nrf_egu.h -------------------------------------------------------------------------------- /nRF5-sdk/components/drivers_nrf/hal/nrf_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/drivers_nrf/hal/nrf_gpio.h -------------------------------------------------------------------------------- /nRF5-sdk/components/drivers_nrf/hal/nrf_gpiote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/drivers_nrf/hal/nrf_gpiote.h -------------------------------------------------------------------------------- /nRF5-sdk/components/drivers_nrf/hal/nrf_i2s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/drivers_nrf/hal/nrf_i2s.h -------------------------------------------------------------------------------- /nRF5-sdk/components/drivers_nrf/hal/nrf_lpcomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/drivers_nrf/hal/nrf_lpcomp.h -------------------------------------------------------------------------------- /nRF5-sdk/components/drivers_nrf/hal/nrf_nvmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/drivers_nrf/hal/nrf_nvmc.c -------------------------------------------------------------------------------- /nRF5-sdk/components/drivers_nrf/hal/nrf_nvmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/drivers_nrf/hal/nrf_nvmc.h -------------------------------------------------------------------------------- /nRF5-sdk/components/drivers_nrf/hal/nrf_pdm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/drivers_nrf/hal/nrf_pdm.h -------------------------------------------------------------------------------- /nRF5-sdk/components/drivers_nrf/hal/nrf_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/drivers_nrf/hal/nrf_peripherals.h -------------------------------------------------------------------------------- /nRF5-sdk/components/drivers_nrf/hal/nrf_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/drivers_nrf/hal/nrf_power.h -------------------------------------------------------------------------------- /nRF5-sdk/components/drivers_nrf/hal/nrf_ppi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/drivers_nrf/hal/nrf_ppi.h -------------------------------------------------------------------------------- /nRF5-sdk/components/drivers_nrf/hal/nrf_pwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/drivers_nrf/hal/nrf_pwm.h -------------------------------------------------------------------------------- /nRF5-sdk/components/drivers_nrf/hal/nrf_qdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/drivers_nrf/hal/nrf_qdec.h -------------------------------------------------------------------------------- /nRF5-sdk/components/drivers_nrf/hal/nrf_qspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/drivers_nrf/hal/nrf_qspi.h -------------------------------------------------------------------------------- /nRF5-sdk/components/drivers_nrf/hal/nrf_rng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/drivers_nrf/hal/nrf_rng.h -------------------------------------------------------------------------------- /nRF5-sdk/components/drivers_nrf/hal/nrf_rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/drivers_nrf/hal/nrf_rtc.h -------------------------------------------------------------------------------- /nRF5-sdk/components/drivers_nrf/hal/nrf_saadc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/drivers_nrf/hal/nrf_saadc.c -------------------------------------------------------------------------------- /nRF5-sdk/components/drivers_nrf/hal/nrf_saadc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/drivers_nrf/hal/nrf_saadc.h -------------------------------------------------------------------------------- /nRF5-sdk/components/drivers_nrf/hal/nrf_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/drivers_nrf/hal/nrf_spi.h -------------------------------------------------------------------------------- /nRF5-sdk/components/drivers_nrf/hal/nrf_spim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/drivers_nrf/hal/nrf_spim.h -------------------------------------------------------------------------------- /nRF5-sdk/components/drivers_nrf/hal/nrf_spis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/drivers_nrf/hal/nrf_spis.h -------------------------------------------------------------------------------- /nRF5-sdk/components/drivers_nrf/hal/nrf_systick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/drivers_nrf/hal/nrf_systick.h -------------------------------------------------------------------------------- /nRF5-sdk/components/drivers_nrf/hal/nrf_temp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/drivers_nrf/hal/nrf_temp.h -------------------------------------------------------------------------------- /nRF5-sdk/components/drivers_nrf/hal/nrf_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/drivers_nrf/hal/nrf_timer.h -------------------------------------------------------------------------------- /nRF5-sdk/components/drivers_nrf/hal/nrf_twi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/drivers_nrf/hal/nrf_twi.h -------------------------------------------------------------------------------- /nRF5-sdk/components/drivers_nrf/hal/nrf_twim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/drivers_nrf/hal/nrf_twim.h -------------------------------------------------------------------------------- /nRF5-sdk/components/drivers_nrf/hal/nrf_twis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/drivers_nrf/hal/nrf_twis.h -------------------------------------------------------------------------------- /nRF5-sdk/components/drivers_nrf/hal/nrf_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/drivers_nrf/hal/nrf_uart.h -------------------------------------------------------------------------------- /nRF5-sdk/components/drivers_nrf/hal/nrf_uarte.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/drivers_nrf/hal/nrf_uarte.h -------------------------------------------------------------------------------- /nRF5-sdk/components/drivers_nrf/hal/nrf_usbd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/drivers_nrf/hal/nrf_usbd.h -------------------------------------------------------------------------------- /nRF5-sdk/components/drivers_nrf/hal/nrf_wdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/drivers_nrf/hal/nrf_wdt.h -------------------------------------------------------------------------------- /nRF5-sdk/components/drivers_nrf/uart/nrf_drv_uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/drivers_nrf/uart/nrf_drv_uart.c -------------------------------------------------------------------------------- /nRF5-sdk/components/drivers_nrf/uart/nrf_drv_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/drivers_nrf/uart/nrf_drv_uart.h -------------------------------------------------------------------------------- /nRF5-sdk/components/libraries/bsp/bsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/libraries/bsp/bsp.c -------------------------------------------------------------------------------- /nRF5-sdk/components/libraries/bsp/bsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/libraries/bsp/bsp.h -------------------------------------------------------------------------------- /nRF5-sdk/components/libraries/bsp/bsp_btn_ant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/libraries/bsp/bsp_btn_ant.h -------------------------------------------------------------------------------- /nRF5-sdk/components/libraries/bsp/bsp_btn_ble.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/libraries/bsp/bsp_btn_ble.c -------------------------------------------------------------------------------- /nRF5-sdk/components/libraries/bsp/bsp_btn_ble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/libraries/bsp/bsp_btn_ble.h -------------------------------------------------------------------------------- /nRF5-sdk/components/libraries/bsp/bsp_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/libraries/bsp/bsp_config.h -------------------------------------------------------------------------------- /nRF5-sdk/components/libraries/bsp/bsp_nfc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/libraries/bsp/bsp_nfc.c -------------------------------------------------------------------------------- /nRF5-sdk/components/libraries/bsp/bsp_nfc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/libraries/bsp/bsp_nfc.h -------------------------------------------------------------------------------- /nRF5-sdk/components/libraries/button/app_button.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/libraries/button/app_button.c -------------------------------------------------------------------------------- /nRF5-sdk/components/libraries/button/app_button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/libraries/button/app_button.h -------------------------------------------------------------------------------- /nRF5-sdk/components/libraries/crc16/crc16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/libraries/crc16/crc16.c -------------------------------------------------------------------------------- /nRF5-sdk/components/libraries/crc16/crc16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/libraries/crc16/crc16.h -------------------------------------------------------------------------------- /nRF5-sdk/components/libraries/experimental_section_vars/nrf_section.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/libraries/experimental_section_vars/nrf_section.h -------------------------------------------------------------------------------- /nRF5-sdk/components/libraries/experimental_section_vars/nrf_section_iter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/libraries/experimental_section_vars/nrf_section_iter.c -------------------------------------------------------------------------------- /nRF5-sdk/components/libraries/experimental_section_vars/nrf_section_iter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/libraries/experimental_section_vars/nrf_section_iter.h -------------------------------------------------------------------------------- /nRF5-sdk/components/libraries/fds/fds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/libraries/fds/fds.c -------------------------------------------------------------------------------- /nRF5-sdk/components/libraries/fds/fds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/libraries/fds/fds.h -------------------------------------------------------------------------------- /nRF5-sdk/components/libraries/fds/fds_internal_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/libraries/fds/fds_internal_defs.h -------------------------------------------------------------------------------- /nRF5-sdk/components/libraries/fstorage/fstorage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/libraries/fstorage/fstorage.c -------------------------------------------------------------------------------- /nRF5-sdk/components/libraries/fstorage/fstorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/libraries/fstorage/fstorage.h -------------------------------------------------------------------------------- /nRF5-sdk/components/libraries/fstorage/fstorage_internal_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/libraries/fstorage/fstorage_internal_defs.h -------------------------------------------------------------------------------- /nRF5-sdk/components/libraries/fstorage/fstorage_nosd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/libraries/fstorage/fstorage_nosd.c -------------------------------------------------------------------------------- /nRF5-sdk/components/libraries/hardfault/hardfault.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/libraries/hardfault/hardfault.h -------------------------------------------------------------------------------- /nRF5-sdk/components/libraries/hardfault/hardfault_implementation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/libraries/hardfault/hardfault_implementation.c -------------------------------------------------------------------------------- /nRF5-sdk/components/libraries/hardfault/nrf51/handler/hardfault_handler_gcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/libraries/hardfault/nrf51/handler/hardfault_handler_gcc.c -------------------------------------------------------------------------------- /nRF5-sdk/components/libraries/hardfault/nrf51/handler/hardfault_handler_iar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/libraries/hardfault/nrf51/handler/hardfault_handler_iar.c -------------------------------------------------------------------------------- /nRF5-sdk/components/libraries/hardfault/nrf51/handler/hardfault_handler_keil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/libraries/hardfault/nrf51/handler/hardfault_handler_keil.c -------------------------------------------------------------------------------- /nRF5-sdk/components/libraries/hardfault/nrf52/handler/hardfault_handler_gcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/libraries/hardfault/nrf52/handler/hardfault_handler_gcc.c -------------------------------------------------------------------------------- /nRF5-sdk/components/libraries/hardfault/nrf52/handler/hardfault_handler_iar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/libraries/hardfault/nrf52/handler/hardfault_handler_iar.c -------------------------------------------------------------------------------- /nRF5-sdk/components/libraries/hardfault/nrf52/handler/hardfault_handler_keil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/libraries/hardfault/nrf52/handler/hardfault_handler_keil.c -------------------------------------------------------------------------------- /nRF5-sdk/components/libraries/log/nrf_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/libraries/log/nrf_log.h -------------------------------------------------------------------------------- /nRF5-sdk/components/libraries/log/nrf_log_backend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/libraries/log/nrf_log_backend.h -------------------------------------------------------------------------------- /nRF5-sdk/components/libraries/log/nrf_log_ctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/libraries/log/nrf_log_ctrl.h -------------------------------------------------------------------------------- /nRF5-sdk/components/libraries/log/src/nrf_log_backend_serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/libraries/log/src/nrf_log_backend_serial.c -------------------------------------------------------------------------------- /nRF5-sdk/components/libraries/log/src/nrf_log_ctrl_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/libraries/log/src/nrf_log_ctrl_internal.h -------------------------------------------------------------------------------- /nRF5-sdk/components/libraries/log/src/nrf_log_frontend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/libraries/log/src/nrf_log_frontend.c -------------------------------------------------------------------------------- /nRF5-sdk/components/libraries/log/src/nrf_log_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/libraries/log/src/nrf_log_internal.h -------------------------------------------------------------------------------- /nRF5-sdk/components/libraries/scheduler/app_scheduler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/libraries/scheduler/app_scheduler.c -------------------------------------------------------------------------------- /nRF5-sdk/components/libraries/scheduler/app_scheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/libraries/scheduler/app_scheduler.h -------------------------------------------------------------------------------- /nRF5-sdk/components/libraries/scheduler/app_scheduler_serconn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/libraries/scheduler/app_scheduler_serconn.c -------------------------------------------------------------------------------- /nRF5-sdk/components/libraries/sensorsim/sensorsim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/libraries/sensorsim/sensorsim.c -------------------------------------------------------------------------------- /nRF5-sdk/components/libraries/sensorsim/sensorsim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/libraries/sensorsim/sensorsim.h -------------------------------------------------------------------------------- /nRF5-sdk/components/libraries/strerror/nrf_strerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/libraries/strerror/nrf_strerror.c -------------------------------------------------------------------------------- /nRF5-sdk/components/libraries/strerror/nrf_strerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/libraries/strerror/nrf_strerror.h -------------------------------------------------------------------------------- /nRF5-sdk/components/libraries/timer/app_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/libraries/timer/app_timer.c -------------------------------------------------------------------------------- /nRF5-sdk/components/libraries/timer/app_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/libraries/timer/app_timer.h -------------------------------------------------------------------------------- /nRF5-sdk/components/libraries/util/app_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/libraries/util/app_error.c -------------------------------------------------------------------------------- /nRF5-sdk/components/libraries/util/app_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/libraries/util/app_error.h -------------------------------------------------------------------------------- /nRF5-sdk/components/libraries/util/app_error_weak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/libraries/util/app_error_weak.c -------------------------------------------------------------------------------- /nRF5-sdk/components/libraries/util/app_error_weak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/libraries/util/app_error_weak.h -------------------------------------------------------------------------------- /nRF5-sdk/components/libraries/util/app_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/libraries/util/app_util.h -------------------------------------------------------------------------------- /nRF5-sdk/components/libraries/util/app_util_bds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/libraries/util/app_util_bds.h -------------------------------------------------------------------------------- /nRF5-sdk/components/libraries/util/app_util_platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/libraries/util/app_util_platform.c -------------------------------------------------------------------------------- /nRF5-sdk/components/libraries/util/app_util_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/libraries/util/app_util_platform.h -------------------------------------------------------------------------------- /nRF5-sdk/components/libraries/util/nordic_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/libraries/util/nordic_common.h -------------------------------------------------------------------------------- /nRF5-sdk/components/libraries/util/nrf_assert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/libraries/util/nrf_assert.c -------------------------------------------------------------------------------- /nRF5-sdk/components/libraries/util/nrf_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/libraries/util/nrf_assert.h -------------------------------------------------------------------------------- /nRF5-sdk/components/libraries/util/nrf_bitmask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/libraries/util/nrf_bitmask.h -------------------------------------------------------------------------------- /nRF5-sdk/components/libraries/util/sdk_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/libraries/util/sdk_common.h -------------------------------------------------------------------------------- /nRF5-sdk/components/libraries/util/sdk_errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/libraries/util/sdk_errors.h -------------------------------------------------------------------------------- /nRF5-sdk/components/libraries/util/sdk_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/libraries/util/sdk_macros.h -------------------------------------------------------------------------------- /nRF5-sdk/components/libraries/util/sdk_mapped_flags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/libraries/util/sdk_mapped_flags.c -------------------------------------------------------------------------------- /nRF5-sdk/components/libraries/util/sdk_mapped_flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/libraries/util/sdk_mapped_flags.h -------------------------------------------------------------------------------- /nRF5-sdk/components/libraries/util/sdk_os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/libraries/util/sdk_os.h -------------------------------------------------------------------------------- /nRF5-sdk/components/libraries/util/sdk_resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/libraries/util/sdk_resources.h -------------------------------------------------------------------------------- /nRF5-sdk/components/softdevice/common/softdevice_handler/ant_stack_handler_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/softdevice/common/softdevice_handler/ant_stack_handler_types.h -------------------------------------------------------------------------------- /nRF5-sdk/components/softdevice/common/softdevice_handler/ble_stack_handler_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/softdevice/common/softdevice_handler/ble_stack_handler_types.h -------------------------------------------------------------------------------- /nRF5-sdk/components/softdevice/common/softdevice_handler/softdevice_handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/softdevice/common/softdevice_handler/softdevice_handler.c -------------------------------------------------------------------------------- /nRF5-sdk/components/softdevice/common/softdevice_handler/softdevice_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/softdevice/common/softdevice_handler/softdevice_handler.h -------------------------------------------------------------------------------- /nRF5-sdk/components/softdevice/common/softdevice_handler/softdevice_handler_appsh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/softdevice/common/softdevice_handler/softdevice_handler_appsh.c -------------------------------------------------------------------------------- /nRF5-sdk/components/softdevice/common/softdevice_handler/softdevice_handler_appsh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/softdevice/common/softdevice_handler/softdevice_handler_appsh.h -------------------------------------------------------------------------------- /nRF5-sdk/components/softdevice/s132/headers/ble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/softdevice/s132/headers/ble.h -------------------------------------------------------------------------------- /nRF5-sdk/components/softdevice/s132/headers/ble_err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/softdevice/s132/headers/ble_err.h -------------------------------------------------------------------------------- /nRF5-sdk/components/softdevice/s132/headers/ble_gap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/softdevice/s132/headers/ble_gap.h -------------------------------------------------------------------------------- /nRF5-sdk/components/softdevice/s132/headers/ble_gatt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/softdevice/s132/headers/ble_gatt.h -------------------------------------------------------------------------------- /nRF5-sdk/components/softdevice/s132/headers/ble_gattc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/softdevice/s132/headers/ble_gattc.h -------------------------------------------------------------------------------- /nRF5-sdk/components/softdevice/s132/headers/ble_gatts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/softdevice/s132/headers/ble_gatts.h -------------------------------------------------------------------------------- /nRF5-sdk/components/softdevice/s132/headers/ble_hci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/softdevice/s132/headers/ble_hci.h -------------------------------------------------------------------------------- /nRF5-sdk/components/softdevice/s132/headers/ble_l2cap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/softdevice/s132/headers/ble_l2cap.h -------------------------------------------------------------------------------- /nRF5-sdk/components/softdevice/s132/headers/ble_ranges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/softdevice/s132/headers/ble_ranges.h -------------------------------------------------------------------------------- /nRF5-sdk/components/softdevice/s132/headers/ble_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/softdevice/s132/headers/ble_types.h -------------------------------------------------------------------------------- /nRF5-sdk/components/softdevice/s132/headers/nrf52/nrf_mbr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/softdevice/s132/headers/nrf52/nrf_mbr.h -------------------------------------------------------------------------------- /nRF5-sdk/components/softdevice/s132/headers/nrf_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/softdevice/s132/headers/nrf_error.h -------------------------------------------------------------------------------- /nRF5-sdk/components/softdevice/s132/headers/nrf_error_sdm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/softdevice/s132/headers/nrf_error_sdm.h -------------------------------------------------------------------------------- /nRF5-sdk/components/softdevice/s132/headers/nrf_error_soc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/softdevice/s132/headers/nrf_error_soc.h -------------------------------------------------------------------------------- /nRF5-sdk/components/softdevice/s132/headers/nrf_nvic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/softdevice/s132/headers/nrf_nvic.h -------------------------------------------------------------------------------- /nRF5-sdk/components/softdevice/s132/headers/nrf_sd_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/softdevice/s132/headers/nrf_sd_def.h -------------------------------------------------------------------------------- /nRF5-sdk/components/softdevice/s132/headers/nrf_sdm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/softdevice/s132/headers/nrf_sdm.h -------------------------------------------------------------------------------- /nRF5-sdk/components/softdevice/s132/headers/nrf_soc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/softdevice/s132/headers/nrf_soc.h -------------------------------------------------------------------------------- /nRF5-sdk/components/softdevice/s132/headers/nrf_svc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/softdevice/s132/headers/nrf_svc.h -------------------------------------------------------------------------------- /nRF5-sdk/components/toolchain/cmsis/include/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/toolchain/cmsis/include/cmsis_gcc.h -------------------------------------------------------------------------------- /nRF5-sdk/components/toolchain/cmsis/include/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/toolchain/cmsis/include/core_cm4.h -------------------------------------------------------------------------------- /nRF5-sdk/components/toolchain/cmsis/include/core_cmFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/toolchain/cmsis/include/core_cmFunc.h -------------------------------------------------------------------------------- /nRF5-sdk/components/toolchain/cmsis/include/core_cmInstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/toolchain/cmsis/include/core_cmInstr.h -------------------------------------------------------------------------------- /nRF5-sdk/components/toolchain/cmsis/include/core_cmSimd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/toolchain/cmsis/include/core_cmSimd.h -------------------------------------------------------------------------------- /nRF5-sdk/components/toolchain/gcc/gcc_startup_nrf52.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/toolchain/gcc/gcc_startup_nrf52.S -------------------------------------------------------------------------------- /nRF5-sdk/components/toolchain/system_nrf52.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/toolchain/system_nrf52.c -------------------------------------------------------------------------------- /nRF5-sdk/components/toolchain/system_nrf52.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/components/toolchain/system_nrf52.h -------------------------------------------------------------------------------- /nRF5-sdk/external/segger_rtt/RTT_Syscalls_GCC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/external/segger_rtt/RTT_Syscalls_GCC.c -------------------------------------------------------------------------------- /nRF5-sdk/external/segger_rtt/RTT_Syscalls_IAR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/external/segger_rtt/RTT_Syscalls_IAR.c -------------------------------------------------------------------------------- /nRF5-sdk/external/segger_rtt/RTT_Syscalls_KEIL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/external/segger_rtt/RTT_Syscalls_KEIL.c -------------------------------------------------------------------------------- /nRF5-sdk/external/segger_rtt/SEGGER_RTT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/external/segger_rtt/SEGGER_RTT.c -------------------------------------------------------------------------------- /nRF5-sdk/external/segger_rtt/SEGGER_RTT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/external/segger_rtt/SEGGER_RTT.h -------------------------------------------------------------------------------- /nRF5-sdk/external/segger_rtt/SEGGER_RTT_Conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/external/segger_rtt/SEGGER_RTT_Conf.h -------------------------------------------------------------------------------- /nRF5-sdk/external/segger_rtt/SEGGER_RTT_printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/external/segger_rtt/SEGGER_RTT_printf.c -------------------------------------------------------------------------------- /nRF5-sdk/external/segger_rtt/license/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nRF5-sdk/external/segger_rtt/license/license.txt -------------------------------------------------------------------------------- /nrf52dk-sys.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nrf52dk-sys.ld -------------------------------------------------------------------------------- /nrf5x_common.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/nrf5x_common.ld -------------------------------------------------------------------------------- /shims/sdk_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/shims/sdk_config.h -------------------------------------------------------------------------------- /shims/shimmy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/shims/shimmy.c -------------------------------------------------------------------------------- /shims/shims.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/shims/shims.h -------------------------------------------------------------------------------- /src/lang_items.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/src/lang_items.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/macros.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmunns/nrf52dk-sys/HEAD/src/macros.rs --------------------------------------------------------------------------------