├── .clang-format ├── .github ├── FUNDING.yml └── workflows │ └── build.yml ├── .gitignore ├── EPD ├── EPD_config.c ├── EPD_config.h ├── EPD_driver.c ├── EPD_driver.h ├── EPD_service.c ├── EPD_service.h ├── SSD16xx.c └── UC81xx.c ├── GUI ├── Adafruit_GFX.c ├── Adafruit_GFX.h ├── GUI.c ├── GUI.h ├── Lunar.c ├── Lunar.h ├── fonts.c ├── fonts.h ├── u8g2_font.c └── u8g2_font.h ├── Keil ├── DFU-nRF51.uvprojx ├── DFU-nRF52.uvprojx ├── EPD-nRF51.uvprojx └── EPD-nRF52.uvprojx ├── LICENSE ├── Makefile.nRF51 ├── Makefile.nRF52 ├── Makefile.win32 ├── README.md ├── SDK ├── 12.3.0_d7731ad │ ├── components │ │ ├── ble │ │ │ ├── ble_advertising │ │ │ │ ├── ble_advertising.c │ │ │ │ └── ble_advertising.h │ │ │ ├── ble_db_discovery │ │ │ │ ├── ble_db_discovery.c │ │ │ │ └── ble_db_discovery.h │ │ │ ├── ble_debug_assert_handler │ │ │ │ ├── ble_debug_assert_handler.c │ │ │ │ └── ble_debug_assert_handler.h │ │ │ ├── ble_dtm │ │ │ │ ├── ble_dtm.c │ │ │ │ ├── ble_dtm.h │ │ │ │ ├── ble_dtm_hw.h │ │ │ │ ├── ble_dtm_hw_nrf51.c │ │ │ │ └── ble_dtm_hw_nrf52.c │ │ │ ├── ble_error_log │ │ │ │ ├── ble_error_log.c │ │ │ │ └── ble_error_log.h │ │ │ ├── ble_racp │ │ │ │ ├── ble_racp.c │ │ │ │ └── ble_racp.h │ │ │ ├── ble_radio_notification │ │ │ │ ├── ble_radio_notification.c │ │ │ │ └── ble_radio_notification.h │ │ │ ├── ble_services │ │ │ │ ├── ble_ancs_c │ │ │ │ │ ├── ancs_app_attr_get.c │ │ │ │ │ ├── ancs_app_attr_get.h │ │ │ │ │ ├── ancs_attr_parser.c │ │ │ │ │ ├── ancs_attr_parser.h │ │ │ │ │ ├── ancs_tx_buffer.c │ │ │ │ │ ├── ancs_tx_buffer.h │ │ │ │ │ ├── nrf_ble_ancs_c.c │ │ │ │ │ └── nrf_ble_ancs_c.h │ │ │ │ ├── ble_ans_c │ │ │ │ │ ├── ble_ans_c.c │ │ │ │ │ └── ble_ans_c.h │ │ │ │ ├── ble_bas │ │ │ │ │ ├── ble_bas.c │ │ │ │ │ └── ble_bas.h │ │ │ │ ├── ble_bas_c │ │ │ │ │ ├── ble_bas_c.c │ │ │ │ │ └── ble_bas_c.h │ │ │ │ ├── ble_bps │ │ │ │ │ ├── ble_bps.c │ │ │ │ │ └── ble_bps.h │ │ │ │ ├── ble_cscs │ │ │ │ │ ├── ble_cscs.c │ │ │ │ │ ├── ble_cscs.h │ │ │ │ │ ├── ble_sc_ctrlpt.c │ │ │ │ │ └── ble_sc_ctrlpt.h │ │ │ │ ├── ble_cts_c │ │ │ │ │ ├── ble_cts_c.c │ │ │ │ │ └── ble_cts_c.h │ │ │ │ ├── ble_dfu │ │ │ │ │ ├── ble_dfu.c │ │ │ │ │ └── ble_dfu.h │ │ │ │ ├── ble_dis │ │ │ │ │ ├── ble_dis.c │ │ │ │ │ └── ble_dis.h │ │ │ │ ├── ble_escs │ │ │ │ │ ├── escs_defs.h │ │ │ │ │ ├── nrf_ble_escs.c │ │ │ │ │ └── nrf_ble_escs.h │ │ │ │ ├── ble_gls │ │ │ │ │ ├── ble_gls.c │ │ │ │ │ ├── ble_gls.h │ │ │ │ │ ├── ble_gls_db.c │ │ │ │ │ └── ble_gls_db.h │ │ │ │ ├── ble_hids │ │ │ │ │ ├── ble_hids.c │ │ │ │ │ └── ble_hids.h │ │ │ │ ├── ble_hrs │ │ │ │ │ ├── ble_hrs.c │ │ │ │ │ └── ble_hrs.h │ │ │ │ ├── ble_hrs_c │ │ │ │ │ ├── ble_hrs_c.c │ │ │ │ │ └── ble_hrs_c.h │ │ │ │ ├── ble_hts │ │ │ │ │ ├── ble_hts.c │ │ │ │ │ └── ble_hts.h │ │ │ │ ├── ble_ias │ │ │ │ │ ├── ble_ias.c │ │ │ │ │ └── ble_ias.h │ │ │ │ ├── ble_ias_c │ │ │ │ │ ├── ble_ias_c.c │ │ │ │ │ └── ble_ias_c.h │ │ │ │ ├── ble_lbs │ │ │ │ │ ├── ble_lbs.c │ │ │ │ │ └── ble_lbs.h │ │ │ │ ├── ble_lbs_c │ │ │ │ │ ├── ble_lbs_c.c │ │ │ │ │ └── ble_lbs_c.h │ │ │ │ ├── ble_lls │ │ │ │ │ ├── ble_lls.c │ │ │ │ │ └── ble_lls.h │ │ │ │ ├── ble_nus │ │ │ │ │ ├── ble_nus.c │ │ │ │ │ └── ble_nus.h │ │ │ │ ├── ble_nus_c │ │ │ │ │ ├── ble_nus_c.c │ │ │ │ │ └── ble_nus_c.h │ │ │ │ ├── ble_rscs │ │ │ │ │ ├── ble_rscs.c │ │ │ │ │ └── ble_rscs.h │ │ │ │ ├── ble_rscs_c │ │ │ │ │ ├── ble_rscs_c.c │ │ │ │ │ └── ble_rscs_c.h │ │ │ │ ├── ble_tps │ │ │ │ │ ├── ble_tps.c │ │ │ │ │ └── ble_tps.h │ │ │ │ ├── experimental_ble_lns │ │ │ │ │ ├── ble_ln_common.h │ │ │ │ │ ├── ble_ln_cp.c │ │ │ │ │ ├── ble_ln_cp.h │ │ │ │ │ ├── ble_ln_db.c │ │ │ │ │ ├── ble_ln_db.h │ │ │ │ │ ├── ble_lns.c │ │ │ │ │ └── ble_lns.h │ │ │ │ ├── experimental_nrf_ble_bms │ │ │ │ │ ├── nrf_ble_bms.c │ │ │ │ │ └── nrf_ble_bms.h │ │ │ │ └── experimental_nrf_ble_cgms │ │ │ │ │ ├── cgms_db.c │ │ │ │ │ ├── cgms_db.h │ │ │ │ │ ├── cgms_meas.c │ │ │ │ │ ├── cgms_meas.h │ │ │ │ │ ├── cgms_racp.c │ │ │ │ │ ├── cgms_racp.h │ │ │ │ │ ├── cgms_socp.c │ │ │ │ │ ├── cgms_socp.h │ │ │ │ │ ├── cgms_sst.c │ │ │ │ │ ├── cgms_sst.h │ │ │ │ │ ├── nrf_ble_cgms.c │ │ │ │ │ └── nrf_ble_cgms.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 │ │ │ ├── nrf_ble_qwr │ │ │ │ ├── nrf_ble_qwr.c │ │ │ │ └── nrf_ble_qwr.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.c │ │ │ │ ├── peer_data.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 │ │ │ ├── arduino_primo.h │ │ │ ├── boards.c │ │ │ ├── boards.h │ │ │ ├── d52_starterkit.h │ │ │ ├── n5_starterkit.h │ │ │ ├── nrf6310.h │ │ │ ├── pca10000.h │ │ │ ├── pca10001.h │ │ │ ├── pca10003.h │ │ │ ├── pca10028.h │ │ │ ├── pca10031.h │ │ │ ├── pca10036.h │ │ │ ├── pca10040.h │ │ │ ├── pca10056.h │ │ │ ├── pca20006.h │ │ │ └── wt51822.h │ │ ├── device │ │ │ ├── compiler_abstraction.h │ │ │ ├── nrf.h │ │ │ ├── nrf51.h │ │ │ ├── nrf51422_peripherals.h │ │ │ ├── nrf51802_peripherals.h │ │ │ ├── nrf51822_peripherals.h │ │ │ ├── nrf51_bitfields.h │ │ │ ├── nrf51_deprecated.h │ │ │ ├── nrf51_to_nrf52.h │ │ │ ├── nrf51_to_nrf52840.h │ │ │ ├── nrf52.h │ │ │ ├── nrf52832_peripherals.h │ │ │ ├── nrf52840.h │ │ │ ├── nrf52840_bitfields.h │ │ │ ├── nrf52840_peripherals.h │ │ │ ├── nrf52_bitfields.h │ │ │ ├── nrf52_name_change.h │ │ │ └── nrf52_to_nrf52840.h │ │ ├── drivers_ext │ │ │ ├── adns2080 │ │ │ │ ├── adns2080.c │ │ │ │ └── adns2080.h │ │ │ ├── cherry8x16 │ │ │ │ ├── cherry8x16.c │ │ │ │ └── cherry8x16.h │ │ │ ├── ds1624 │ │ │ │ ├── ds1624.c │ │ │ │ └── ds1624.h │ │ │ ├── max9850 │ │ │ │ ├── max9850.c │ │ │ │ └── max9850.h │ │ │ ├── mcp4725 │ │ │ │ ├── mcp4725.c │ │ │ │ └── mcp4725.h │ │ │ ├── mpu6050 │ │ │ │ ├── mpu6050.c │ │ │ │ └── mpu6050.h │ │ │ ├── nrf6350 │ │ │ │ ├── nrf6350.c │ │ │ │ └── nrf6350.h │ │ │ ├── synaptics_touchpad │ │ │ │ ├── synaptics_touchpad.c │ │ │ │ └── synaptics_touchpad.h │ │ │ └── uda1380 │ │ │ │ ├── uda1380.c │ │ │ │ └── uda1380.h │ │ ├── drivers_nrf │ │ │ ├── adc │ │ │ │ ├── nrf_drv_adc.c │ │ │ │ └── nrf_drv_adc.h │ │ │ ├── ble_flash │ │ │ │ ├── ble_flash.c │ │ │ │ └── ble_flash.h │ │ │ ├── clock │ │ │ │ ├── nrf_drv_clock.c │ │ │ │ └── nrf_drv_clock.h │ │ │ ├── common │ │ │ │ ├── nrf_drv_common.c │ │ │ │ └── nrf_drv_common.h │ │ │ ├── comp │ │ │ │ ├── nrf_drv_comp.c │ │ │ │ └── nrf_drv_comp.h │ │ │ ├── delay │ │ │ │ └── nrf_delay.h │ │ │ ├── gpiote │ │ │ │ ├── nrf_drv_gpiote.c │ │ │ │ └── nrf_drv_gpiote.h │ │ │ ├── hal │ │ │ │ ├── nrf_adc.c │ │ │ │ ├── nrf_adc.h │ │ │ │ ├── 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 │ │ │ ├── i2s │ │ │ │ ├── nrf_drv_i2s.c │ │ │ │ └── nrf_drv_i2s.h │ │ │ ├── lpcomp │ │ │ │ ├── nrf_drv_lpcomp.c │ │ │ │ └── nrf_drv_lpcomp.h │ │ │ ├── nrf_soc_nosd │ │ │ │ ├── nrf_error.h │ │ │ │ ├── nrf_nvic.c │ │ │ │ ├── nrf_nvic.h │ │ │ │ ├── nrf_soc.c │ │ │ │ └── nrf_soc.h │ │ │ ├── pdm │ │ │ │ ├── nrf_drv_pdm.c │ │ │ │ └── nrf_drv_pdm.h │ │ │ ├── power │ │ │ │ ├── nrf_drv_power.c │ │ │ │ └── nrf_drv_power.h │ │ │ ├── ppi │ │ │ │ ├── nrf_drv_ppi.c │ │ │ │ └── nrf_drv_ppi.h │ │ │ ├── pwm │ │ │ │ ├── nrf_drv_pwm.c │ │ │ │ └── nrf_drv_pwm.h │ │ │ ├── qdec │ │ │ │ ├── nrf_drv_qdec.c │ │ │ │ └── nrf_drv_qdec.h │ │ │ ├── qspi │ │ │ │ ├── nrf_drv_qspi.c │ │ │ │ └── nrf_drv_qspi.h │ │ │ ├── radio_config │ │ │ │ ├── radio_config.c │ │ │ │ └── radio_config.h │ │ │ ├── rng │ │ │ │ ├── nrf_drv_rng.c │ │ │ │ └── nrf_drv_rng.h │ │ │ ├── rtc │ │ │ │ ├── nrf_drv_rtc.c │ │ │ │ └── nrf_drv_rtc.h │ │ │ ├── saadc │ │ │ │ ├── nrf_drv_saadc.c │ │ │ │ └── nrf_drv_saadc.h │ │ │ ├── sdio │ │ │ │ ├── config │ │ │ │ │ └── sdio_config.h │ │ │ │ ├── sdio.c │ │ │ │ └── sdio.h │ │ │ ├── spi_master │ │ │ │ ├── nrf_drv_spi.c │ │ │ │ ├── nrf_drv_spi.h │ │ │ │ ├── spi_5W_master.c │ │ │ │ └── spi_5W_master.h │ │ │ ├── spi_slave │ │ │ │ ├── nrf_drv_spis.c │ │ │ │ └── nrf_drv_spis.h │ │ │ ├── swi │ │ │ │ ├── nrf_drv_swi.c │ │ │ │ └── nrf_drv_swi.h │ │ │ ├── systick │ │ │ │ ├── nrf_drv_systick.c │ │ │ │ └── nrf_drv_systick.h │ │ │ ├── timer │ │ │ │ ├── nrf_drv_timer.c │ │ │ │ └── nrf_drv_timer.h │ │ │ ├── twi_master │ │ │ │ ├── deprecated │ │ │ │ │ ├── config │ │ │ │ │ │ └── twi_master_config.h │ │ │ │ │ ├── twi_hw_master.c │ │ │ │ │ ├── twi_master.h │ │ │ │ │ └── twi_sw_master.c │ │ │ │ ├── nrf_drv_twi.c │ │ │ │ └── nrf_drv_twi.h │ │ │ ├── twis_slave │ │ │ │ ├── nrf_drv_twis.c │ │ │ │ ├── nrf_drv_twis.h │ │ │ │ └── nrf_drv_twis_inst.def │ │ │ ├── uart │ │ │ │ ├── nrf_drv_uart.c │ │ │ │ └── nrf_drv_uart.h │ │ │ ├── usbd │ │ │ │ ├── nrf_drv_usbd.c │ │ │ │ └── nrf_drv_usbd.h │ │ │ └── wdt │ │ │ │ ├── nrf_drv_wdt.c │ │ │ │ └── nrf_drv_wdt.h │ │ ├── libraries │ │ │ ├── atomic │ │ │ │ ├── nrf_atomic.h │ │ │ │ ├── nrf_atomic_internal.h │ │ │ │ └── nrf_atomic_sanity_check.h │ │ │ ├── atomic_fifo │ │ │ │ ├── app_atfifo.c │ │ │ │ ├── app_atfifo.h │ │ │ │ └── app_atfifo_internal.h │ │ │ ├── balloc │ │ │ │ ├── nrf_balloc.c │ │ │ │ └── nrf_balloc.h │ │ │ ├── block_dev │ │ │ │ ├── empty │ │ │ │ │ ├── nrf_block_dev_empty.c │ │ │ │ │ └── nrf_block_dev_empty.h │ │ │ │ ├── nrf_block_dev.h │ │ │ │ ├── qspi │ │ │ │ │ ├── nrf_block_dev_qspi.c │ │ │ │ │ ├── nrf_block_dev_qspi.h │ │ │ │ │ ├── nrf_serial_flash_params.c │ │ │ │ │ └── nrf_serial_flash_params.h │ │ │ │ ├── ram │ │ │ │ │ ├── nrf_block_dev_ram.c │ │ │ │ │ └── nrf_block_dev_ram.h │ │ │ │ └── sdc │ │ │ │ │ ├── nrf_block_dev_sdc.c │ │ │ │ │ └── nrf_block_dev_sdc.h │ │ │ ├── bootloader │ │ │ │ ├── ble_dfu │ │ │ │ │ ├── nrf_ble_dfu.c │ │ │ │ │ └── nrf_ble_dfu.h │ │ │ │ ├── dfu │ │ │ │ │ ├── nrf_dfu.c │ │ │ │ │ ├── nrf_dfu.h │ │ │ │ │ ├── nrf_dfu_flash.c │ │ │ │ │ ├── nrf_dfu_flash.h │ │ │ │ │ ├── nrf_dfu_mbr.c │ │ │ │ │ ├── nrf_dfu_mbr.h │ │ │ │ │ ├── nrf_dfu_req_handler.h │ │ │ │ │ ├── nrf_dfu_settings.c │ │ │ │ │ ├── nrf_dfu_settings.h │ │ │ │ │ ├── nrf_dfu_transport.c │ │ │ │ │ ├── nrf_dfu_transport.h │ │ │ │ │ ├── nrf_dfu_types.h │ │ │ │ │ ├── nrf_dfu_utils.c │ │ │ │ │ └── nrf_dfu_utils.h │ │ │ │ ├── nrf_bootloader.c │ │ │ │ ├── nrf_bootloader.h │ │ │ │ ├── nrf_bootloader_app_start.c │ │ │ │ ├── nrf_bootloader_app_start.h │ │ │ │ ├── nrf_bootloader_info.c │ │ │ │ └── nrf_bootloader_info.h │ │ │ ├── bsp │ │ │ │ ├── bsp.c │ │ │ │ ├── bsp.h │ │ │ │ ├── bsp_btn_ant.c │ │ │ │ ├── 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 │ │ │ ├── crc32 │ │ │ │ ├── crc32.c │ │ │ │ └── crc32.h │ │ │ ├── crypto │ │ │ │ ├── nrf_crypto.c │ │ │ │ ├── nrf_crypto.h │ │ │ │ └── nrf_crypto_svc.c │ │ │ ├── csense │ │ │ │ ├── nrf_csense.c │ │ │ │ ├── nrf_csense.h │ │ │ │ └── nrf_csense_macros.h │ │ │ ├── csense_drv │ │ │ │ ├── nrf_drv_csense.c │ │ │ │ └── nrf_drv_csense.h │ │ │ ├── ecc │ │ │ │ ├── ecc.c │ │ │ │ └── ecc.h │ │ │ ├── eddystone │ │ │ │ ├── es.h │ │ │ │ ├── es_adv.c │ │ │ │ ├── es_adv.h │ │ │ │ ├── es_adv_frame.c │ │ │ │ ├── es_adv_frame.h │ │ │ │ ├── es_adv_timing.c │ │ │ │ ├── es_adv_timing.h │ │ │ │ ├── es_adv_timing_resolver.c │ │ │ │ ├── es_adv_timing_resolver.h │ │ │ │ ├── es_battery_voltage.h │ │ │ │ ├── es_battery_voltage_adc.c │ │ │ │ ├── es_battery_voltage_saadc.c │ │ │ │ ├── es_flash.c │ │ │ │ ├── es_flash.h │ │ │ │ ├── es_gatts.c │ │ │ │ ├── es_gatts.h │ │ │ │ ├── es_gatts_read.c │ │ │ │ ├── es_gatts_read.h │ │ │ │ ├── es_gatts_write.c │ │ │ │ ├── es_gatts_write.h │ │ │ │ ├── es_security.c │ │ │ │ ├── es_security.h │ │ │ │ ├── es_security_timing.c │ │ │ │ ├── es_security_timing.h │ │ │ │ ├── es_slot.c │ │ │ │ ├── es_slot.h │ │ │ │ ├── es_slot_reg.c │ │ │ │ ├── es_slot_reg.h │ │ │ │ ├── es_stopwatch.c │ │ │ │ ├── es_stopwatch.h │ │ │ │ ├── es_tlm.c │ │ │ │ ├── es_tlm.h │ │ │ │ ├── es_util.h │ │ │ │ ├── nrf_ble_es.c │ │ │ │ └── nrf_ble_es.h │ │ │ ├── experimental_section_vars │ │ │ │ └── section_vars.h │ │ │ ├── fds │ │ │ │ ├── fds.c │ │ │ │ ├── fds.h │ │ │ │ └── fds_internal_defs.h │ │ │ ├── fifo │ │ │ │ ├── app_fifo.c │ │ │ │ └── app_fifo.h │ │ │ ├── fstorage │ │ │ │ ├── fstorage.c │ │ │ │ ├── fstorage.h │ │ │ │ ├── fstorage_internal_defs.h │ │ │ │ └── fstorage_nosd.c │ │ │ ├── gpiote │ │ │ │ ├── app_gpiote.c │ │ │ │ └── app_gpiote.h │ │ │ ├── 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 │ │ │ ├── hci │ │ │ │ ├── hci_mem_pool.c │ │ │ │ ├── hci_mem_pool.h │ │ │ │ ├── hci_slip.c │ │ │ │ ├── hci_slip.h │ │ │ │ ├── hci_transport.c │ │ │ │ └── hci_transport.h │ │ │ ├── ic_info │ │ │ │ ├── nrf_ic_info.c │ │ │ │ └── nrf_ic_info.h │ │ │ ├── led_softblink │ │ │ │ ├── led_softblink.c │ │ │ │ └── led_softblink.h │ │ │ ├── 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 │ │ │ ├── low_power_pwm │ │ │ │ ├── low_power_pwm.c │ │ │ │ └── low_power_pwm.h │ │ │ ├── mailbox │ │ │ │ ├── app_mailbox.c │ │ │ │ ├── app_mailbox.h │ │ │ │ └── app_mailbox_local.h │ │ │ ├── mem_manager │ │ │ │ ├── mem_manager.c │ │ │ │ └── mem_manager.h │ │ │ ├── pwm │ │ │ │ ├── app_pwm.c │ │ │ │ └── app_pwm.h │ │ │ ├── pwr_mgmt │ │ │ │ ├── nrf_pwr_mgmt.c │ │ │ │ └── nrf_pwr_mgmt.h │ │ │ ├── queue │ │ │ │ ├── nrf_queue.c │ │ │ │ └── nrf_queue.h │ │ │ ├── scheduler │ │ │ │ ├── app_scheduler.c │ │ │ │ ├── app_scheduler.h │ │ │ │ └── app_scheduler_serconn.c │ │ │ ├── sdcard │ │ │ │ ├── app_sdcard.c │ │ │ │ └── app_sdcard.h │ │ │ ├── sensorsim │ │ │ │ ├── sensorsim.c │ │ │ │ └── sensorsim.h │ │ │ ├── sha256 │ │ │ │ ├── sha256.c │ │ │ │ └── sha256.h │ │ │ ├── simple_timer │ │ │ │ ├── app_simple_timer.c │ │ │ │ └── app_simple_timer.h │ │ │ ├── slip │ │ │ │ ├── slip.c │ │ │ │ └── slip.h │ │ │ ├── svc │ │ │ │ ├── nrf_svc_function.h │ │ │ │ ├── nrf_svc_handler.c │ │ │ │ └── nrf_svci.h │ │ │ ├── timer │ │ │ │ ├── app_timer.c │ │ │ │ ├── app_timer.h │ │ │ │ ├── app_timer_appsh.c │ │ │ │ ├── app_timer_appsh.h │ │ │ │ ├── app_timer_ble_gzll.c │ │ │ │ ├── app_timer_freertos.c │ │ │ │ └── app_timer_rtx.c │ │ │ ├── twi │ │ │ │ ├── app_twi.c │ │ │ │ └── app_twi.h │ │ │ ├── uart │ │ │ │ ├── app_uart.c │ │ │ │ ├── app_uart.h │ │ │ │ ├── app_uart_fifo.c │ │ │ │ └── retarget.c │ │ │ ├── usbd │ │ │ │ ├── app_usbd.c │ │ │ │ ├── app_usbd.h │ │ │ │ ├── app_usbd_class_base.h │ │ │ │ ├── app_usbd_core.c │ │ │ │ ├── app_usbd_core.h │ │ │ │ ├── app_usbd_descriptor.h │ │ │ │ ├── app_usbd_langid.h │ │ │ │ ├── app_usbd_request.h │ │ │ │ ├── app_usbd_string_desc.c │ │ │ │ ├── app_usbd_string_desc.h │ │ │ │ ├── app_usbd_types.h │ │ │ │ ├── class │ │ │ │ │ ├── audio │ │ │ │ │ │ ├── app_usbd_audio.c │ │ │ │ │ │ ├── app_usbd_audio.h │ │ │ │ │ │ ├── app_usbd_audio_desc.h │ │ │ │ │ │ ├── app_usbd_audio_internal.h │ │ │ │ │ │ └── app_usbd_audio_types.h │ │ │ │ │ ├── cdc │ │ │ │ │ │ ├── acm │ │ │ │ │ │ │ ├── app_usbd_cdc_acm.c │ │ │ │ │ │ │ ├── app_usbd_cdc_acm.h │ │ │ │ │ │ │ └── app_usbd_cdc_acm_internal.h │ │ │ │ │ │ ├── app_usbd_cdc_desc.h │ │ │ │ │ │ └── app_usbd_cdc_types.h │ │ │ │ │ ├── hid │ │ │ │ │ │ ├── app_usbd_hid.c │ │ │ │ │ │ ├── app_usbd_hid.h │ │ │ │ │ │ ├── app_usbd_hid_types.h │ │ │ │ │ │ ├── generic │ │ │ │ │ │ │ ├── app_usbd_hid_generic.c │ │ │ │ │ │ │ ├── app_usbd_hid_generic.h │ │ │ │ │ │ │ ├── app_usbd_hid_generic_desc.h │ │ │ │ │ │ │ └── app_usbd_hid_generic_internal.h │ │ │ │ │ │ ├── kbd │ │ │ │ │ │ │ ├── app_usbd_hid_kbd.c │ │ │ │ │ │ │ ├── app_usbd_hid_kbd.h │ │ │ │ │ │ │ ├── app_usbd_hid_kbd_desc.h │ │ │ │ │ │ │ └── app_usbd_hid_kbd_internal.h │ │ │ │ │ │ └── mouse │ │ │ │ │ │ │ ├── app_usbd_hid_mouse.c │ │ │ │ │ │ │ ├── app_usbd_hid_mouse.h │ │ │ │ │ │ │ ├── app_usbd_hid_mouse_desc.h │ │ │ │ │ │ │ └── app_usbd_hid_mouse_internal.h │ │ │ │ │ └── msc │ │ │ │ │ │ ├── app_usbd_msc.c │ │ │ │ │ │ ├── app_usbd_msc.h │ │ │ │ │ │ ├── app_usbd_msc_desc.h │ │ │ │ │ │ ├── app_usbd_msc_internal.h │ │ │ │ │ │ ├── app_usbd_msc_scsi.h │ │ │ │ │ │ └── app_usbd_msc_types.h │ │ │ │ └── config │ │ │ │ │ └── app_usbd_string_config.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.c │ │ │ │ ├── sdk_errors.h │ │ │ │ ├── sdk_macros.h │ │ │ │ ├── sdk_mapped_flags.c │ │ │ │ ├── sdk_mapped_flags.h │ │ │ │ ├── sdk_os.h │ │ │ │ └── sdk_resources.h │ │ ├── sdk_validation.h │ │ ├── serialization │ │ │ ├── application │ │ │ │ ├── codecs │ │ │ │ │ ├── common │ │ │ │ │ │ ├── ble_dtm_app.c │ │ │ │ │ │ ├── ble_dtm_app.h │ │ │ │ │ │ ├── ble_dtm_init.c │ │ │ │ │ │ ├── conn_systemreset.c │ │ │ │ │ │ └── conn_systemreset.h │ │ │ │ │ └── s132 │ │ │ │ │ │ ├── middleware │ │ │ │ │ │ ├── app_mw_ble.c │ │ │ │ │ │ ├── app_mw_ble_gap.c │ │ │ │ │ │ ├── app_mw_ble_gattc.c │ │ │ │ │ │ ├── app_mw_ble_gatts.c │ │ │ │ │ │ ├── app_mw_ble_l2cap.c │ │ │ │ │ │ └── app_mw_nrf_soc.c │ │ │ │ │ │ └── serializers │ │ │ │ │ │ ├── app_ble_gap_sec_keys.c │ │ │ │ │ │ ├── app_ble_gap_sec_keys.h │ │ │ │ │ │ ├── app_ble_user_mem.c │ │ │ │ │ │ ├── app_ble_user_mem.h │ │ │ │ │ │ ├── ble_app.c │ │ │ │ │ │ ├── ble_app.h │ │ │ │ │ │ ├── ble_event.c │ │ │ │ │ │ ├── ble_evt_app.c │ │ │ │ │ │ ├── ble_evt_app.h │ │ │ │ │ │ ├── ble_gap_app.c │ │ │ │ │ │ ├── ble_gap_app.h │ │ │ │ │ │ ├── ble_gap_evt_app.c │ │ │ │ │ │ ├── ble_gap_evt_app.h │ │ │ │ │ │ ├── ble_gattc_app.c │ │ │ │ │ │ ├── ble_gattc_app.h │ │ │ │ │ │ ├── ble_gattc_evt_app.c │ │ │ │ │ │ ├── ble_gattc_evt_app.h │ │ │ │ │ │ ├── ble_gatts_app.c │ │ │ │ │ │ ├── ble_gatts_app.h │ │ │ │ │ │ ├── ble_gatts_evt_app.c │ │ │ │ │ │ ├── ble_gatts_evt_app.h │ │ │ │ │ │ ├── ble_l2cap_app.c │ │ │ │ │ │ ├── ble_l2cap_app.h │ │ │ │ │ │ ├── ble_l2cap_evt_app.c │ │ │ │ │ │ ├── ble_l2cap_evt_app.h │ │ │ │ │ │ ├── nrf_soc_app.c │ │ │ │ │ │ └── nrf_soc_app.h │ │ │ │ ├── hal │ │ │ │ │ ├── arm_startup_nrf51.s │ │ │ │ │ ├── ser_app_hal.h │ │ │ │ │ ├── ser_app_hal_nrf5x.c │ │ │ │ │ ├── ser_app_power_system_off.c │ │ │ │ │ └── ser_app_power_system_off.h │ │ │ │ └── transport │ │ │ │ │ ├── ser_sd_transport.c │ │ │ │ │ ├── ser_sd_transport.h │ │ │ │ │ ├── ser_softdevice_handler.c │ │ │ │ │ └── ser_softdevice_handler.h │ │ │ ├── common │ │ │ │ ├── ble_serialization.c │ │ │ │ ├── ble_serialization.h │ │ │ │ ├── cond_field_serialization.c │ │ │ │ ├── cond_field_serialization.h │ │ │ │ ├── ser_config.h │ │ │ │ ├── ser_dbg_sd_str.c │ │ │ │ ├── ser_dbg_sd_str.h │ │ │ │ ├── struct_ser │ │ │ │ │ └── s132 │ │ │ │ │ │ ├── ble_gap_struct_serialization.c │ │ │ │ │ │ ├── ble_gap_struct_serialization.h │ │ │ │ │ │ ├── ble_gatt_struct_serialization.c │ │ │ │ │ │ ├── ble_gatt_struct_serialization.h │ │ │ │ │ │ ├── ble_gattc_struct_serialization.c │ │ │ │ │ │ ├── ble_gattc_struct_serialization.h │ │ │ │ │ │ ├── ble_gatts_struct_serialization.c │ │ │ │ │ │ ├── ble_gatts_struct_serialization.h │ │ │ │ │ │ ├── ble_struct_serialization.c │ │ │ │ │ │ ├── ble_struct_serialization.h │ │ │ │ │ │ ├── nrf_soc_struct_serialization.c │ │ │ │ │ │ └── nrf_soc_struct_serialization.h │ │ │ │ └── transport │ │ │ │ │ ├── dtm_uart_params.h │ │ │ │ │ ├── ser_hal_transport.c │ │ │ │ │ ├── ser_hal_transport.h │ │ │ │ │ ├── ser_phy │ │ │ │ │ ├── config │ │ │ │ │ │ ├── ser_config_5W_app.h │ │ │ │ │ │ ├── ser_phy_config_app.h │ │ │ │ │ │ ├── ser_phy_config_conn.h │ │ │ │ │ │ ├── ser_phy_debug_app.h │ │ │ │ │ │ └── ser_phy_debug_conn.h │ │ │ │ │ ├── ser_phy.c │ │ │ │ │ ├── ser_phy.h │ │ │ │ │ ├── ser_phy_hci.c │ │ │ │ │ ├── ser_phy_hci.h │ │ │ │ │ ├── ser_phy_hci_slip.c │ │ │ │ │ ├── ser_phy_nohci.c │ │ │ │ │ ├── ser_phy_spi_5W_master.c │ │ │ │ │ ├── ser_phy_spi_5W_slave.c │ │ │ │ │ ├── ser_phy_spi_master.c │ │ │ │ │ ├── ser_phy_spi_slave.c │ │ │ │ │ └── ser_phy_uart.c │ │ │ │ │ └── ser_phy_debug_comm.h │ │ │ └── connectivity │ │ │ │ ├── codecs │ │ │ │ ├── common │ │ │ │ │ ├── ble_dtm_conn.h │ │ │ │ │ ├── ble_dtm_init.c │ │ │ │ │ ├── conn_mw.c │ │ │ │ │ └── conn_mw.h │ │ │ │ └── s132 │ │ │ │ │ ├── middleware │ │ │ │ │ ├── conn_mw.h │ │ │ │ │ ├── conn_mw_ble.c │ │ │ │ │ ├── conn_mw_ble.h │ │ │ │ │ ├── conn_mw_ble_gap.c │ │ │ │ │ ├── conn_mw_ble_gap.h │ │ │ │ │ ├── conn_mw_ble_gattc.c │ │ │ │ │ ├── conn_mw_ble_gattc.h │ │ │ │ │ ├── conn_mw_ble_gatts.c │ │ │ │ │ ├── conn_mw_ble_gatts.h │ │ │ │ │ ├── conn_mw_ble_l2cap.c │ │ │ │ │ ├── conn_mw_ble_l2cap.h │ │ │ │ │ ├── conn_mw_items.c │ │ │ │ │ ├── conn_mw_nrf_soc.c │ │ │ │ │ └── conn_mw_nrf_soc.h │ │ │ │ │ └── serializers │ │ │ │ │ ├── ble_conn.c │ │ │ │ │ ├── ble_conn.h │ │ │ │ │ ├── ble_event_enc.c │ │ │ │ │ ├── ble_evt_conn.c │ │ │ │ │ ├── ble_evt_conn.h │ │ │ │ │ ├── ble_gap_conn.c │ │ │ │ │ ├── ble_gap_conn.h │ │ │ │ │ ├── ble_gap_evt_conn.c │ │ │ │ │ ├── ble_gap_evt_conn.h │ │ │ │ │ ├── ble_gattc_conn.c │ │ │ │ │ ├── ble_gattc_conn.h │ │ │ │ │ ├── ble_gattc_evt_conn.c │ │ │ │ │ ├── ble_gattc_evt_conn.h │ │ │ │ │ ├── ble_gatts_conn.c │ │ │ │ │ ├── ble_gatts_conn.h │ │ │ │ │ ├── ble_gatts_evt_conn.c │ │ │ │ │ ├── ble_gatts_evt_conn.h │ │ │ │ │ ├── ble_l2cap_conn.c │ │ │ │ │ ├── ble_l2cap_conn.h │ │ │ │ │ ├── ble_l2cap_evt_conn.c │ │ │ │ │ ├── ble_l2cap_evt_conn.h │ │ │ │ │ ├── conn_ble_gap_sec_keys.c │ │ │ │ │ ├── conn_ble_gap_sec_keys.h │ │ │ │ │ ├── conn_ble_user_mem.c │ │ │ │ │ ├── conn_ble_user_mem.h │ │ │ │ │ ├── nrf_soc_conn.c │ │ │ │ │ └── nrf_soc_conn.h │ │ │ │ ├── hal │ │ │ │ ├── dtm_uart.c │ │ │ │ └── dtm_uart.h │ │ │ │ ├── pstorage_platform.h │ │ │ │ ├── ser_conn_cmd_decoder.c │ │ │ │ ├── ser_conn_cmd_decoder.h │ │ │ │ ├── ser_conn_dtm_cmd_decoder.c │ │ │ │ ├── ser_conn_dtm_cmd_decoder.h │ │ │ │ ├── ser_conn_error_handling.c │ │ │ │ ├── ser_conn_event_encoder.c │ │ │ │ ├── ser_conn_event_encoder.h │ │ │ │ ├── ser_conn_handlers.c │ │ │ │ ├── ser_conn_handlers.h │ │ │ │ ├── ser_conn_pkt_decoder.c │ │ │ │ ├── ser_conn_pkt_decoder.h │ │ │ │ ├── ser_conn_reset_cmd_decoder.c │ │ │ │ ├── ser_conn_reset_cmd_decoder.h │ │ │ │ └── startup │ │ │ │ └── arm │ │ │ │ └── arm_startup_nrf51.s │ │ ├── softdevice │ │ │ ├── common │ │ │ │ └── softdevice_handler │ │ │ │ │ ├── ant_stack_handler_types.h │ │ │ │ │ ├── app_ram_base.h │ │ │ │ │ ├── ble_stack_handler_types.h │ │ │ │ │ ├── softdevice_handler.c │ │ │ │ │ ├── softdevice_handler.h │ │ │ │ │ ├── softdevice_handler_appsh.c │ │ │ │ │ └── softdevice_handler_appsh.h │ │ │ ├── s130 │ │ │ │ ├── doc │ │ │ │ │ ├── s130_nrf51822_2.0.1_licence_agreement.pdf │ │ │ │ │ ├── s130_nrf51822_2.0.1_readme.txt │ │ │ │ │ ├── s130_nrf51822_2.0.1_releasenotes.pdf │ │ │ │ │ ├── s130_nrf51_2.0.1_licence_agreement.txt │ │ │ │ │ └── s13x_nrf5x_2.0.1_migration_document.pdf │ │ │ │ ├── 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 │ │ │ │ │ ├── nrf51 │ │ │ │ │ │ └── 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 │ │ │ │ ├── hex │ │ │ │ │ ├── s130_nrf51_2.0.1_licence-agreement.txt │ │ │ │ │ └── s130_nrf51_2.0.1_softdevice.hex │ │ │ │ └── toolchain │ │ │ │ │ ├── armgcc │ │ │ │ │ ├── armgcc_s130_nrf51422_xxaa.ld │ │ │ │ │ ├── armgcc_s130_nrf51422_xxac.ld │ │ │ │ │ ├── armgcc_s130_nrf51822_xxaa.ld │ │ │ │ │ └── armgcc_s130_nrf51822_xxab.ld │ │ │ │ │ └── iar │ │ │ │ │ ├── iar_s130_nrf51422_xxaa.icf │ │ │ │ │ ├── iar_s130_nrf51422_xxac.icf │ │ │ │ │ ├── iar_s130_nrf51822_xxaa.icf │ │ │ │ │ └── iar_s130_nrf51822_xxab.icf │ │ │ ├── s132 │ │ │ │ ├── doc │ │ │ │ │ ├── s132_nrf52_3.0.0_licence_agreement.pdf │ │ │ │ │ ├── s132_nrf52_3.0.0_licence_agreement.txt │ │ │ │ │ ├── s132_nrf52_3.0.0_migration_document.pdf │ │ │ │ │ ├── s132_nrf52_3.0.0_readme.txt │ │ │ │ │ └── s132_nrf52_3.0.0_releasenotes.pdf │ │ │ │ ├── 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 │ │ │ │ ├── hex │ │ │ │ │ ├── s132_nrf52_3.0.0_licence-agreement.txt │ │ │ │ │ └── s132_nrf52_3.0.0_softdevice.hex │ │ │ │ └── toolchain │ │ │ │ │ ├── armgcc │ │ │ │ │ └── armgcc_s132_nrf52832_xxaa.ld │ │ │ │ │ └── iar │ │ │ │ │ └── iar_s132_nrf52832_xxaa.icf │ │ │ ├── s212 │ │ │ │ ├── headers │ │ │ │ │ └── nrf_sd_def.h │ │ │ │ └── toolchain │ │ │ │ │ ├── armgcc │ │ │ │ │ └── armgcc_s212_nrf52832_xxaa.ld │ │ │ │ │ └── iar │ │ │ │ │ └── iar_s212_nrf52832_xxaa.icf │ │ │ └── s332 │ │ │ │ ├── headers │ │ │ │ └── nrf_sd_def.h │ │ │ │ └── toolchain │ │ │ │ ├── armgcc │ │ │ │ └── armgcc_s332_nrf52832_xxaa.ld │ │ │ │ └── iar │ │ │ │ └── iar_s332_nrf52832_xxaa.icf │ │ └── toolchain │ │ │ ├── arm │ │ │ ├── arm_startup_nrf51.s │ │ │ ├── arm_startup_nrf52.s │ │ │ ├── arm_startup_nrf52840.s │ │ │ └── uicr_config.h │ │ │ ├── cmsis │ │ │ └── include │ │ │ │ ├── arm_common_tables.h │ │ │ │ ├── arm_const_structs.h │ │ │ │ ├── arm_math.h │ │ │ │ ├── cmsis_armcc.h │ │ │ │ ├── cmsis_armcc_V6.h │ │ │ │ ├── cmsis_gcc.h │ │ │ │ ├── core_cm0.h │ │ │ │ ├── core_cm0plus.h │ │ │ │ ├── core_cm3.h │ │ │ │ ├── core_cm4.h │ │ │ │ ├── core_cm7.h │ │ │ │ ├── core_cmFunc.h │ │ │ │ ├── core_cmInstr.h │ │ │ │ ├── core_cmSimd.h │ │ │ │ ├── core_sc000.h │ │ │ │ └── core_sc300.h │ │ │ ├── gcc │ │ │ ├── Makefile.common │ │ │ ├── Makefile.posix │ │ │ ├── Makefile.windows │ │ │ ├── file_list.mk │ │ │ ├── gcc_nrf51_common.ld │ │ │ ├── gcc_startup_nrf51.s │ │ │ ├── gcc_startup_nrf52.s │ │ │ ├── gcc_startup_nrf52840.S │ │ │ ├── nrf51_common.ld │ │ │ ├── nrf51_xxaa.ld │ │ │ ├── nrf51_xxab.ld │ │ │ ├── nrf51_xxac.ld │ │ │ ├── nrf52840_xxaa.ld │ │ │ ├── nrf52_common.ld │ │ │ ├── nrf52_xxaa.ld │ │ │ └── nrf5x_common.ld │ │ │ ├── iar │ │ │ ├── iar_nrf51_blank_xxaa.icf │ │ │ ├── iar_nrf51_blank_xxac.icf │ │ │ ├── iar_startup_nrf51.s │ │ │ ├── iar_startup_nrf52.s │ │ │ └── iar_startup_nrf52840.s │ │ │ ├── system_nrf51.c │ │ │ ├── system_nrf51.h │ │ │ ├── system_nrf51422.c │ │ │ ├── system_nrf52.c │ │ │ ├── system_nrf52.h │ │ │ ├── system_nrf52840.c │ │ │ └── system_nrf52840.h │ ├── dfu │ │ ├── dfu-cc.pb.c │ │ ├── dfu-cc.pb.h │ │ ├── dfu_public_key.c │ │ ├── dfu_req_handling.c │ │ ├── dfu_req_handling.h │ │ ├── main.c │ │ ├── nrf_dfu_flash_buttonless.c │ │ └── sdk_config.h │ ├── external │ │ ├── micro-ecc │ │ │ ├── license.txt │ │ │ ├── micro-ecc │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── asm_arm.inc │ │ │ │ ├── curve-specific.inc │ │ │ │ ├── platform-specific.inc │ │ │ │ ├── types.h │ │ │ │ ├── uECC.c │ │ │ │ ├── uECC.h │ │ │ │ └── uECC_vli.h │ │ │ ├── nrf51_armgcc │ │ │ │ └── armgcc │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── ext_micro_ecc_gcc_nRF5x.ld │ │ │ │ │ └── micro_ecc_lib_nrf51.a │ │ │ └── nrf51_keil │ │ │ │ └── armgcc │ │ │ │ ├── Makefile │ │ │ │ ├── ext_micro_ecc_gcc_nRF5x.ld │ │ │ │ └── micro_ecc_lib_nrf51.lib │ │ ├── nano-pb │ │ │ ├── LICENSE.txt │ │ │ ├── pb.h │ │ │ ├── pb_common.c │ │ │ ├── pb_common.h │ │ │ ├── pb_decode.c │ │ │ ├── pb_decode.h │ │ │ ├── pb_encode.c │ │ │ └── pb_encode.h │ │ └── 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 │ ├── gcc_nrf51.ld │ └── sdk_config.h └── 17.1.0_ddde560 │ ├── components │ ├── ble │ │ ├── ble_advertising │ │ │ ├── ble_advertising.c │ │ │ └── ble_advertising.h │ │ ├── ble_db_discovery │ │ │ ├── ble_db_discovery.c │ │ │ └── ble_db_discovery.h │ │ ├── ble_dtm │ │ │ ├── ble_dtm.c │ │ │ ├── ble_dtm.h │ │ │ ├── ble_dtm_hw.h │ │ │ ├── ble_dtm_hw_nrf51.c │ │ │ └── ble_dtm_hw_nrf52.c │ │ ├── ble_link_ctx_manager │ │ │ ├── ble_link_ctx_manager.c │ │ │ └── ble_link_ctx_manager.h │ │ ├── ble_racp │ │ │ ├── ble_racp.c │ │ │ └── ble_racp.h │ │ ├── ble_radio_notification │ │ │ ├── ble_radio_notification.c │ │ │ └── ble_radio_notification.h │ │ ├── ble_services │ │ │ ├── ble_ancs_c │ │ │ │ ├── ancs_app_attr_get.c │ │ │ │ ├── ancs_app_attr_get.h │ │ │ │ ├── ancs_attr_parser.c │ │ │ │ ├── ancs_attr_parser.h │ │ │ │ ├── nrf_ble_ancs_c.c │ │ │ │ └── nrf_ble_ancs_c.h │ │ │ ├── ble_ans_c │ │ │ │ ├── ble_ans_c.c │ │ │ │ └── ble_ans_c.h │ │ │ ├── ble_bas │ │ │ │ ├── ble_bas.c │ │ │ │ └── ble_bas.h │ │ │ ├── ble_bas_c │ │ │ │ ├── ble_bas_c.c │ │ │ │ └── ble_bas_c.h │ │ │ ├── ble_bps │ │ │ │ ├── ble_bps.c │ │ │ │ └── ble_bps.h │ │ │ ├── ble_cscs │ │ │ │ ├── ble_cscs.c │ │ │ │ ├── ble_cscs.h │ │ │ │ ├── ble_sc_ctrlpt.c │ │ │ │ └── ble_sc_ctrlpt.h │ │ │ ├── ble_cts_c │ │ │ │ ├── ble_cts_c.c │ │ │ │ └── ble_cts_c.h │ │ │ ├── ble_dfu │ │ │ │ ├── ble_dfu.c │ │ │ │ ├── ble_dfu.h │ │ │ │ ├── ble_dfu_bonded.c │ │ │ │ └── ble_dfu_unbonded.c │ │ │ ├── ble_dis │ │ │ │ ├── ble_dis.c │ │ │ │ └── ble_dis.h │ │ │ ├── ble_dis_c │ │ │ │ ├── ble_dis_c.c │ │ │ │ └── ble_dis_c.h │ │ │ ├── ble_escs │ │ │ │ ├── escs_defs.h │ │ │ │ ├── nrf_ble_escs.c │ │ │ │ └── nrf_ble_escs.h │ │ │ ├── ble_gls │ │ │ │ ├── ble_gls.c │ │ │ │ ├── ble_gls.h │ │ │ │ ├── ble_gls_db.c │ │ │ │ └── ble_gls_db.h │ │ │ ├── ble_hids │ │ │ │ ├── ble_hids.c │ │ │ │ └── ble_hids.h │ │ │ ├── ble_hrs │ │ │ │ ├── ble_hrs.c │ │ │ │ └── ble_hrs.h │ │ │ ├── ble_hrs_c │ │ │ │ ├── ble_hrs_c.c │ │ │ │ └── ble_hrs_c.h │ │ │ ├── ble_hts │ │ │ │ ├── ble_hts.c │ │ │ │ └── ble_hts.h │ │ │ ├── ble_ias │ │ │ │ ├── ble_ias.c │ │ │ │ └── ble_ias.h │ │ │ ├── ble_ias_c │ │ │ │ ├── ble_ias_c.c │ │ │ │ └── ble_ias_c.h │ │ │ ├── ble_ipsp │ │ │ │ ├── ble_ipsp.c │ │ │ │ └── ble_ipsp.h │ │ │ ├── ble_lbs │ │ │ │ ├── ble_lbs.c │ │ │ │ └── ble_lbs.h │ │ │ ├── ble_lbs_c │ │ │ │ ├── ble_lbs_c.c │ │ │ │ └── ble_lbs_c.h │ │ │ ├── ble_lls │ │ │ │ ├── ble_lls.c │ │ │ │ └── ble_lls.h │ │ │ ├── ble_nus │ │ │ │ ├── ble_nus.c │ │ │ │ └── ble_nus.h │ │ │ ├── ble_nus_c │ │ │ │ ├── ble_nus_c.c │ │ │ │ └── ble_nus_c.h │ │ │ ├── ble_rscs │ │ │ │ ├── ble_rscs.c │ │ │ │ └── ble_rscs.h │ │ │ ├── ble_rscs_c │ │ │ │ ├── ble_rscs_c.c │ │ │ │ └── ble_rscs_c.h │ │ │ ├── ble_tps │ │ │ │ ├── ble_tps.c │ │ │ │ └── ble_tps.h │ │ │ ├── eddystone │ │ │ │ ├── es.h │ │ │ │ ├── es_adv.c │ │ │ │ ├── es_adv.h │ │ │ │ ├── es_adv_frame.c │ │ │ │ ├── es_adv_frame.h │ │ │ │ ├── es_adv_timing.c │ │ │ │ ├── es_adv_timing.h │ │ │ │ ├── es_adv_timing_resolver.c │ │ │ │ ├── es_adv_timing_resolver.h │ │ │ │ ├── es_battery_voltage.h │ │ │ │ ├── es_battery_voltage_saadc.c │ │ │ │ ├── es_flash.c │ │ │ │ ├── es_flash.h │ │ │ │ ├── es_gatts.c │ │ │ │ ├── es_gatts.h │ │ │ │ ├── es_gatts_read.c │ │ │ │ ├── es_gatts_read.h │ │ │ │ ├── es_gatts_write.c │ │ │ │ ├── es_gatts_write.h │ │ │ │ ├── es_security.c │ │ │ │ ├── es_security.h │ │ │ │ ├── es_slot.c │ │ │ │ ├── es_slot.h │ │ │ │ ├── es_slot_reg.c │ │ │ │ ├── es_slot_reg.h │ │ │ │ ├── es_stopwatch.c │ │ │ │ ├── es_stopwatch.h │ │ │ │ ├── es_tlm.c │ │ │ │ ├── es_tlm.h │ │ │ │ ├── es_util.h │ │ │ │ ├── nrf_ble_es.c │ │ │ │ └── nrf_ble_es.h │ │ │ ├── experimental_ble_lns │ │ │ │ ├── ble_ln_common.h │ │ │ │ ├── ble_ln_cp.c │ │ │ │ ├── ble_ln_cp.h │ │ │ │ ├── ble_ln_db.c │ │ │ │ ├── ble_ln_db.h │ │ │ │ ├── ble_lns.c │ │ │ │ └── ble_lns.h │ │ │ ├── experimental_ble_ots │ │ │ │ ├── ble_ots.c │ │ │ │ ├── ble_ots.h │ │ │ │ ├── ble_ots_l2cap.c │ │ │ │ ├── ble_ots_l2cap.h │ │ │ │ ├── ble_ots_oacp.c │ │ │ │ ├── ble_ots_oacp.h │ │ │ │ ├── ble_ots_object.c │ │ │ │ └── ble_ots_object.h │ │ │ ├── experimental_gatts_c │ │ │ │ ├── nrf_ble_gatts_c.c │ │ │ │ └── nrf_ble_gatts_c.h │ │ │ ├── experimental_nrf_ble_cgms │ │ │ │ ├── cgms_db.c │ │ │ │ ├── cgms_db.h │ │ │ │ ├── cgms_meas.c │ │ │ │ ├── cgms_meas.h │ │ │ │ ├── cgms_racp.c │ │ │ │ ├── cgms_racp.h │ │ │ │ ├── cgms_socp.c │ │ │ │ ├── cgms_socp.h │ │ │ │ ├── cgms_sst.c │ │ │ │ ├── cgms_sst.h │ │ │ │ ├── nrf_ble_cgms.c │ │ │ │ └── nrf_ble_cgms.h │ │ │ ├── experimental_nrf_ble_ots_c │ │ │ │ ├── nrf_ble_ots_c.c │ │ │ │ ├── nrf_ble_ots_c.h │ │ │ │ ├── nrf_ble_ots_c_l2cap.c │ │ │ │ ├── nrf_ble_ots_c_l2cap.h │ │ │ │ ├── nrf_ble_ots_c_oacp.c │ │ │ │ └── nrf_ble_ots_c_oacp.h │ │ │ └── nrf_ble_bms │ │ │ │ ├── nrf_ble_bms.c │ │ │ │ └── nrf_ble_bms.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 │ │ ├── nrf_ble_gq │ │ │ ├── nrf_ble_gq.c │ │ │ └── nrf_ble_gq.h │ │ ├── nrf_ble_qwr │ │ │ ├── nrf_ble_qwr.c │ │ │ └── nrf_ble_qwr.h │ │ ├── nrf_ble_scan │ │ │ ├── nrf_ble_scan.c │ │ │ └── nrf_ble_scan.h │ │ └── peer_manager │ │ │ ├── auth_status_tracker.c │ │ │ ├── auth_status_tracker.h │ │ │ ├── gatt_cache_manager.c │ │ │ ├── gatt_cache_manager.h │ │ │ ├── gatts_cache_manager.c │ │ │ ├── gatts_cache_manager.h │ │ │ ├── id_manager.c │ │ │ ├── id_manager.h │ │ │ ├── nrf_ble_lesc.c │ │ │ ├── nrf_ble_lesc.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_handler.c │ │ │ ├── peer_manager_handler.h │ │ │ ├── peer_manager_internal.h │ │ │ ├── peer_manager_types.h │ │ │ ├── pm_buffer.c │ │ │ ├── pm_buffer.h │ │ │ ├── security_dispatcher.c │ │ │ ├── security_dispatcher.h │ │ │ ├── security_manager.c │ │ │ └── security_manager.h │ ├── boards │ │ ├── arduino_joystick_shield_v1a.h │ │ ├── arduino_primo.h │ │ ├── boards.c │ │ ├── boards.h │ │ ├── d52_starterkit.h │ │ ├── n5_starterkit.h │ │ ├── nrf6310.h │ │ ├── pca10000.h │ │ ├── pca10001.h │ │ ├── pca10003.h │ │ ├── pca10028.h │ │ ├── pca10031.h │ │ ├── pca10036.h │ │ ├── pca10040.h │ │ ├── pca10056.h │ │ ├── pca10059.h │ │ ├── pca10100.h │ │ ├── pca10112.h │ │ ├── pca20006.h │ │ ├── pca20020.h │ │ └── wt51822.h │ ├── drivers_ext │ │ ├── adns2080 │ │ │ ├── adns2080.c │ │ │ └── adns2080.h │ │ ├── bh1745 │ │ │ ├── bh1745.c │ │ │ ├── bh1745.h │ │ │ └── bh1745_internal.h │ │ ├── ccs811 │ │ │ ├── ccs811.c │ │ │ ├── ccs811.h │ │ │ └── ccs811_internal.h │ │ ├── cherry8x16 │ │ │ ├── cherry8x16.c │ │ │ └── cherry8x16.h │ │ ├── ds1624 │ │ │ ├── ds1624.c │ │ │ └── ds1624.h │ │ ├── hts221 │ │ │ ├── hts221.c │ │ │ ├── hts221.h │ │ │ └── hts221_internal.h │ │ ├── ili9341 │ │ │ └── ili9341.c │ │ ├── lis2dh12 │ │ │ ├── lis2dh12.c │ │ │ ├── lis2dh12.h │ │ │ └── lis2dh12_internal.h │ │ ├── lps22hb │ │ │ ├── lps22hb.c │ │ │ ├── lps22hb.h │ │ │ └── lps22hb_internal.h │ │ ├── max9850 │ │ │ ├── max9850.c │ │ │ └── max9850.h │ │ ├── mcp4725 │ │ │ ├── mcp4725.c │ │ │ └── mcp4725.h │ │ ├── mpu6050 │ │ │ ├── mpu6050.c │ │ │ └── mpu6050.h │ │ ├── nrf21540 │ │ │ ├── nrf21540.c │ │ │ ├── nrf21540.h │ │ │ ├── nrf21540_defs.h │ │ │ ├── nrf21540_gpio.c │ │ │ ├── nrf21540_gpio.h │ │ │ ├── nrf21540_macro.h │ │ │ ├── nrf21540_spi.c │ │ │ ├── nrf21540_spi.h │ │ │ └── nrf21540_types.h │ │ ├── nrf6350 │ │ │ ├── nrf6350.c │ │ │ └── nrf6350.h │ │ ├── pcal6408a │ │ │ ├── pcal6408a.c │ │ │ ├── pcal6408a.h │ │ │ └── pcal6408a_internal.h │ │ ├── st7735 │ │ │ └── st7735.c │ │ ├── sx1509b │ │ │ ├── sx1509b.c │ │ │ ├── sx1509b.h │ │ │ └── sx1509b_internal.h │ │ ├── synaptics_touchpad │ │ │ ├── synaptics_touchpad.c │ │ │ └── synaptics_touchpad.h │ │ └── uda1380 │ │ │ ├── uda1380.c │ │ │ └── uda1380.h │ ├── drivers_nrf │ │ ├── nrf_soc_nosd │ │ │ ├── nrf_error.h │ │ │ ├── nrf_nvic.c │ │ │ ├── nrf_nvic.h │ │ │ ├── nrf_sdm.h │ │ │ ├── nrf_soc.c │ │ │ └── nrf_soc.h │ │ ├── radio_config │ │ │ ├── radio_config.c │ │ │ └── radio_config.h │ │ ├── sdio │ │ │ ├── config │ │ │ │ └── sdio_config.h │ │ │ ├── sdio.c │ │ │ └── sdio.h │ │ ├── spi_master │ │ │ ├── spi_5W_master.c │ │ │ └── spi_5W_master.h │ │ └── twi_master │ │ │ └── deprecated │ │ │ ├── config │ │ │ └── twi_master_config.h │ │ │ ├── twi_hw_master.c │ │ │ ├── twi_master.h │ │ │ └── twi_sw_master.c │ ├── libraries │ │ ├── atomic │ │ │ ├── nrf_atomic.c │ │ │ ├── nrf_atomic.h │ │ │ ├── nrf_atomic_internal.h │ │ │ └── nrf_atomic_sanity_check.h │ │ ├── atomic_fifo │ │ │ ├── nrf_atfifo.c │ │ │ ├── nrf_atfifo.h │ │ │ └── nrf_atfifo_internal.h │ │ ├── atomic_flags │ │ │ ├── nrf_atflags.c │ │ │ └── nrf_atflags.h │ │ ├── balloc │ │ │ ├── nrf_balloc.c │ │ │ └── nrf_balloc.h │ │ ├── block_dev │ │ │ ├── empty │ │ │ │ ├── nrf_block_dev_empty.c │ │ │ │ └── nrf_block_dev_empty.h │ │ │ ├── nrf_block_dev.h │ │ │ ├── qspi │ │ │ │ ├── nrf_block_dev_qspi.c │ │ │ │ ├── nrf_block_dev_qspi.h │ │ │ │ ├── nrf_serial_flash_params.c │ │ │ │ └── nrf_serial_flash_params.h │ │ │ ├── ram │ │ │ │ ├── nrf_block_dev_ram.c │ │ │ │ └── nrf_block_dev_ram.h │ │ │ └── sdc │ │ │ │ ├── nrf_block_dev_sdc.c │ │ │ │ └── nrf_block_dev_sdc.h │ │ ├── bootloader │ │ │ ├── ant_dfu │ │ │ │ └── nrf_dfu_ant.c │ │ │ ├── ble_dfu │ │ │ │ ├── nrf_dfu_ble.c │ │ │ │ ├── nrf_dfu_ble.h │ │ │ │ └── nrf_dfu_ble_svci_bond_sharing.h │ │ │ ├── dfu │ │ │ │ ├── dfu-cc.options │ │ │ │ ├── dfu-cc.pb.c │ │ │ │ ├── dfu-cc.pb.h │ │ │ │ ├── dfu-cc.proto │ │ │ │ ├── nrf_dfu.c │ │ │ │ ├── nrf_dfu.h │ │ │ │ ├── nrf_dfu_flash.c │ │ │ │ ├── nrf_dfu_flash.h │ │ │ │ ├── nrf_dfu_handling_error.c │ │ │ │ ├── nrf_dfu_handling_error.h │ │ │ │ ├── nrf_dfu_mbr.c │ │ │ │ ├── nrf_dfu_mbr.h │ │ │ │ ├── nrf_dfu_req_handler.c │ │ │ │ ├── nrf_dfu_req_handler.h │ │ │ │ ├── nrf_dfu_settings.c │ │ │ │ ├── nrf_dfu_settings.h │ │ │ │ ├── nrf_dfu_settings_svci.c │ │ │ │ ├── nrf_dfu_svci.c │ │ │ │ ├── nrf_dfu_svci_handler.c │ │ │ │ ├── nrf_dfu_transport.c │ │ │ │ ├── nrf_dfu_transport.h │ │ │ │ ├── nrf_dfu_trigger_usb.c │ │ │ │ ├── nrf_dfu_trigger_usb.h │ │ │ │ ├── nrf_dfu_types.h │ │ │ │ ├── nrf_dfu_utils.c │ │ │ │ ├── nrf_dfu_utils.h │ │ │ │ ├── nrf_dfu_validation.c │ │ │ │ ├── nrf_dfu_validation.h │ │ │ │ ├── nrf_dfu_ver_validation.c │ │ │ │ └── nrf_dfu_ver_validation.h │ │ │ ├── nrf_bootloader.c │ │ │ ├── nrf_bootloader.h │ │ │ ├── nrf_bootloader_app_start.c │ │ │ ├── nrf_bootloader_app_start.h │ │ │ ├── nrf_bootloader_app_start_final.c │ │ │ ├── nrf_bootloader_dfu_timers.c │ │ │ ├── nrf_bootloader_dfu_timers.h │ │ │ ├── nrf_bootloader_fw_activation.c │ │ │ ├── nrf_bootloader_fw_activation.h │ │ │ ├── nrf_bootloader_info.c │ │ │ ├── nrf_bootloader_info.h │ │ │ ├── nrf_bootloader_wdt.c │ │ │ ├── nrf_bootloader_wdt.h │ │ │ └── serial_dfu │ │ │ │ ├── nrf_dfu_serial.c │ │ │ │ ├── nrf_dfu_serial.h │ │ │ │ ├── nrf_dfu_serial_uart.c │ │ │ │ └── nrf_dfu_serial_usb.c │ │ ├── bsp │ │ │ ├── bsp.c │ │ │ ├── bsp.h │ │ │ ├── bsp_btn_ant.c │ │ │ ├── bsp_btn_ant.h │ │ │ ├── bsp_btn_ble.c │ │ │ ├── bsp_btn_ble.h │ │ │ ├── bsp_cli.c │ │ │ ├── bsp_cli.h │ │ │ ├── bsp_config.h │ │ │ ├── bsp_nfc.c │ │ │ └── bsp_nfc.h │ │ ├── button │ │ │ ├── app_button.c │ │ │ └── app_button.h │ │ ├── cli │ │ │ ├── ble_uart │ │ │ │ ├── nrf_cli_ble_uart.c │ │ │ │ └── nrf_cli_ble_uart.h │ │ │ ├── cdc_acm │ │ │ │ ├── nrf_cli_cdc_acm.c │ │ │ │ └── nrf_cli_cdc_acm.h │ │ │ ├── cli_utils_cmds.c │ │ │ ├── libuarte │ │ │ │ ├── nrf_cli_libuarte.c │ │ │ │ └── nrf_cli_libuarte.h │ │ │ ├── nrf_cli.c │ │ │ ├── nrf_cli.h │ │ │ ├── nrf_cli_types.h │ │ │ ├── nrf_cli_vt100.h │ │ │ ├── rtt │ │ │ │ ├── nrf_cli_rtt.c │ │ │ │ └── nrf_cli_rtt.h │ │ │ └── uart │ │ │ │ ├── nrf_cli_uart.c │ │ │ │ └── nrf_cli_uart.h │ │ ├── crc16 │ │ │ ├── crc16.c │ │ │ └── crc16.h │ │ ├── crc32 │ │ │ ├── crc32.c │ │ │ └── crc32.h │ │ ├── crypto │ │ │ ├── backend │ │ │ │ ├── cc310 │ │ │ │ │ ├── cc310_backend_aes.c │ │ │ │ │ ├── cc310_backend_aes.h │ │ │ │ │ ├── cc310_backend_aes_aead.c │ │ │ │ │ ├── cc310_backend_aes_aead.h │ │ │ │ │ ├── cc310_backend_chacha_poly_aead.c │ │ │ │ │ ├── cc310_backend_chacha_poly_aead.h │ │ │ │ │ ├── cc310_backend_ecc.c │ │ │ │ │ ├── cc310_backend_ecc.h │ │ │ │ │ ├── cc310_backend_ecdh.c │ │ │ │ │ ├── cc310_backend_ecdh.h │ │ │ │ │ ├── cc310_backend_ecdsa.c │ │ │ │ │ ├── cc310_backend_ecdsa.h │ │ │ │ │ ├── cc310_backend_eddsa.c │ │ │ │ │ ├── cc310_backend_eddsa.h │ │ │ │ │ ├── cc310_backend_hash.c │ │ │ │ │ ├── cc310_backend_hash.h │ │ │ │ │ ├── cc310_backend_hmac.c │ │ │ │ │ ├── cc310_backend_hmac.h │ │ │ │ │ ├── cc310_backend_init.c │ │ │ │ │ ├── cc310_backend_mutex.c │ │ │ │ │ ├── cc310_backend_mutex.h │ │ │ │ │ ├── cc310_backend_rng.c │ │ │ │ │ ├── cc310_backend_rng.h │ │ │ │ │ ├── cc310_backend_shared.c │ │ │ │ │ └── cc310_backend_shared.h │ │ │ │ ├── cc310_bl │ │ │ │ │ ├── cc310_bl_backend_ecc.c │ │ │ │ │ ├── cc310_bl_backend_ecc.h │ │ │ │ │ ├── cc310_bl_backend_ecdh.h │ │ │ │ │ ├── cc310_bl_backend_ecdsa.c │ │ │ │ │ ├── cc310_bl_backend_ecdsa.h │ │ │ │ │ ├── cc310_bl_backend_hash.c │ │ │ │ │ ├── cc310_bl_backend_hash.h │ │ │ │ │ ├── cc310_bl_backend_init.c │ │ │ │ │ ├── cc310_bl_backend_shared.c │ │ │ │ │ └── cc310_bl_backend_shared.h │ │ │ │ ├── cifra │ │ │ │ │ ├── cifra_backend_aes_aead.c │ │ │ │ │ └── cifra_backend_aes_aead.h │ │ │ │ ├── mbedtls │ │ │ │ │ ├── mbedtls_backend_aes.c │ │ │ │ │ ├── mbedtls_backend_aes.h │ │ │ │ │ ├── mbedtls_backend_aes_aead.c │ │ │ │ │ ├── mbedtls_backend_aes_aead.h │ │ │ │ │ ├── mbedtls_backend_ecc.c │ │ │ │ │ ├── mbedtls_backend_ecc.h │ │ │ │ │ ├── mbedtls_backend_ecdh.c │ │ │ │ │ ├── mbedtls_backend_ecdh.h │ │ │ │ │ ├── mbedtls_backend_ecdsa.c │ │ │ │ │ ├── mbedtls_backend_ecdsa.h │ │ │ │ │ ├── mbedtls_backend_hash.c │ │ │ │ │ ├── mbedtls_backend_hash.h │ │ │ │ │ ├── mbedtls_backend_hmac.c │ │ │ │ │ ├── mbedtls_backend_hmac.h │ │ │ │ │ └── mbedtls_backend_init.c │ │ │ │ ├── micro_ecc │ │ │ │ │ ├── micro_ecc_backend_ecc.c │ │ │ │ │ ├── micro_ecc_backend_ecc.h │ │ │ │ │ ├── micro_ecc_backend_ecdh.c │ │ │ │ │ ├── micro_ecc_backend_ecdh.h │ │ │ │ │ ├── micro_ecc_backend_ecdsa.c │ │ │ │ │ ├── micro_ecc_backend_ecdsa.h │ │ │ │ │ └── micro_ecc_backend_shared.h │ │ │ │ ├── nrf_hw │ │ │ │ │ ├── nrf_hw_backend_init.c │ │ │ │ │ ├── nrf_hw_backend_rng.c │ │ │ │ │ ├── nrf_hw_backend_rng.h │ │ │ │ │ ├── nrf_hw_backend_rng_mbedtls.c │ │ │ │ │ └── nrf_hw_backend_rng_mbedtls.h │ │ │ │ ├── nrf_sw │ │ │ │ │ ├── nrf_sw_backend_hash.c │ │ │ │ │ └── nrf_sw_backend_hash.h │ │ │ │ ├── oberon │ │ │ │ │ ├── oberon_backend_chacha_poly_aead.c │ │ │ │ │ ├── oberon_backend_chacha_poly_aead.h │ │ │ │ │ ├── oberon_backend_ecc.c │ │ │ │ │ ├── oberon_backend_ecc.h │ │ │ │ │ ├── oberon_backend_ecdh.c │ │ │ │ │ ├── oberon_backend_ecdh.h │ │ │ │ │ ├── oberon_backend_ecdsa.c │ │ │ │ │ ├── oberon_backend_ecdsa.h │ │ │ │ │ ├── oberon_backend_eddsa.c │ │ │ │ │ ├── oberon_backend_eddsa.h │ │ │ │ │ ├── oberon_backend_hash.c │ │ │ │ │ ├── oberon_backend_hash.h │ │ │ │ │ ├── oberon_backend_hmac.c │ │ │ │ │ └── oberon_backend_hmac.h │ │ │ │ └── optiga │ │ │ │ │ ├── optiga_backend_ecc.c │ │ │ │ │ ├── optiga_backend_ecc.h │ │ │ │ │ ├── optiga_backend_ecdh.c │ │ │ │ │ ├── optiga_backend_ecdh.h │ │ │ │ │ ├── optiga_backend_ecdsa.c │ │ │ │ │ ├── optiga_backend_ecdsa.h │ │ │ │ │ ├── optiga_backend_init.c │ │ │ │ │ ├── optiga_backend_rng.c │ │ │ │ │ ├── optiga_backend_rng.h │ │ │ │ │ ├── optiga_backend_utils.c │ │ │ │ │ └── optiga_backend_utils.h │ │ │ ├── nrf_crypto.h │ │ │ ├── nrf_crypto_aead.c │ │ │ ├── nrf_crypto_aead.h │ │ │ ├── nrf_crypto_aead_backend.h │ │ │ ├── nrf_crypto_aead_shared.h │ │ │ ├── nrf_crypto_aes.c │ │ │ ├── nrf_crypto_aes.h │ │ │ ├── nrf_crypto_aes_backend.h │ │ │ ├── nrf_crypto_aes_shared.c │ │ │ ├── nrf_crypto_aes_shared.h │ │ │ ├── nrf_crypto_ecc.c │ │ │ ├── nrf_crypto_ecc.h │ │ │ ├── nrf_crypto_ecc_backend.h │ │ │ ├── nrf_crypto_ecc_shared.h │ │ │ ├── nrf_crypto_ecdh.c │ │ │ ├── nrf_crypto_ecdh.h │ │ │ ├── nrf_crypto_ecdh_backend.h │ │ │ ├── nrf_crypto_ecdh_shared.h │ │ │ ├── nrf_crypto_ecdsa.c │ │ │ ├── nrf_crypto_ecdsa.h │ │ │ ├── nrf_crypto_ecdsa_backend.h │ │ │ ├── nrf_crypto_ecdsa_shared.h │ │ │ ├── nrf_crypto_eddsa.c │ │ │ ├── nrf_crypto_eddsa.h │ │ │ ├── nrf_crypto_eddsa_backend.h │ │ │ ├── nrf_crypto_eddsa_shared.h │ │ │ ├── nrf_crypto_error.c │ │ │ ├── nrf_crypto_error.h │ │ │ ├── nrf_crypto_hash.c │ │ │ ├── nrf_crypto_hash.h │ │ │ ├── nrf_crypto_hash_backend.h │ │ │ ├── nrf_crypto_hash_shared.h │ │ │ ├── nrf_crypto_hkdf.c │ │ │ ├── nrf_crypto_hkdf.h │ │ │ ├── nrf_crypto_hmac.c │ │ │ ├── nrf_crypto_hmac.h │ │ │ ├── nrf_crypto_hmac_backend.h │ │ │ ├── nrf_crypto_hmac_shared.h │ │ │ ├── nrf_crypto_init.c │ │ │ ├── nrf_crypto_init.h │ │ │ ├── nrf_crypto_mem.h │ │ │ ├── nrf_crypto_rng.c │ │ │ ├── nrf_crypto_rng.h │ │ │ ├── nrf_crypto_rng_backend.h │ │ │ ├── nrf_crypto_rng_shared.h │ │ │ ├── nrf_crypto_shared.c │ │ │ ├── nrf_crypto_shared.h │ │ │ └── nrf_crypto_types.h │ │ ├── csense │ │ │ ├── nrf_csense.c │ │ │ ├── nrf_csense.h │ │ │ └── nrf_csense_macros.h │ │ ├── csense_drv │ │ │ ├── nrf_drv_csense.c │ │ │ └── nrf_drv_csense.h │ │ ├── delay │ │ │ └── nrf_delay.h │ │ ├── ecc │ │ │ ├── ecc.c │ │ │ └── ecc.h │ │ ├── experimental_section_vars │ │ │ ├── nrf_section.h │ │ │ ├── nrf_section_iter.c │ │ │ └── nrf_section_iter.h │ │ ├── experimental_task_manager │ │ │ ├── task_manager.c │ │ │ ├── task_manager.h │ │ │ ├── task_manager_core_armgcc.S │ │ │ ├── task_manager_core_iar.s │ │ │ └── task_manager_core_keil.s │ │ ├── fds │ │ │ ├── fds.c │ │ │ ├── fds.h │ │ │ └── fds_internal_defs.h │ │ ├── fifo │ │ │ ├── app_fifo.c │ │ │ └── app_fifo.h │ │ ├── fstorage │ │ │ ├── nrf_fstorage.c │ │ │ ├── nrf_fstorage.h │ │ │ ├── nrf_fstorage_nvmc.c │ │ │ ├── nrf_fstorage_nvmc.h │ │ │ ├── nrf_fstorage_sd.c │ │ │ └── nrf_fstorage_sd.h │ │ ├── gfx │ │ │ ├── nrf_gfx.c │ │ │ ├── nrf_gfx.h │ │ │ └── nrf_lcd.h │ │ ├── gpiote │ │ │ ├── app_gpiote.c │ │ │ └── app_gpiote.h │ │ ├── hardfault │ │ │ ├── hardfault.h │ │ │ ├── hardfault_genhf.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 │ │ ├── hci │ │ │ ├── hci_mem_pool.c │ │ │ ├── hci_mem_pool.h │ │ │ ├── hci_slip.c │ │ │ ├── hci_slip.h │ │ │ ├── hci_transport.c │ │ │ └── hci_transport.h │ │ ├── led_softblink │ │ │ ├── led_softblink.c │ │ │ └── led_softblink.h │ │ ├── libuarte │ │ │ ├── nrf_libuarte_async.c │ │ │ ├── nrf_libuarte_async.h │ │ │ ├── nrf_libuarte_drv.c │ │ │ └── nrf_libuarte_drv.h │ │ ├── log │ │ │ ├── nrf_log.h │ │ │ ├── nrf_log_backend_flash.h │ │ │ ├── nrf_log_backend_interface.h │ │ │ ├── nrf_log_backend_rtt.h │ │ │ ├── nrf_log_backend_uart.h │ │ │ ├── nrf_log_ctrl.h │ │ │ ├── nrf_log_default_backends.h │ │ │ ├── nrf_log_instance.h │ │ │ ├── nrf_log_str_formatter.h │ │ │ ├── nrf_log_types.h │ │ │ └── src │ │ │ │ ├── nrf_log_backend_flash.c │ │ │ │ ├── nrf_log_backend_rtt.c │ │ │ │ ├── nrf_log_backend_serial.c │ │ │ │ ├── nrf_log_backend_serial.h │ │ │ │ ├── nrf_log_backend_uart.c │ │ │ │ ├── nrf_log_ctrl_internal.h │ │ │ │ ├── nrf_log_default_backends.c │ │ │ │ ├── nrf_log_frontend.c │ │ │ │ ├── nrf_log_internal.h │ │ │ │ └── nrf_log_str_formatter.c │ │ ├── low_power_pwm │ │ │ ├── low_power_pwm.c │ │ │ └── low_power_pwm.h │ │ ├── mem_manager │ │ │ ├── mem_manager.c │ │ │ └── mem_manager.h │ │ ├── memobj │ │ │ ├── nrf_memobj.c │ │ │ └── nrf_memobj.h │ │ ├── mpu │ │ │ ├── nrf_mpu_lib.c │ │ │ └── nrf_mpu_lib.h │ │ ├── mutex │ │ │ └── nrf_mtx.h │ │ ├── pwm │ │ │ ├── app_pwm.c │ │ │ └── app_pwm.h │ │ ├── pwr_mgmt │ │ │ ├── nrf_pwr_mgmt.c │ │ │ └── nrf_pwr_mgmt.h │ │ ├── queue │ │ │ ├── nrf_queue.c │ │ │ └── nrf_queue.h │ │ ├── ringbuf │ │ │ ├── nrf_ringbuf.c │ │ │ └── nrf_ringbuf.h │ │ ├── scheduler │ │ │ ├── app_scheduler.c │ │ │ ├── app_scheduler.h │ │ │ └── app_scheduler_serconn.c │ │ ├── sdcard │ │ │ ├── app_sdcard.c │ │ │ └── app_sdcard.h │ │ ├── sensorsim │ │ │ ├── sensorsim.c │ │ │ └── sensorsim.h │ │ ├── sha256 │ │ │ ├── sha256.c │ │ │ └── sha256.h │ │ ├── simple_timer │ │ │ ├── app_simple_timer.c │ │ │ └── app_simple_timer.h │ │ ├── slip │ │ │ ├── slip.c │ │ │ └── slip.h │ │ ├── sortlist │ │ │ ├── nrf_sortlist.c │ │ │ └── nrf_sortlist.h │ │ ├── spi_mngr │ │ │ ├── nrf_spi_mngr.c │ │ │ └── nrf_spi_mngr.h │ │ ├── stack_guard │ │ │ ├── nrf_stack_guard.c │ │ │ └── nrf_stack_guard.h │ │ ├── stack_info │ │ │ └── nrf_stack_info.h │ │ ├── strerror │ │ │ ├── nrf_strerror.c │ │ │ └── nrf_strerror.h │ │ ├── svc │ │ │ ├── nrf_svc_function.h │ │ │ ├── nrf_svc_handler.c │ │ │ ├── nrf_svci.h │ │ │ ├── nrf_svci_async_function.h │ │ │ └── nrf_svci_async_handler.h │ │ ├── timer │ │ │ ├── app_timer.c │ │ │ ├── app_timer.h │ │ │ ├── app_timer2.c │ │ │ ├── app_timer_freertos.c │ │ │ ├── app_timer_rtx.c │ │ │ ├── drv_rtc.c │ │ │ └── drv_rtc.h │ │ ├── twi_mngr │ │ │ ├── nrf_twi_mngr.c │ │ │ └── nrf_twi_mngr.h │ │ ├── twi_sensor │ │ │ ├── nrf_twi_sensor.c │ │ │ └── nrf_twi_sensor.h │ │ ├── uart │ │ │ ├── app_uart.c │ │ │ ├── app_uart.h │ │ │ ├── app_uart_fifo.c │ │ │ └── retarget.c │ │ ├── usbd │ │ │ ├── app_usbd.c │ │ │ ├── app_usbd.h │ │ │ ├── app_usbd_class_base.h │ │ │ ├── app_usbd_core.c │ │ │ ├── app_usbd_core.h │ │ │ ├── app_usbd_descriptor.h │ │ │ ├── app_usbd_langid.h │ │ │ ├── app_usbd_request.h │ │ │ ├── app_usbd_serial_num.c │ │ │ ├── app_usbd_serial_num.h │ │ │ ├── app_usbd_string_desc.c │ │ │ ├── app_usbd_string_desc.h │ │ │ ├── app_usbd_types.h │ │ │ └── class │ │ │ │ ├── audio │ │ │ │ ├── app_usbd_audio.c │ │ │ │ ├── app_usbd_audio.h │ │ │ │ ├── app_usbd_audio_desc.h │ │ │ │ ├── app_usbd_audio_internal.h │ │ │ │ └── app_usbd_audio_types.h │ │ │ │ ├── cdc │ │ │ │ ├── acm │ │ │ │ │ ├── app_usbd_cdc_acm.c │ │ │ │ │ ├── app_usbd_cdc_acm.h │ │ │ │ │ └── app_usbd_cdc_acm_internal.h │ │ │ │ ├── app_usbd_cdc_desc.h │ │ │ │ └── app_usbd_cdc_types.h │ │ │ │ ├── dummy │ │ │ │ ├── app_usbd_dummy.c │ │ │ │ ├── app_usbd_dummy.h │ │ │ │ ├── app_usbd_dummy_internal.h │ │ │ │ └── app_usbd_dummy_types.h │ │ │ │ ├── hid │ │ │ │ ├── app_usbd_hid.c │ │ │ │ ├── app_usbd_hid.h │ │ │ │ ├── app_usbd_hid_types.h │ │ │ │ ├── generic │ │ │ │ │ ├── app_usbd_hid_generic.c │ │ │ │ │ ├── app_usbd_hid_generic.h │ │ │ │ │ ├── app_usbd_hid_generic_desc.h │ │ │ │ │ └── app_usbd_hid_generic_internal.h │ │ │ │ ├── kbd │ │ │ │ │ ├── app_usbd_hid_kbd.c │ │ │ │ │ ├── app_usbd_hid_kbd.h │ │ │ │ │ ├── app_usbd_hid_kbd_desc.h │ │ │ │ │ └── app_usbd_hid_kbd_internal.h │ │ │ │ └── mouse │ │ │ │ │ ├── app_usbd_hid_mouse.c │ │ │ │ │ ├── app_usbd_hid_mouse.h │ │ │ │ │ ├── app_usbd_hid_mouse_desc.h │ │ │ │ │ └── app_usbd_hid_mouse_internal.h │ │ │ │ ├── msc │ │ │ │ ├── app_usbd_msc.c │ │ │ │ ├── app_usbd_msc.h │ │ │ │ ├── app_usbd_msc_desc.h │ │ │ │ ├── app_usbd_msc_internal.h │ │ │ │ ├── app_usbd_msc_scsi.h │ │ │ │ └── app_usbd_msc_types.h │ │ │ │ └── nrf_dfu_trigger │ │ │ │ ├── app_usbd_nrf_dfu_trigger.c │ │ │ │ ├── app_usbd_nrf_dfu_trigger.h │ │ │ │ ├── app_usbd_nrf_dfu_trigger_internal.h │ │ │ │ └── app_usbd_nrf_dfu_trigger_types.h │ │ └── util │ │ │ ├── app_error.c │ │ │ ├── app_error.h │ │ │ ├── app_error_handler_gcc.c │ │ │ ├── app_error_handler_iar.c │ │ │ ├── app_error_handler_keil.c │ │ │ ├── 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_alloca.h │ │ │ ├── sdk_common.h │ │ │ ├── sdk_errors.h │ │ │ ├── sdk_macros.h │ │ │ ├── sdk_mapped_flags.c │ │ │ ├── sdk_mapped_flags.h │ │ │ ├── sdk_os.h │ │ │ └── sdk_resources.h │ ├── sdk_validation.h │ ├── serialization │ │ ├── application │ │ │ ├── codecs │ │ │ │ ├── ant │ │ │ │ │ ├── middleware │ │ │ │ │ │ └── app_mw_ant.c │ │ │ │ │ └── serializers │ │ │ │ │ │ ├── ant_acknowledge_message_tx.c │ │ │ │ │ │ ├── ant_active_search_sharing_cycles_get.c │ │ │ │ │ │ ├── ant_active_search_sharing_cycles_set.c │ │ │ │ │ │ ├── ant_adv_burst_config_set.c │ │ │ │ │ │ ├── ant_app.h │ │ │ │ │ │ ├── ant_broadcast_message_tx.c │ │ │ │ │ │ ├── ant_capabilities_get.c │ │ │ │ │ │ ├── ant_channel_assign.c │ │ │ │ │ │ ├── ant_channel_close.c │ │ │ │ │ │ ├── ant_channel_id_get.c │ │ │ │ │ │ ├── ant_channel_id_set.c │ │ │ │ │ │ ├── ant_channel_low_priority_rx_search_timeout_set.c │ │ │ │ │ │ ├── ant_channel_open_with_offset.c │ │ │ │ │ │ ├── ant_channel_period_get.c │ │ │ │ │ │ ├── ant_channel_period_set.c │ │ │ │ │ │ ├── ant_channel_radio_freq_get.c │ │ │ │ │ │ ├── ant_channel_radio_freq_set.c │ │ │ │ │ │ ├── ant_channel_radio_tx_power_set.c │ │ │ │ │ │ ├── ant_channel_rx_search_timeout_set.c │ │ │ │ │ │ ├── ant_channel_status_get.c │ │ │ │ │ │ ├── ant_channel_unassign.c │ │ │ │ │ │ ├── ant_coex_config_get.c │ │ │ │ │ │ ├── ant_coex_config_set.c │ │ │ │ │ │ ├── ant_crypto_channel_enable.c │ │ │ │ │ │ ├── ant_crypto_info_get.c │ │ │ │ │ │ ├── ant_crypto_info_set.c │ │ │ │ │ │ ├── ant_crypto_key_set.c │ │ │ │ │ │ ├── ant_cw_test_mode.c │ │ │ │ │ │ ├── ant_cw_test_mode_init.c │ │ │ │ │ │ ├── ant_enable.c │ │ │ │ │ │ ├── ant_event.c │ │ │ │ │ │ ├── ant_event.h │ │ │ │ │ │ ├── ant_id_list_add.c │ │ │ │ │ │ ├── ant_id_list_config.c │ │ │ │ │ │ ├── ant_lib_config_clear.c │ │ │ │ │ │ ├── ant_lib_config_get.c │ │ │ │ │ │ ├── ant_lib_config_set.c │ │ │ │ │ │ ├── ant_network_address_set.c │ │ │ │ │ │ ├── ant_prox_search_set.c │ │ │ │ │ │ ├── ant_rx_scan_mode_start.c │ │ │ │ │ │ ├── ant_search_channel_priority_set.c │ │ │ │ │ │ ├── ant_search_waveform_set.c │ │ │ │ │ │ ├── ant_stack_reset.c │ │ │ │ │ │ └── ant_version_get.c │ │ │ │ ├── ble │ │ │ │ │ ├── middleware │ │ │ │ │ │ ├── app_mw_ble.c │ │ │ │ │ │ ├── app_mw_ble_gap.c │ │ │ │ │ │ ├── app_mw_ble_gattc.c │ │ │ │ │ │ ├── app_mw_ble_gatts.c │ │ │ │ │ │ ├── app_mw_ble_l2cap.c │ │ │ │ │ │ └── app_mw_nrf_soc.c │ │ │ │ │ └── serializers │ │ │ │ │ │ ├── app_ble_gap_sec_keys.c │ │ │ │ │ │ ├── app_ble_gap_sec_keys.h │ │ │ │ │ │ ├── app_ble_user_mem.c │ │ │ │ │ │ ├── app_ble_user_mem.h │ │ │ │ │ │ ├── ble_app.c │ │ │ │ │ │ ├── ble_app.h │ │ │ │ │ │ ├── ble_event.c │ │ │ │ │ │ ├── ble_evt_app.c │ │ │ │ │ │ ├── ble_evt_app.h │ │ │ │ │ │ ├── ble_gap_app.c │ │ │ │ │ │ ├── ble_gap_app.h │ │ │ │ │ │ ├── ble_gap_evt_app.c │ │ │ │ │ │ ├── ble_gap_evt_app.h │ │ │ │ │ │ ├── ble_gattc_app.c │ │ │ │ │ │ ├── ble_gattc_app.h │ │ │ │ │ │ ├── ble_gattc_evt_app.c │ │ │ │ │ │ ├── ble_gattc_evt_app.h │ │ │ │ │ │ ├── ble_gatts_app.c │ │ │ │ │ │ ├── ble_gatts_app.h │ │ │ │ │ │ ├── ble_gatts_evt_app.c │ │ │ │ │ │ ├── ble_gatts_evt_app.h │ │ │ │ │ │ ├── ble_l2cap_app.c │ │ │ │ │ │ ├── ble_l2cap_app.h │ │ │ │ │ │ ├── ble_l2cap_evt_app.c │ │ │ │ │ │ ├── ble_l2cap_evt_app.h │ │ │ │ │ │ ├── nrf_soc_app.c │ │ │ │ │ │ └── nrf_soc_app.h │ │ │ │ └── common │ │ │ │ │ ├── ble_dtm_app.c │ │ │ │ │ ├── ble_dtm_app.h │ │ │ │ │ ├── ble_dtm_init.c │ │ │ │ │ ├── conn_systemreset.c │ │ │ │ │ └── conn_systemreset.h │ │ │ ├── hal │ │ │ │ ├── ser_app_hal.h │ │ │ │ ├── ser_app_hal_nrf5x.c │ │ │ │ ├── ser_app_power_system_off.c │ │ │ │ └── ser_app_power_system_off.h │ │ │ └── transport │ │ │ │ ├── ser_sd_transport.c │ │ │ │ ├── ser_sd_transport.h │ │ │ │ ├── ser_softdevice_handler.c │ │ │ │ └── ser_softdevice_handler.h │ │ ├── common │ │ │ ├── ble_serialization.c │ │ │ ├── ble_serialization.h │ │ │ ├── cond_field_serialization.c │ │ │ ├── cond_field_serialization.h │ │ │ ├── ser_config.h │ │ │ ├── ser_dbg_sd_str.c │ │ │ ├── ser_dbg_sd_str.h │ │ │ ├── struct_ser │ │ │ │ ├── ant │ │ │ │ │ ├── ant_struct_serialization.c │ │ │ │ │ └── ant_struct_serialization.h │ │ │ │ └── ble │ │ │ │ │ ├── ble_gap_struct_serialization.c │ │ │ │ │ ├── ble_gap_struct_serialization.h │ │ │ │ │ ├── ble_gatt_struct_serialization.c │ │ │ │ │ ├── ble_gatt_struct_serialization.h │ │ │ │ │ ├── ble_gattc_struct_serialization.c │ │ │ │ │ ├── ble_gattc_struct_serialization.h │ │ │ │ │ ├── ble_gatts_struct_serialization.c │ │ │ │ │ ├── ble_gatts_struct_serialization.h │ │ │ │ │ ├── ble_l2cap_struct_serialization.c │ │ │ │ │ ├── ble_l2cap_struct_serialization.h │ │ │ │ │ ├── ble_struct_serialization.c │ │ │ │ │ ├── ble_struct_serialization.h │ │ │ │ │ ├── nrf_soc_struct_serialization.c │ │ │ │ │ └── nrf_soc_struct_serialization.h │ │ │ └── transport │ │ │ │ ├── dtm_uart_params.h │ │ │ │ ├── ser_hal_transport.c │ │ │ │ ├── ser_hal_transport.h │ │ │ │ ├── ser_phy │ │ │ │ ├── config │ │ │ │ │ ├── ser_config_5W_app.h │ │ │ │ │ ├── ser_phy_config_app.h │ │ │ │ │ ├── ser_phy_config_conn.h │ │ │ │ │ ├── ser_phy_debug_app.h │ │ │ │ │ └── ser_phy_debug_conn.h │ │ │ │ ├── ser_phy.c │ │ │ │ ├── ser_phy.h │ │ │ │ ├── ser_phy_hci.c │ │ │ │ ├── ser_phy_hci.h │ │ │ │ ├── ser_phy_hci_slip.c │ │ │ │ ├── ser_phy_hci_slip_cdc.c │ │ │ │ ├── ser_phy_nohci.c │ │ │ │ ├── ser_phy_spi_5W_master.c │ │ │ │ ├── ser_phy_spi_5W_slave.c │ │ │ │ ├── ser_phy_spi_master.c │ │ │ │ ├── ser_phy_spi_slave.c │ │ │ │ └── ser_phy_uart.c │ │ │ │ └── ser_phy_debug_comm.h │ │ └── connectivity │ │ │ ├── codecs │ │ │ ├── ant │ │ │ │ ├── middleware │ │ │ │ │ ├── conn_mw_ant.c │ │ │ │ │ └── conn_mw_ant.h │ │ │ │ └── serializers │ │ │ │ │ ├── ant_acknowledge_message_tx.c │ │ │ │ │ ├── ant_active_search_sharing_cycles_get.c │ │ │ │ │ ├── ant_active_search_sharing_cycles_set.c │ │ │ │ │ ├── ant_adv_burst_config_set.c │ │ │ │ │ ├── ant_broadcast_message_tx.c │ │ │ │ │ ├── ant_capabilities_get.c │ │ │ │ │ ├── ant_channel_assign.c │ │ │ │ │ ├── ant_channel_close.c │ │ │ │ │ ├── ant_channel_id_get.c │ │ │ │ │ ├── ant_channel_id_set.c │ │ │ │ │ ├── ant_channel_low_priority_rx_search_timout_set.c │ │ │ │ │ ├── ant_channel_open_with_offset.c │ │ │ │ │ ├── ant_channel_period_get.c │ │ │ │ │ ├── ant_channel_period_set.c │ │ │ │ │ ├── ant_channel_radio_freq_get.c │ │ │ │ │ ├── ant_channel_radio_freq_set.c │ │ │ │ │ ├── ant_channel_radio_tx_power_set.c │ │ │ │ │ ├── ant_channel_rx_search_timeout_set.c │ │ │ │ │ ├── ant_channel_status_get.c │ │ │ │ │ ├── ant_channel_unassign.c │ │ │ │ │ ├── ant_coex_config_get.c │ │ │ │ │ ├── ant_coex_config_set.c │ │ │ │ │ ├── ant_conn.h │ │ │ │ │ ├── ant_crypto_channel_enable.c │ │ │ │ │ ├── ant_crypto_info_get.c │ │ │ │ │ ├── ant_crypto_info_set.c │ │ │ │ │ ├── ant_crypto_key_set.c │ │ │ │ │ ├── ant_cw_test_mode.c │ │ │ │ │ ├── ant_cw_test_mode_init.c │ │ │ │ │ ├── ant_enable.c │ │ │ │ │ ├── ant_event.c │ │ │ │ │ ├── ant_event.h │ │ │ │ │ ├── ant_event_rx.c │ │ │ │ │ ├── ant_event_rx.h │ │ │ │ │ ├── ant_id_list_add.c │ │ │ │ │ ├── ant_id_list_config.c │ │ │ │ │ ├── ant_lib_config_clear.c │ │ │ │ │ ├── ant_lib_config_get.c │ │ │ │ │ ├── ant_lib_config_set.c │ │ │ │ │ ├── ant_network_address_set.c │ │ │ │ │ ├── ant_prox_search_set.c │ │ │ │ │ ├── ant_rx_scan_mode_start.c │ │ │ │ │ ├── ant_search_channel_priority_set.c │ │ │ │ │ ├── ant_search_waveform_set.c │ │ │ │ │ ├── ant_stack_reset.c │ │ │ │ │ └── ant_version_get.c │ │ │ ├── ble │ │ │ │ ├── middleware │ │ │ │ │ ├── conn_mw.h │ │ │ │ │ ├── conn_mw_ble.c │ │ │ │ │ ├── conn_mw_ble.h │ │ │ │ │ ├── conn_mw_ble_gap.c │ │ │ │ │ ├── conn_mw_ble_gap.h │ │ │ │ │ ├── conn_mw_ble_gattc.c │ │ │ │ │ ├── conn_mw_ble_gattc.h │ │ │ │ │ ├── conn_mw_ble_gatts.c │ │ │ │ │ ├── conn_mw_ble_gatts.h │ │ │ │ │ ├── conn_mw_ble_l2cap.c │ │ │ │ │ └── conn_mw_ble_l2cap.h │ │ │ │ └── serializers │ │ │ │ │ ├── ble_conn.c │ │ │ │ │ ├── ble_conn.h │ │ │ │ │ ├── ble_event_enc.c │ │ │ │ │ ├── ble_evt_conn.c │ │ │ │ │ ├── ble_evt_conn.h │ │ │ │ │ ├── ble_gap_conn.c │ │ │ │ │ ├── ble_gap_conn.h │ │ │ │ │ ├── ble_gap_evt_conn.c │ │ │ │ │ ├── ble_gap_evt_conn.h │ │ │ │ │ ├── ble_gattc_conn.c │ │ │ │ │ ├── ble_gattc_conn.h │ │ │ │ │ ├── ble_gattc_evt_conn.c │ │ │ │ │ ├── ble_gattc_evt_conn.h │ │ │ │ │ ├── ble_gatts_conn.c │ │ │ │ │ ├── ble_gatts_conn.h │ │ │ │ │ ├── ble_gatts_evt_conn.c │ │ │ │ │ ├── ble_gatts_evt_conn.h │ │ │ │ │ ├── ble_l2cap_conn.c │ │ │ │ │ ├── ble_l2cap_conn.h │ │ │ │ │ ├── ble_l2cap_evt_conn.c │ │ │ │ │ ├── ble_l2cap_evt_conn.h │ │ │ │ │ ├── conn_ble_gap_sec_keys.c │ │ │ │ │ ├── conn_ble_gap_sec_keys.h │ │ │ │ │ ├── conn_ble_l2cap_sdu_pool.c │ │ │ │ │ ├── conn_ble_l2cap_sdu_pool.h │ │ │ │ │ ├── conn_ble_user_mem.c │ │ │ │ │ ├── conn_ble_user_mem.h │ │ │ │ │ ├── nrf_soc_conn.c │ │ │ │ │ └── nrf_soc_conn.h │ │ │ └── common │ │ │ │ ├── ble_dtm_conn.h │ │ │ │ ├── ble_dtm_init.c │ │ │ │ ├── conn_mw.c │ │ │ │ ├── conn_mw.h │ │ │ │ ├── conn_mw_items.c │ │ │ │ ├── conn_mw_nrf_soc.c │ │ │ │ └── conn_mw_nrf_soc.h │ │ │ ├── hal │ │ │ ├── dtm_uart.c │ │ │ └── dtm_uart.h │ │ │ ├── ser_conn_cmd_decoder.c │ │ │ ├── ser_conn_cmd_decoder.h │ │ │ ├── ser_conn_dtm_cmd_decoder.c │ │ │ ├── ser_conn_dtm_cmd_decoder.h │ │ │ ├── ser_conn_error_handling.c │ │ │ ├── ser_conn_event_encoder.c │ │ │ ├── ser_conn_event_encoder.h │ │ │ ├── ser_conn_handlers.c │ │ │ ├── ser_conn_handlers.h │ │ │ ├── ser_conn_pkt_decoder.c │ │ │ ├── ser_conn_pkt_decoder.h │ │ │ ├── ser_conn_reset_cmd_decoder.c │ │ │ └── ser_conn_reset_cmd_decoder.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 │ │ ├── mbr │ │ │ ├── headers │ │ │ │ ├── nrf_mbr.h │ │ │ │ └── nrf_svc.h │ │ │ └── hex │ │ │ │ ├── mbr_nrf52_2.4.1_licence-agreement.txt │ │ │ │ └── mbr_nrf52_2.4.1_mbr.hex │ │ ├── s112 │ │ │ ├── doc │ │ │ │ ├── s112_nrf52_7.3.0_license-agreement.txt │ │ │ │ └── s112_nrf52_7.3.0_release-notes.pdf │ │ │ ├── headers │ │ │ │ ├── ble.h │ │ │ │ ├── ble_err.h │ │ │ │ ├── ble_gap.h │ │ │ │ ├── ble_gatt.h │ │ │ │ ├── ble_gattc.h │ │ │ │ ├── ble_gatts.h │ │ │ │ ├── ble_hci.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 │ │ │ ├── hex │ │ │ │ ├── s112_nrf52_7.3.0_license-agreement.txt │ │ │ │ └── s112_nrf52_7.3.0_softdevice.hex │ │ │ └── toolchain │ │ │ │ ├── armgcc │ │ │ │ └── armgcc_s112_nrf52810_xxaa.ld │ │ │ │ └── iar │ │ │ │ └── iar_s112_nrf52810_xxaa.icf │ │ ├── s113 │ │ │ ├── doc │ │ │ │ ├── s113_nrf52_7.2.0_licence_agreement.txt │ │ │ │ ├── s113_nrf52_7.2.0_migration-document.pdf │ │ │ │ └── s113_nrf52_7.2.0_release-notes.pdf │ │ │ ├── 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 │ │ │ ├── hex │ │ │ │ ├── s113_nrf52_7.2.0_licence-agreement.txt │ │ │ │ └── s113_nrf52_7.2.0_softdevice.hex │ │ │ └── toolchain │ │ │ │ ├── armgcc │ │ │ │ └── armgcc_s113_nrf52833_xxaa.ld │ │ │ │ └── iar │ │ │ │ └── iar_s113_nrf52833_xxaa.icf │ │ ├── s122 │ │ │ ├── doc │ │ │ │ ├── s122_nrf52_8.0.0_licence-agreement.txt │ │ │ │ └── s122_nrf52_8.0.0_release-notes.pdf │ │ │ ├── headers │ │ │ │ ├── ble.h │ │ │ │ ├── ble_err.h │ │ │ │ ├── ble_gap.h │ │ │ │ ├── ble_gatt.h │ │ │ │ ├── ble_gattc.h │ │ │ │ ├── ble_gatts.h │ │ │ │ ├── ble_hci.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 │ │ │ └── hex │ │ │ │ ├── s122_nrf52_8.0.0_licence-agreement.txt │ │ │ │ └── s122_nrf52_8.0.0_softdevice.hex │ │ ├── s132 │ │ │ ├── doc │ │ │ │ ├── s132_nrf52_7.2.0_licence-agreement.txt │ │ │ │ ├── s132_nrf52_7.2.0_migration-document.pdf │ │ │ │ └── s132_nrf52_7.2.0_release-notes.pdf │ │ │ ├── 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 │ │ │ ├── hex │ │ │ │ ├── s132_nrf52_7.2.0_licence-agreement.txt │ │ │ │ └── s132_nrf52_7.2.0_softdevice.hex │ │ │ └── toolchain │ │ │ │ ├── armgcc │ │ │ │ └── armgcc_s132_nrf52832_xxaa.ld │ │ │ │ └── iar │ │ │ │ └── iar_s132_nrf52832_xxaa.icf │ │ ├── s140 │ │ │ ├── doc │ │ │ │ ├── s140_nrf52_7.2.0_licence-agreement.txt │ │ │ │ ├── s140_nrf52_7.2.0_migration-document.pdf │ │ │ │ └── s140_nrf52_7.2.0_release-notes.pdf │ │ │ ├── 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 │ │ │ └── hex │ │ │ │ ├── s140_nrf52_7.2.0_licence-agreement.txt │ │ │ │ └── s140_nrf52_7.2.0_softdevice.hex │ │ ├── s212 │ │ │ ├── headers │ │ │ │ └── Readme.txt │ │ │ └── toolchain │ │ │ │ ├── armgcc │ │ │ │ └── armgcc_s212_nrf52832_xxaa.ld │ │ │ │ └── iar │ │ │ │ └── iar_s212_nrf52832_xxaa.icf │ │ ├── s312 │ │ │ ├── headers │ │ │ │ └── Readme.txt │ │ │ └── toolchain │ │ │ │ ├── armgcc │ │ │ │ └── armgcc_s312_nrf52810_xxaa.ld │ │ │ │ └── iar │ │ │ │ └── iar_s312_nrf52810_xxaa.icf │ │ ├── s332 │ │ │ ├── headers │ │ │ │ └── Readme.txt │ │ │ └── toolchain │ │ │ │ ├── armgcc │ │ │ │ └── armgcc_s332_nrf52832_xxaa.ld │ │ │ │ └── iar │ │ │ │ └── iar_s332_nrf52832_xxaa.icf │ │ └── s340 │ │ │ ├── headers │ │ │ └── Readme.txt │ │ │ └── toolchain │ │ │ ├── armgcc │ │ │ └── armgcc_s340_nrf52840_xxaa.ld │ │ │ └── iar │ │ │ └── iar_s340_nrf52840_xxaa.icf │ └── toolchain │ │ ├── arm │ │ └── uicr_config.h │ │ ├── cmsis │ │ ├── dsp │ │ │ ├── GCC │ │ │ │ ├── libarm_cortexM4l_math.a │ │ │ │ └── libarm_cortexM4lf_math.a │ │ │ ├── Include │ │ │ │ ├── arm_common_tables.h │ │ │ │ ├── arm_const_structs.h │ │ │ │ └── arm_math.h │ │ │ └── license.txt │ │ └── include │ │ │ ├── cmsis_armcc.h │ │ │ ├── cmsis_armclang.h │ │ │ ├── cmsis_armclang_ltm.h │ │ │ ├── cmsis_compiler.h │ │ │ ├── cmsis_gcc.h │ │ │ ├── cmsis_iccarm.h │ │ │ ├── cmsis_version.h │ │ │ ├── core_armv81mml.h │ │ │ ├── core_armv8mbl.h │ │ │ ├── core_armv8mml.h │ │ │ ├── core_cm0.h │ │ │ ├── core_cm0plus.h │ │ │ ├── core_cm1.h │ │ │ ├── core_cm23.h │ │ │ ├── core_cm3.h │ │ │ ├── core_cm33.h │ │ │ ├── core_cm35p.h │ │ │ ├── core_cm4.h │ │ │ ├── core_cm7.h │ │ │ ├── core_sc000.h │ │ │ ├── core_sc300.h │ │ │ ├── mpu_armv7.h │ │ │ ├── mpu_armv8.h │ │ │ └── tz_context.h │ │ ├── gcc │ │ ├── Makefile.common │ │ ├── Makefile.posix │ │ ├── Makefile.windows │ │ ├── dump.mk │ │ └── gcc_nrf51_common.ld │ │ └── iar │ │ ├── iar_nrf51_blank_xxaa.icf │ │ └── iar_nrf51_blank_xxac.icf │ ├── dfu │ ├── dfu_public_key.c │ ├── main.c │ ├── nrf_crypto_allocator.h │ └── sdk_config.h │ ├── external │ ├── fprintf │ │ ├── nrf_fprintf.c │ │ ├── nrf_fprintf.h │ │ ├── nrf_fprintf_format.c │ │ └── nrf_fprintf_format.h │ ├── micro-ecc │ │ ├── license.txt │ │ ├── micro-ecc │ │ │ ├── LICENSE.txt │ │ │ ├── asm_arm.inc │ │ │ ├── asm_arm_mult_square_umaal.inc │ │ │ ├── curve-specific.inc │ │ │ ├── platform-specific.inc │ │ │ ├── types.h │ │ │ ├── uECC.c │ │ │ ├── uECC.h │ │ │ └── uECC_vli.h │ │ ├── nrf52nf_armgcc │ │ │ └── armgcc │ │ │ │ ├── Makefile │ │ │ │ ├── ext_micro_ecc_gcc_nRF5x.ld │ │ │ │ └── micro_ecc_lib_nrf52.a │ │ └── nrf52nf_keil │ │ │ └── armgcc │ │ │ ├── Makefile │ │ │ ├── ext_micro_ecc_gcc_nRF5x.ld │ │ │ └── micro_ecc_lib_nrf52.lib │ ├── nano-pb │ │ ├── LICENSE.txt │ │ ├── pb.h │ │ ├── pb_common.c │ │ ├── pb_common.h │ │ ├── pb_decode.c │ │ ├── pb_decode.h │ │ ├── pb_encode.c │ │ └── pb_encode.h │ ├── nrf_oberon │ │ ├── include │ │ │ ├── mbedtls │ │ │ │ ├── chacha20_alt.h │ │ │ │ ├── ecjpake_alt.h │ │ │ │ ├── poly1305_alt.h │ │ │ │ ├── sha1_alt.h │ │ │ │ └── sha256_alt.h │ │ │ ├── ocrypto_aes_cbc.h │ │ │ ├── ocrypto_aes_ccm.h │ │ │ ├── ocrypto_aes_cmac.h │ │ │ ├── ocrypto_aes_ctr.h │ │ │ ├── ocrypto_aes_eax.h │ │ │ ├── ocrypto_aes_gcm.h │ │ │ ├── ocrypto_aes_key.h │ │ │ ├── ocrypto_chacha20.h │ │ │ ├── ocrypto_chacha20_poly1305.h │ │ │ ├── ocrypto_chacha20_poly1305_inc.h │ │ │ ├── ocrypto_constant_time.h │ │ │ ├── ocrypto_curve25519.h │ │ │ ├── ocrypto_curve_p224.h │ │ │ ├── ocrypto_curve_p256.h │ │ │ ├── ocrypto_ecdh_p224.h │ │ │ ├── ocrypto_ecdh_p256.h │ │ │ ├── ocrypto_ecdsa_p224.h │ │ │ ├── ocrypto_ecdsa_p256.h │ │ │ ├── ocrypto_ecjpake_p256.h │ │ │ ├── ocrypto_ed25519.h │ │ │ ├── ocrypto_hkdf_sha1.h │ │ │ ├── ocrypto_hkdf_sha256.h │ │ │ ├── ocrypto_hkdf_sha512.h │ │ │ ├── ocrypto_hmac_sha1.h │ │ │ ├── ocrypto_hmac_sha256.h │ │ │ ├── ocrypto_hmac_sha512.h │ │ │ ├── ocrypto_poly1305.h │ │ │ ├── ocrypto_rsa.h │ │ │ ├── ocrypto_rsa_key.h │ │ │ ├── ocrypto_sc_p224.h │ │ │ ├── ocrypto_sc_p256.h │ │ │ ├── ocrypto_sha1.h │ │ │ ├── ocrypto_sha224.h │ │ │ ├── ocrypto_sha256.h │ │ │ ├── ocrypto_sha384.h │ │ │ ├── ocrypto_sha512.h │ │ │ ├── ocrypto_srp.h │ │ │ └── ocrypto_srtp.h │ │ ├── lib │ │ │ ├── cortex-m4 │ │ │ │ └── soft-float │ │ │ │ │ ├── liboberon_3.0.8.a │ │ │ │ │ └── short-wchar │ │ │ │ │ ├── liboberon_3.0.8.a │ │ │ │ │ └── oberon_3.0.8.lib │ │ │ └── license.txt │ │ └── license.txt │ └── segger_rtt │ │ ├── SEGGER_RTT.c │ │ ├── SEGGER_RTT.h │ │ ├── SEGGER_RTT_Conf.h │ │ ├── SEGGER_RTT_Syscalls_GCC.c │ │ ├── SEGGER_RTT_Syscalls_IAR.c │ │ ├── SEGGER_RTT_Syscalls_KEIL.c │ │ ├── SEGGER_RTT_Syscalls_SES.c │ │ ├── SEGGER_RTT_printf.c │ │ └── license │ │ └── license.txt │ ├── gcc_nrf52.ld │ ├── integration │ └── nrfx │ │ ├── legacy │ │ ├── apply_old_config.h │ │ ├── nrf_drv_clock.c │ │ ├── nrf_drv_clock.h │ │ ├── nrf_drv_common.h │ │ ├── nrf_drv_comp.h │ │ ├── nrf_drv_gpiote.h │ │ ├── nrf_drv_i2s.h │ │ ├── nrf_drv_lpcomp.h │ │ ├── nrf_drv_pdm.h │ │ ├── nrf_drv_power.c │ │ ├── nrf_drv_power.h │ │ ├── nrf_drv_ppi.c │ │ ├── nrf_drv_ppi.h │ │ ├── nrf_drv_pwm.h │ │ ├── nrf_drv_qdec.h │ │ ├── nrf_drv_qspi.h │ │ ├── nrf_drv_rng.c │ │ ├── nrf_drv_rng.h │ │ ├── nrf_drv_rtc.h │ │ ├── nrf_drv_saadc.h │ │ ├── nrf_drv_spi.c │ │ ├── nrf_drv_spi.h │ │ ├── nrf_drv_spis.c │ │ ├── nrf_drv_spis.h │ │ ├── nrf_drv_swi.c │ │ ├── nrf_drv_swi.h │ │ ├── nrf_drv_systick.h │ │ ├── nrf_drv_timer.h │ │ ├── nrf_drv_twi.c │ │ ├── nrf_drv_twi.h │ │ ├── nrf_drv_twis.h │ │ ├── nrf_drv_uart.c │ │ ├── nrf_drv_uart.h │ │ ├── nrf_drv_usbd.h │ │ ├── nrf_drv_usbd_errata.h │ │ └── nrf_drv_wdt.h │ │ ├── nrfx_config.h │ │ ├── nrfx_glue.h │ │ └── nrfx_log.h │ ├── modules │ └── nrfx │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc │ │ ├── buildfiles │ │ │ ├── extra_stylesheet.css │ │ │ ├── favicon.ico │ │ │ ├── footer.html │ │ │ ├── header.html │ │ │ ├── layout.xml │ │ │ └── nordic_small.png │ │ ├── drv_supp_matrix.dox │ │ ├── generate_html_doc.sh │ │ ├── main_page.dox │ │ ├── nrf51_series.dox │ │ ├── nrf52810.dox │ │ ├── nrf52820.dox │ │ ├── nrf52832.dox │ │ ├── nrf52833.dox │ │ ├── nrf52840.dox │ │ ├── nrf9160.dox │ │ ├── nrfx.doxyfile │ │ └── nrfx_api.dox │ │ ├── drivers │ │ ├── include │ │ │ ├── nrf_bitmask.h │ │ │ ├── nrfx_adc.h │ │ │ ├── nrfx_clock.h │ │ │ ├── nrfx_comp.h │ │ │ ├── nrfx_dppi.h │ │ │ ├── nrfx_gpiote.h │ │ │ ├── nrfx_i2s.h │ │ │ ├── nrfx_lpcomp.h │ │ │ ├── nrfx_nfct.h │ │ │ ├── nrfx_nvmc.h │ │ │ ├── nrfx_pdm.h │ │ │ ├── nrfx_power.h │ │ │ ├── nrfx_power_clock.h │ │ │ ├── nrfx_ppi.h │ │ │ ├── nrfx_pwm.h │ │ │ ├── nrfx_qdec.h │ │ │ ├── nrfx_qspi.h │ │ │ ├── nrfx_rng.h │ │ │ ├── nrfx_rtc.h │ │ │ ├── nrfx_saadc.h │ │ │ ├── nrfx_saadc_v2.h │ │ │ ├── nrfx_spi.h │ │ │ ├── nrfx_spim.h │ │ │ ├── nrfx_spis.h │ │ │ ├── nrfx_swi.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_wdt.h │ │ ├── nrfx_common.h │ │ ├── nrfx_errors.h │ │ └── src │ │ │ ├── nrfx_adc.c │ │ │ ├── nrfx_clock.c │ │ │ ├── nrfx_comp.c │ │ │ ├── nrfx_dppi.c │ │ │ ├── nrfx_gpiote.c │ │ │ ├── nrfx_i2s.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_swi.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_wdt.c │ │ │ └── prs │ │ │ ├── nrfx_prs.c │ │ │ └── nrfx_prs.h │ │ ├── hal │ │ ├── nrf_aar.h │ │ ├── nrf_acl.h │ │ ├── nrf_adc.h │ │ ├── nrf_bprot.h │ │ ├── nrf_ccm.h │ │ ├── nrf_clock.h │ │ ├── nrf_comp.h │ │ ├── nrf_dppi.h │ │ ├── nrf_ecb.c │ │ ├── nrf_ecb.h │ │ ├── nrf_egu.h │ │ ├── nrf_ficr.h │ │ ├── nrf_gpio.h │ │ ├── nrf_gpiote.h │ │ ├── nrf_i2s.h │ │ ├── nrf_kmu.h │ │ ├── nrf_lpcomp.h │ │ ├── nrf_mpu.h │ │ ├── nrf_mwu.h │ │ ├── nrf_nfct.h │ │ ├── nrf_nvmc.c │ │ ├── nrf_nvmc.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_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_vmc.h │ │ └── nrf_wdt.h │ │ ├── helpers │ │ └── nrfx_gppi.h │ │ ├── mdk │ │ ├── arm_startup_nrf51.s │ │ ├── arm_startup_nrf52.s │ │ ├── arm_startup_nrf52805.s │ │ ├── arm_startup_nrf52810.s │ │ ├── arm_startup_nrf52811.s │ │ ├── arm_startup_nrf52820.s │ │ ├── arm_startup_nrf52833.s │ │ ├── arm_startup_nrf52840.s │ │ ├── arm_startup_nrf5340_application.s │ │ ├── arm_startup_nrf5340_network.s │ │ ├── arm_startup_nrf9160.s │ │ ├── compiler_abstraction.h │ │ ├── gcc_startup_nrf51.S │ │ ├── gcc_startup_nrf52.S │ │ ├── gcc_startup_nrf52805.S │ │ ├── gcc_startup_nrf52810.S │ │ ├── gcc_startup_nrf52811.S │ │ ├── gcc_startup_nrf52820.S │ │ ├── gcc_startup_nrf52833.S │ │ ├── gcc_startup_nrf52840.S │ │ ├── gcc_startup_nrf5340_application.S │ │ ├── gcc_startup_nrf5340_network.S │ │ ├── gcc_startup_nrf9160.S │ │ ├── iar_startup_nrf51.s │ │ ├── iar_startup_nrf52.s │ │ ├── iar_startup_nrf52805.s │ │ ├── iar_startup_nrf52810.s │ │ ├── iar_startup_nrf52811.s │ │ ├── iar_startup_nrf52820.s │ │ ├── iar_startup_nrf52833.s │ │ ├── iar_startup_nrf52840.s │ │ ├── iar_startup_nrf5340_application.s │ │ ├── iar_startup_nrf5340_network.s │ │ ├── iar_startup_nrf9160.s │ │ ├── nrf.h │ │ ├── nrf51.h │ │ ├── nrf51.svd │ │ ├── nrf51422_peripherals.h │ │ ├── nrf51422_xxaa.ld │ │ ├── nrf51422_xxab.ld │ │ ├── nrf51422_xxac.ld │ │ ├── nrf51801_peripherals.h │ │ ├── nrf51801_xxab.ld │ │ ├── nrf51802_peripherals.h │ │ ├── nrf51802_xxaa.ld │ │ ├── nrf51822_peripherals.h │ │ ├── nrf51822_xxaa.ld │ │ ├── nrf51822_xxab.ld │ │ ├── nrf51822_xxac.ld │ │ ├── nrf51824_peripherals.h │ │ ├── nrf51824_xxaa.ld │ │ ├── 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 │ │ ├── nrf52805.h │ │ ├── nrf52805_bitfields.h │ │ ├── nrf52805_peripherals.h │ │ ├── nrf52805_xxaa.ld │ │ ├── nrf52810.h │ │ ├── nrf52810_bitfields.h │ │ ├── nrf52810_name_change.h │ │ ├── nrf52810_peripherals.h │ │ ├── nrf52810_to_nrf52811.h │ │ ├── nrf52810_xxaa.ld │ │ ├── nrf52811.h │ │ ├── nrf52811_bitfields.h │ │ ├── nrf52811_peripherals.h │ │ ├── nrf52811_xxaa.ld │ │ ├── nrf52820.h │ │ ├── nrf52820_bitfields.h │ │ ├── nrf52820_peripherals.h │ │ ├── nrf52820_xxaa.ld │ │ ├── nrf52832_peripherals.h │ │ ├── nrf52832_xxaa.ld │ │ ├── nrf52832_xxab.ld │ │ ├── nrf52833.h │ │ ├── nrf52833_bitfields.h │ │ ├── nrf52833_peripherals.h │ │ ├── nrf52833_to_nrf52820.h │ │ ├── nrf52833_xxaa.ld │ │ ├── nrf52840.h │ │ ├── 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_bitfields.h │ │ ├── nrf5340_application_name_change.h │ │ ├── nrf5340_application_peripherals.h │ │ ├── nrf5340_network.h │ │ ├── nrf5340_network_bitfields.h │ │ ├── nrf5340_network_name_change.h │ │ ├── nrf5340_network_peripherals.h │ │ ├── nrf5340_xxaa_application.ld │ │ ├── nrf5340_xxaa_network.ld │ │ ├── nrf53_erratas.h │ │ ├── nrf9160.h │ │ ├── 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 │ │ ├── ses_startup_nrf51.s │ │ ├── ses_startup_nrf52.s │ │ ├── ses_startup_nrf52805.s │ │ ├── ses_startup_nrf52810.s │ │ ├── ses_startup_nrf52811.s │ │ ├── ses_startup_nrf52820.s │ │ ├── ses_startup_nrf52833.s │ │ ├── ses_startup_nrf52840.s │ │ ├── ses_startup_nrf5340_application.s │ │ ├── ses_startup_nrf5340_network.s │ │ ├── ses_startup_nrf9160.s │ │ ├── ses_startup_nrf_common.s │ │ ├── startup_config.h │ │ ├── system_nrf.h │ │ ├── system_nrf51.c │ │ ├── system_nrf51.h │ │ ├── system_nrf52.c │ │ ├── system_nrf52.h │ │ ├── system_nrf52805.c │ │ ├── system_nrf52805.h │ │ ├── system_nrf52810.c │ │ ├── system_nrf52810.h │ │ ├── system_nrf52811.c │ │ ├── system_nrf52811.h │ │ ├── system_nrf52820.c │ │ ├── system_nrf52820.h │ │ ├── system_nrf52833.c │ │ ├── system_nrf52833.h │ │ ├── system_nrf52840.c │ │ ├── system_nrf52840.h │ │ ├── system_nrf52_approtect.h │ │ ├── system_nrf5340_application.c │ │ ├── system_nrf5340_application.h │ │ ├── system_nrf5340_network.c │ │ ├── system_nrf5340_network.h │ │ ├── system_nrf53_approtect.h │ │ ├── system_nrf9160.c │ │ └── 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_nrf52820.h │ │ ├── nrfx_irqs_nrf52832.h │ │ ├── nrfx_irqs_nrf52833.h │ │ ├── nrfx_irqs_nrf52840.h │ │ └── nrfx_irqs_nrf9160.h │ │ └── templates │ │ ├── nRF51 │ │ └── nrfx_config.h │ │ ├── nRF52810 │ │ └── nrfx_config.h │ │ ├── nRF52811 │ │ └── nrfx_config.h │ │ ├── nRF52820 │ │ └── nrfx_config.h │ │ ├── nRF52832 │ │ └── nrfx_config.h │ │ ├── nRF52833 │ │ └── nrfx_config.h │ │ ├── nRF52840 │ │ └── nrfx_config.h │ │ ├── nRF9160 │ │ └── nrfx_config.h │ │ ├── nrfx_glue.h │ │ └── nrfx_log.h │ └── sdk_config.h ├── docs ├── OTP │ ├── 3c.txt │ └── bw.txt ├── README.md ├── datasheets │ ├── NRF51_Series_Reference_manual_v3.0.pdf │ ├── SSD1619A.pdf │ ├── SSD1683.pdf │ ├── UC8151c.pdf │ ├── UC8176.pdf │ ├── UC8276.pdf │ ├── nRF51822_PS_v3.4.pdf │ ├── nRF52810_PS_v1.5.pdf │ └── nRF52811_PS_v1.2.pdf ├── develop.md ├── devices.md └── images │ ├── 0.jpg │ ├── 1.jpg │ ├── 2.jpg │ ├── 3.jpg │ ├── 4.jpg │ ├── 5.jpg │ └── 6.jpg ├── emulator.c ├── html ├── css │ └── main.css ├── favicon.png ├── index.html └── js │ ├── crop.js │ ├── dithering.js │ ├── main.js │ └── paint.js ├── main.c ├── main.h └── tools ├── bin ├── mergehex.exe └── nrfutil.exe ├── bootloader ├── bl_nrf51822_xxaa_s130.hex └── bl_nrf52811_xxaa_s112.hex ├── make-ota-nrf51.bat ├── make-ota-nrf52.bat └── priv.pem /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/.gitignore -------------------------------------------------------------------------------- /EPD/EPD_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/EPD/EPD_config.c -------------------------------------------------------------------------------- /EPD/EPD_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/EPD/EPD_config.h -------------------------------------------------------------------------------- /EPD/EPD_driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/EPD/EPD_driver.c -------------------------------------------------------------------------------- /EPD/EPD_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/EPD/EPD_driver.h -------------------------------------------------------------------------------- /EPD/EPD_service.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/EPD/EPD_service.c -------------------------------------------------------------------------------- /EPD/EPD_service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/EPD/EPD_service.h -------------------------------------------------------------------------------- /EPD/SSD16xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/EPD/SSD16xx.c -------------------------------------------------------------------------------- /EPD/UC81xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/EPD/UC81xx.c -------------------------------------------------------------------------------- /GUI/Adafruit_GFX.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/GUI/Adafruit_GFX.c -------------------------------------------------------------------------------- /GUI/Adafruit_GFX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/GUI/Adafruit_GFX.h -------------------------------------------------------------------------------- /GUI/GUI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/GUI/GUI.c -------------------------------------------------------------------------------- /GUI/GUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/GUI/GUI.h -------------------------------------------------------------------------------- /GUI/Lunar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/GUI/Lunar.c -------------------------------------------------------------------------------- /GUI/Lunar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/GUI/Lunar.h -------------------------------------------------------------------------------- /GUI/fonts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/GUI/fonts.c -------------------------------------------------------------------------------- /GUI/fonts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/GUI/fonts.h -------------------------------------------------------------------------------- /GUI/u8g2_font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/GUI/u8g2_font.c -------------------------------------------------------------------------------- /GUI/u8g2_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/GUI/u8g2_font.h -------------------------------------------------------------------------------- /Keil/DFU-nRF51.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/Keil/DFU-nRF51.uvprojx -------------------------------------------------------------------------------- /Keil/DFU-nRF52.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/Keil/DFU-nRF52.uvprojx -------------------------------------------------------------------------------- /Keil/EPD-nRF51.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/Keil/EPD-nRF51.uvprojx -------------------------------------------------------------------------------- /Keil/EPD-nRF52.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/Keil/EPD-nRF52.uvprojx -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile.nRF51: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/Makefile.nRF51 -------------------------------------------------------------------------------- /Makefile.nRF52: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/Makefile.nRF52 -------------------------------------------------------------------------------- /Makefile.win32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/Makefile.win32 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/README.md -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/ble/ble_dtm/ble_dtm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/ble/ble_dtm/ble_dtm.c -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/ble/ble_dtm/ble_dtm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/ble/ble_dtm/ble_dtm.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/ble/ble_dtm/ble_dtm_hw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/ble/ble_dtm/ble_dtm_hw.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/ble/ble_dtm/ble_dtm_hw_nrf51.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/ble/ble_dtm/ble_dtm_hw_nrf51.c -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/ble/ble_dtm/ble_dtm_hw_nrf52.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/ble/ble_dtm/ble_dtm_hw_nrf52.c -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/ble/ble_racp/ble_racp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/ble/ble_racp/ble_racp.c -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/ble/ble_racp/ble_racp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/ble/ble_racp/ble_racp.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/ble/common/ble_advdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/ble/common/ble_advdata.c -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/ble/common/ble_advdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/ble/common/ble_advdata.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/ble/common/ble_conn_params.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/ble/common/ble_conn_params.c -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/ble/common/ble_conn_params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/ble/common/ble_conn_params.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/ble/common/ble_conn_state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/ble/common/ble_conn_state.c -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/ble/common/ble_conn_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/ble/common/ble_conn_state.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/ble/common/ble_date_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/ble/common/ble_date_time.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/ble/common/ble_gatt_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/ble/common/ble_gatt_db.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/ble/common/ble_srv_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/ble/common/ble_srv_common.c -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/ble/common/ble_srv_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/ble/common/ble_srv_common.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/ble/nrf_ble_qwr/nrf_ble_qwr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/ble/nrf_ble_qwr/nrf_ble_qwr.c -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/ble/nrf_ble_qwr/nrf_ble_qwr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/ble/nrf_ble_qwr/nrf_ble_qwr.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/ble/peer_manager/id_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/ble/peer_manager/id_manager.c -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/ble/peer_manager/id_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/ble/peer_manager/id_manager.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/ble/peer_manager/peer_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/ble/peer_manager/peer_data.c -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/ble/peer_manager/peer_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/ble/peer_manager/peer_data.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/ble/peer_manager/peer_id.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/ble/peer_manager/peer_id.c -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/ble/peer_manager/peer_id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/ble/peer_manager/peer_id.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/ble/peer_manager/pm_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/ble/peer_manager/pm_buffer.c -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/ble/peer_manager/pm_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/ble/peer_manager/pm_buffer.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/ble/peer_manager/pm_mutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/ble/peer_manager/pm_mutex.c -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/ble/peer_manager/pm_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/ble/peer_manager/pm_mutex.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/boards/arduino_primo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/boards/arduino_primo.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/boards/boards.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/boards/boards.c -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/boards/boards.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/boards/boards.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/boards/d52_starterkit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/boards/d52_starterkit.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/boards/n5_starterkit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/boards/n5_starterkit.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/boards/nrf6310.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/boards/nrf6310.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/boards/pca10000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/boards/pca10000.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/boards/pca10001.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/boards/pca10001.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/boards/pca10003.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/boards/pca10003.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/boards/pca10028.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/boards/pca10028.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/boards/pca10031.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/boards/pca10031.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/boards/pca10036.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/boards/pca10036.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/boards/pca10040.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/boards/pca10040.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/boards/pca10056.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/boards/pca10056.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/boards/pca20006.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/boards/pca20006.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/boards/wt51822.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/boards/wt51822.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/device/compiler_abstraction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/device/compiler_abstraction.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/device/nrf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/device/nrf.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/device/nrf51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/device/nrf51.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/device/nrf51422_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/device/nrf51422_peripherals.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/device/nrf51802_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/device/nrf51802_peripherals.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/device/nrf51822_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/device/nrf51822_peripherals.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/device/nrf51_bitfields.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/device/nrf51_bitfields.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/device/nrf51_deprecated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/device/nrf51_deprecated.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/device/nrf51_to_nrf52.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/device/nrf51_to_nrf52.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/device/nrf51_to_nrf52840.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/device/nrf51_to_nrf52840.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/device/nrf52.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/device/nrf52.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/device/nrf52832_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/device/nrf52832_peripherals.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/device/nrf52840.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/device/nrf52840.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/device/nrf52840_bitfields.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/device/nrf52840_bitfields.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/device/nrf52840_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/device/nrf52840_peripherals.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/device/nrf52_bitfields.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/device/nrf52_bitfields.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/device/nrf52_name_change.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/device/nrf52_name_change.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/device/nrf52_to_nrf52840.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/device/nrf52_to_nrf52840.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/drivers_ext/ds1624/ds1624.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/drivers_ext/ds1624/ds1624.c -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/drivers_ext/ds1624/ds1624.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/drivers_ext/ds1624/ds1624.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/drivers_ext/max9850/max9850.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/drivers_ext/max9850/max9850.c -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/drivers_ext/max9850/max9850.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/drivers_ext/max9850/max9850.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/drivers_ext/mcp4725/mcp4725.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/drivers_ext/mcp4725/mcp4725.c -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/drivers_ext/mcp4725/mcp4725.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/drivers_ext/mcp4725/mcp4725.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/drivers_ext/mpu6050/mpu6050.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/drivers_ext/mpu6050/mpu6050.c -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/drivers_ext/mpu6050/mpu6050.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/drivers_ext/mpu6050/mpu6050.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/drivers_ext/nrf6350/nrf6350.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/drivers_ext/nrf6350/nrf6350.c -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/drivers_ext/nrf6350/nrf6350.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/drivers_ext/nrf6350/nrf6350.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/drivers_ext/uda1380/uda1380.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/drivers_ext/uda1380/uda1380.c -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/drivers_ext/uda1380/uda1380.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/drivers_ext/uda1380/uda1380.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/drivers_nrf/adc/nrf_drv_adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/drivers_nrf/adc/nrf_drv_adc.c -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/drivers_nrf/adc/nrf_drv_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/drivers_nrf/adc/nrf_drv_adc.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/drivers_nrf/delay/nrf_delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/drivers_nrf/delay/nrf_delay.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/drivers_nrf/hal/nrf_adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/drivers_nrf/hal/nrf_adc.c -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/drivers_nrf/hal/nrf_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/drivers_nrf/hal/nrf_adc.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/drivers_nrf/hal/nrf_clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/drivers_nrf/hal/nrf_clock.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/drivers_nrf/hal/nrf_comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/drivers_nrf/hal/nrf_comp.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/drivers_nrf/hal/nrf_ecb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/drivers_nrf/hal/nrf_ecb.c -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/drivers_nrf/hal/nrf_ecb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/drivers_nrf/hal/nrf_ecb.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/drivers_nrf/hal/nrf_egu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/drivers_nrf/hal/nrf_egu.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/drivers_nrf/hal/nrf_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/drivers_nrf/hal/nrf_gpio.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/drivers_nrf/hal/nrf_gpiote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/drivers_nrf/hal/nrf_gpiote.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/drivers_nrf/hal/nrf_i2s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/drivers_nrf/hal/nrf_i2s.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/drivers_nrf/hal/nrf_lpcomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/drivers_nrf/hal/nrf_lpcomp.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/drivers_nrf/hal/nrf_nvmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/drivers_nrf/hal/nrf_nvmc.c -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/drivers_nrf/hal/nrf_nvmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/drivers_nrf/hal/nrf_nvmc.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/drivers_nrf/hal/nrf_pdm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/drivers_nrf/hal/nrf_pdm.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/drivers_nrf/hal/nrf_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/drivers_nrf/hal/nrf_power.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/drivers_nrf/hal/nrf_ppi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/drivers_nrf/hal/nrf_ppi.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/drivers_nrf/hal/nrf_pwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/drivers_nrf/hal/nrf_pwm.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/drivers_nrf/hal/nrf_qdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/drivers_nrf/hal/nrf_qdec.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/drivers_nrf/hal/nrf_qspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/drivers_nrf/hal/nrf_qspi.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/drivers_nrf/hal/nrf_rng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/drivers_nrf/hal/nrf_rng.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/drivers_nrf/hal/nrf_rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/drivers_nrf/hal/nrf_rtc.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/drivers_nrf/hal/nrf_saadc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/drivers_nrf/hal/nrf_saadc.c -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/drivers_nrf/hal/nrf_saadc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/drivers_nrf/hal/nrf_saadc.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/drivers_nrf/hal/nrf_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/drivers_nrf/hal/nrf_spi.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/drivers_nrf/hal/nrf_spim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/drivers_nrf/hal/nrf_spim.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/drivers_nrf/hal/nrf_spis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/drivers_nrf/hal/nrf_spis.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/drivers_nrf/hal/nrf_systick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/drivers_nrf/hal/nrf_systick.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/drivers_nrf/hal/nrf_temp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/drivers_nrf/hal/nrf_temp.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/drivers_nrf/hal/nrf_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/drivers_nrf/hal/nrf_timer.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/drivers_nrf/hal/nrf_twi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/drivers_nrf/hal/nrf_twi.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/drivers_nrf/hal/nrf_twim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/drivers_nrf/hal/nrf_twim.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/drivers_nrf/hal/nrf_twis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/drivers_nrf/hal/nrf_twis.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/drivers_nrf/hal/nrf_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/drivers_nrf/hal/nrf_uart.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/drivers_nrf/hal/nrf_uarte.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/drivers_nrf/hal/nrf_uarte.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/drivers_nrf/hal/nrf_usbd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/drivers_nrf/hal/nrf_usbd.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/drivers_nrf/hal/nrf_wdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/drivers_nrf/hal/nrf_wdt.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/drivers_nrf/i2s/nrf_drv_i2s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/drivers_nrf/i2s/nrf_drv_i2s.c -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/drivers_nrf/i2s/nrf_drv_i2s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/drivers_nrf/i2s/nrf_drv_i2s.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/drivers_nrf/pdm/nrf_drv_pdm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/drivers_nrf/pdm/nrf_drv_pdm.c -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/drivers_nrf/pdm/nrf_drv_pdm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/drivers_nrf/pdm/nrf_drv_pdm.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/drivers_nrf/ppi/nrf_drv_ppi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/drivers_nrf/ppi/nrf_drv_ppi.c -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/drivers_nrf/ppi/nrf_drv_ppi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/drivers_nrf/ppi/nrf_drv_ppi.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/drivers_nrf/pwm/nrf_drv_pwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/drivers_nrf/pwm/nrf_drv_pwm.c -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/drivers_nrf/pwm/nrf_drv_pwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/drivers_nrf/pwm/nrf_drv_pwm.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/drivers_nrf/rng/nrf_drv_rng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/drivers_nrf/rng/nrf_drv_rng.c -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/drivers_nrf/rng/nrf_drv_rng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/drivers_nrf/rng/nrf_drv_rng.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/drivers_nrf/rtc/nrf_drv_rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/drivers_nrf/rtc/nrf_drv_rtc.c -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/drivers_nrf/rtc/nrf_drv_rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/drivers_nrf/rtc/nrf_drv_rtc.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/drivers_nrf/sdio/sdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/drivers_nrf/sdio/sdio.c -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/drivers_nrf/sdio/sdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/drivers_nrf/sdio/sdio.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/drivers_nrf/swi/nrf_drv_swi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/drivers_nrf/swi/nrf_drv_swi.c -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/drivers_nrf/swi/nrf_drv_swi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/drivers_nrf/swi/nrf_drv_swi.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/drivers_nrf/wdt/nrf_drv_wdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/drivers_nrf/wdt/nrf_drv_wdt.c -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/drivers_nrf/wdt/nrf_drv_wdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/drivers_nrf/wdt/nrf_drv_wdt.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/libraries/atomic/nrf_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/libraries/atomic/nrf_atomic.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/libraries/balloc/nrf_balloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/libraries/balloc/nrf_balloc.c -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/libraries/balloc/nrf_balloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/libraries/balloc/nrf_balloc.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/libraries/bsp/bsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/libraries/bsp/bsp.c -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/libraries/bsp/bsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/libraries/bsp/bsp.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/libraries/bsp/bsp_btn_ant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/libraries/bsp/bsp_btn_ant.c -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/libraries/bsp/bsp_btn_ant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/libraries/bsp/bsp_btn_ant.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/libraries/bsp/bsp_btn_ble.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/libraries/bsp/bsp_btn_ble.c -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/libraries/bsp/bsp_btn_ble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/libraries/bsp/bsp_btn_ble.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/libraries/bsp/bsp_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/libraries/bsp/bsp_config.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/libraries/bsp/bsp_nfc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/libraries/bsp/bsp_nfc.c -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/libraries/bsp/bsp_nfc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/libraries/bsp/bsp_nfc.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/libraries/button/app_button.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/libraries/button/app_button.c -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/libraries/button/app_button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/libraries/button/app_button.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/libraries/crc16/crc16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/libraries/crc16/crc16.c -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/libraries/crc16/crc16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/libraries/crc16/crc16.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/libraries/crc32/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/libraries/crc32/crc32.c -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/libraries/crc32/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/libraries/crc32/crc32.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/libraries/crypto/nrf_crypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/libraries/crypto/nrf_crypto.c -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/libraries/ecc/ecc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/libraries/ecc/ecc.c -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/libraries/ecc/ecc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/libraries/ecc/ecc.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/libraries/eddystone/es.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/libraries/eddystone/es.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/libraries/eddystone/es_adv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/libraries/eddystone/es_adv.c -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/libraries/eddystone/es_adv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/libraries/eddystone/es_adv.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/libraries/eddystone/es_tlm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/libraries/eddystone/es_tlm.c -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/libraries/eddystone/es_tlm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/libraries/eddystone/es_tlm.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/libraries/fds/fds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/libraries/fds/fds.c -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/libraries/fds/fds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/libraries/fds/fds.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/libraries/fifo/app_fifo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/libraries/fifo/app_fifo.c -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/libraries/fifo/app_fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/libraries/fifo/app_fifo.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/libraries/hci/hci_mem_pool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/libraries/hci/hci_mem_pool.c -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/libraries/hci/hci_mem_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/libraries/hci/hci_mem_pool.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/libraries/hci/hci_slip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/libraries/hci/hci_slip.c -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/libraries/hci/hci_slip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/libraries/hci/hci_slip.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/libraries/log/nrf_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/libraries/log/nrf_log.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/libraries/log/nrf_log_ctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/libraries/log/nrf_log_ctrl.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/libraries/pwm/app_pwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/libraries/pwm/app_pwm.c -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/libraries/pwm/app_pwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/libraries/pwm/app_pwm.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/libraries/queue/nrf_queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/libraries/queue/nrf_queue.c -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/libraries/queue/nrf_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/libraries/queue/nrf_queue.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/libraries/sha256/sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/libraries/sha256/sha256.c -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/libraries/sha256/sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/libraries/sha256/sha256.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/libraries/slip/slip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/libraries/slip/slip.c -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/libraries/slip/slip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/libraries/slip/slip.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/libraries/svc/nrf_svci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/libraries/svc/nrf_svci.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/libraries/timer/app_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/libraries/timer/app_timer.c -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/libraries/timer/app_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/libraries/timer/app_timer.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/libraries/twi/app_twi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/libraries/twi/app_twi.c -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/libraries/twi/app_twi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/libraries/twi/app_twi.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/libraries/uart/app_uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/libraries/uart/app_uart.c -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/libraries/uart/app_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/libraries/uart/app_uart.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/libraries/uart/retarget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/libraries/uart/retarget.c -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/libraries/usbd/app_usbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/libraries/usbd/app_usbd.c -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/libraries/usbd/app_usbd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/libraries/usbd/app_usbd.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/libraries/util/app_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/libraries/util/app_error.c -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/libraries/util/app_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/libraries/util/app_error.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/libraries/util/app_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/libraries/util/app_util.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/libraries/util/nrf_assert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/libraries/util/nrf_assert.c -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/libraries/util/nrf_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/libraries/util/nrf_assert.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/libraries/util/nrf_bitmask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/libraries/util/nrf_bitmask.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/libraries/util/sdk_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/libraries/util/sdk_common.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/libraries/util/sdk_errors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/libraries/util/sdk_errors.c -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/libraries/util/sdk_errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/libraries/util/sdk_errors.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/libraries/util/sdk_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/libraries/util/sdk_macros.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/libraries/util/sdk_os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/libraries/util/sdk_os.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/sdk_validation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/sdk_validation.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/toolchain/arm/uicr_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/toolchain/arm/uicr_config.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/toolchain/gcc/Makefile.posix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/toolchain/gcc/Makefile.posix -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/toolchain/gcc/file_list.mk: -------------------------------------------------------------------------------- 1 | $(info $(FILE_LIST)) 2 | all: ; 3 | -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/toolchain/gcc/nrf51_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/toolchain/gcc/nrf51_xxaa.ld -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/toolchain/gcc/nrf51_xxab.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/toolchain/gcc/nrf51_xxab.ld -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/toolchain/gcc/nrf51_xxac.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/toolchain/gcc/nrf51_xxac.ld -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/toolchain/gcc/nrf52_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/toolchain/gcc/nrf52_xxaa.ld -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/toolchain/system_nrf51.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/toolchain/system_nrf51.c -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/toolchain/system_nrf51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/toolchain/system_nrf51.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/toolchain/system_nrf51422.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/toolchain/system_nrf51422.c -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/toolchain/system_nrf52.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/toolchain/system_nrf52.c -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/toolchain/system_nrf52.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/toolchain/system_nrf52.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/toolchain/system_nrf52840.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/toolchain/system_nrf52840.c -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/components/toolchain/system_nrf52840.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/components/toolchain/system_nrf52840.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/dfu/dfu-cc.pb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/dfu/dfu-cc.pb.c -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/dfu/dfu-cc.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/dfu/dfu-cc.pb.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/dfu/dfu_public_key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/dfu/dfu_public_key.c -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/dfu/dfu_req_handling.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/dfu/dfu_req_handling.c -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/dfu/dfu_req_handling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/dfu/dfu_req_handling.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/dfu/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/dfu/main.c -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/dfu/nrf_dfu_flash_buttonless.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/dfu/nrf_dfu_flash_buttonless.c -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/dfu/sdk_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/dfu/sdk_config.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/external/micro-ecc/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/external/micro-ecc/license.txt -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/external/micro-ecc/micro-ecc/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/external/micro-ecc/micro-ecc/types.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/external/micro-ecc/micro-ecc/uECC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/external/micro-ecc/micro-ecc/uECC.c -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/external/micro-ecc/micro-ecc/uECC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/external/micro-ecc/micro-ecc/uECC.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/external/micro-ecc/micro-ecc/uECC_vli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/external/micro-ecc/micro-ecc/uECC_vli.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/external/nano-pb/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/external/nano-pb/LICENSE.txt -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/external/nano-pb/pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/external/nano-pb/pb.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/external/nano-pb/pb_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/external/nano-pb/pb_common.c -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/external/nano-pb/pb_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/external/nano-pb/pb_common.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/external/nano-pb/pb_decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/external/nano-pb/pb_decode.c -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/external/nano-pb/pb_decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/external/nano-pb/pb_decode.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/external/nano-pb/pb_encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/external/nano-pb/pb_encode.c -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/external/nano-pb/pb_encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/external/nano-pb/pb_encode.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/external/segger_rtt/RTT_Syscalls_GCC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/external/segger_rtt/RTT_Syscalls_GCC.c -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/external/segger_rtt/RTT_Syscalls_IAR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/external/segger_rtt/RTT_Syscalls_IAR.c -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/external/segger_rtt/RTT_Syscalls_KEIL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/external/segger_rtt/RTT_Syscalls_KEIL.c -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/external/segger_rtt/SEGGER_RTT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/external/segger_rtt/SEGGER_RTT.c -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/external/segger_rtt/SEGGER_RTT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/external/segger_rtt/SEGGER_RTT.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/external/segger_rtt/SEGGER_RTT_Conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/external/segger_rtt/SEGGER_RTT_Conf.h -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/external/segger_rtt/SEGGER_RTT_printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/external/segger_rtt/SEGGER_RTT_printf.c -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/external/segger_rtt/license/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/external/segger_rtt/license/license.txt -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/gcc_nrf51.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/gcc_nrf51.ld -------------------------------------------------------------------------------- /SDK/12.3.0_d7731ad/sdk_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/12.3.0_d7731ad/sdk_config.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/ble/ble_dtm/ble_dtm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/ble/ble_dtm/ble_dtm.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/ble/ble_dtm/ble_dtm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/ble/ble_dtm/ble_dtm.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/ble/ble_dtm/ble_dtm_hw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/ble/ble_dtm/ble_dtm_hw.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/ble/ble_racp/ble_racp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/ble/ble_racp/ble_racp.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/ble/ble_racp/ble_racp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/ble/ble_racp/ble_racp.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/ble/common/ble_advdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/ble/common/ble_advdata.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/ble/common/ble_advdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/ble/common/ble_advdata.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/ble/common/ble_conn_params.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/ble/common/ble_conn_params.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/ble/common/ble_conn_params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/ble/common/ble_conn_params.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/ble/common/ble_conn_state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/ble/common/ble_conn_state.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/ble/common/ble_conn_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/ble/common/ble_conn_state.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/ble/common/ble_date_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/ble/common/ble_date_time.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/ble/common/ble_gatt_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/ble/common/ble_gatt_db.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/ble/common/ble_srv_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/ble/common/ble_srv_common.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/ble/common/ble_srv_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/ble/common/ble_srv_common.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/ble/nrf_ble_gq/nrf_ble_gq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/ble/nrf_ble_gq/nrf_ble_gq.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/ble/nrf_ble_gq/nrf_ble_gq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/ble/nrf_ble_gq/nrf_ble_gq.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/ble/peer_manager/peer_id.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/ble/peer_manager/peer_id.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/ble/peer_manager/peer_id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/ble/peer_manager/peer_id.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/ble/peer_manager/pm_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/ble/peer_manager/pm_buffer.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/ble/peer_manager/pm_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/ble/peer_manager/pm_buffer.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/boards/arduino_primo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/boards/arduino_primo.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/boards/boards.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/boards/boards.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/boards/boards.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/boards/boards.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/boards/d52_starterkit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/boards/d52_starterkit.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/boards/n5_starterkit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/boards/n5_starterkit.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/boards/nrf6310.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/boards/nrf6310.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/boards/pca10000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/boards/pca10000.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/boards/pca10001.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/boards/pca10001.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/boards/pca10003.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/boards/pca10003.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/boards/pca10028.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/boards/pca10028.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/boards/pca10031.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/boards/pca10031.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/boards/pca10036.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/boards/pca10036.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/boards/pca10040.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/boards/pca10040.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/boards/pca10056.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/boards/pca10056.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/boards/pca10059.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/boards/pca10059.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/boards/pca10100.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/boards/pca10100.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/boards/pca10112.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/boards/pca10112.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/boards/pca20006.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/boards/pca20006.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/boards/pca20020.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/boards/pca20020.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/boards/wt51822.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/boards/wt51822.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/drivers_ext/bh1745/bh1745.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/drivers_ext/bh1745/bh1745.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/drivers_ext/bh1745/bh1745.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/drivers_ext/bh1745/bh1745.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/drivers_ext/ccs811/ccs811.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/drivers_ext/ccs811/ccs811.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/drivers_ext/ccs811/ccs811.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/drivers_ext/ccs811/ccs811.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/drivers_ext/ds1624/ds1624.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/drivers_ext/ds1624/ds1624.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/drivers_ext/ds1624/ds1624.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/drivers_ext/ds1624/ds1624.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/drivers_ext/hts221/hts221.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/drivers_ext/hts221/hts221.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/drivers_ext/hts221/hts221.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/drivers_ext/hts221/hts221.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/drivers_ext/st7735/st7735.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/drivers_ext/st7735/st7735.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/drivers_nrf/sdio/sdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/drivers_nrf/sdio/sdio.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/drivers_nrf/sdio/sdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/drivers_nrf/sdio/sdio.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/libraries/bsp/bsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/libraries/bsp/bsp.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/libraries/bsp/bsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/libraries/bsp/bsp.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/libraries/bsp/bsp_btn_ant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/libraries/bsp/bsp_btn_ant.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/libraries/bsp/bsp_btn_ant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/libraries/bsp/bsp_btn_ant.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/libraries/bsp/bsp_btn_ble.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/libraries/bsp/bsp_btn_ble.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/libraries/bsp/bsp_btn_ble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/libraries/bsp/bsp_btn_ble.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/libraries/bsp/bsp_cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/libraries/bsp/bsp_cli.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/libraries/bsp/bsp_cli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/libraries/bsp/bsp_cli.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/libraries/bsp/bsp_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/libraries/bsp/bsp_config.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/libraries/bsp/bsp_nfc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/libraries/bsp/bsp_nfc.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/libraries/bsp/bsp_nfc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/libraries/bsp/bsp_nfc.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/libraries/cli/nrf_cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/libraries/cli/nrf_cli.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/libraries/cli/nrf_cli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/libraries/cli/nrf_cli.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/libraries/crc16/crc16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/libraries/crc16/crc16.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/libraries/crc16/crc16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/libraries/crc16/crc16.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/libraries/crc32/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/libraries/crc32/crc32.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/libraries/crc32/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/libraries/crc32/crc32.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/libraries/delay/nrf_delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/libraries/delay/nrf_delay.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/libraries/ecc/ecc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/libraries/ecc/ecc.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/libraries/ecc/ecc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/libraries/ecc/ecc.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/libraries/fds/fds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/libraries/fds/fds.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/libraries/fds/fds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/libraries/fds/fds.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/libraries/fifo/app_fifo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/libraries/fifo/app_fifo.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/libraries/fifo/app_fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/libraries/fifo/app_fifo.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/libraries/gfx/nrf_gfx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/libraries/gfx/nrf_gfx.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/libraries/gfx/nrf_gfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/libraries/gfx/nrf_gfx.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/libraries/gfx/nrf_lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/libraries/gfx/nrf_lcd.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/libraries/hci/hci_mem_pool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/libraries/hci/hci_mem_pool.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/libraries/hci/hci_mem_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/libraries/hci/hci_mem_pool.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/libraries/hci/hci_slip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/libraries/hci/hci_slip.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/libraries/hci/hci_slip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/libraries/hci/hci_slip.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/libraries/log/nrf_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/libraries/log/nrf_log.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/libraries/log/nrf_log_ctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/libraries/log/nrf_log_ctrl.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/libraries/mpu/nrf_mpu_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/libraries/mpu/nrf_mpu_lib.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/libraries/mpu/nrf_mpu_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/libraries/mpu/nrf_mpu_lib.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/libraries/mutex/nrf_mtx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/libraries/mutex/nrf_mtx.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/libraries/pwm/app_pwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/libraries/pwm/app_pwm.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/libraries/pwm/app_pwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/libraries/pwm/app_pwm.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/libraries/queue/nrf_queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/libraries/queue/nrf_queue.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/libraries/queue/nrf_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/libraries/queue/nrf_queue.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/libraries/sha256/sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/libraries/sha256/sha256.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/libraries/sha256/sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/libraries/sha256/sha256.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/libraries/slip/slip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/libraries/slip/slip.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/libraries/slip/slip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/libraries/slip/slip.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/libraries/svc/nrf_svci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/libraries/svc/nrf_svci.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/libraries/timer/app_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/libraries/timer/app_timer.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/libraries/timer/app_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/libraries/timer/app_timer.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/libraries/timer/app_timer2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/libraries/timer/app_timer2.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/libraries/timer/drv_rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/libraries/timer/drv_rtc.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/libraries/timer/drv_rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/libraries/timer/drv_rtc.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/libraries/uart/app_uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/libraries/uart/app_uart.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/libraries/uart/app_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/libraries/uart/app_uart.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/libraries/uart/retarget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/libraries/uart/retarget.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/libraries/usbd/app_usbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/libraries/usbd/app_usbd.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/libraries/usbd/app_usbd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/libraries/usbd/app_usbd.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/libraries/util/app_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/libraries/util/app_error.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/libraries/util/app_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/libraries/util/app_error.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/libraries/util/app_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/libraries/util/app_util.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/libraries/util/nrf_assert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/libraries/util/nrf_assert.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/libraries/util/nrf_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/libraries/util/nrf_assert.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/libraries/util/nrf_bitmask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/libraries/util/nrf_bitmask.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/libraries/util/sdk_alloca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/libraries/util/sdk_alloca.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/libraries/util/sdk_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/libraries/util/sdk_common.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/libraries/util/sdk_errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/libraries/util/sdk_errors.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/libraries/util/sdk_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/libraries/util/sdk_macros.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/libraries/util/sdk_os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/libraries/util/sdk_os.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/sdk_validation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/sdk_validation.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/softdevice/common/nrf_sdh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/softdevice/common/nrf_sdh.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/softdevice/common/nrf_sdh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/softdevice/common/nrf_sdh.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/toolchain/arm/uicr_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/toolchain/arm/uicr_config.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/toolchain/gcc/Makefile.posix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/components/toolchain/gcc/Makefile.posix -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/components/toolchain/gcc/dump.mk: -------------------------------------------------------------------------------- 1 | $(info $($(VARIABLE))) 2 | all: ; 3 | -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/dfu/dfu_public_key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/dfu/dfu_public_key.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/dfu/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/dfu/main.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/dfu/nrf_crypto_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/dfu/nrf_crypto_allocator.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/dfu/sdk_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/dfu/sdk_config.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/external/fprintf/nrf_fprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/external/fprintf/nrf_fprintf.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/external/fprintf/nrf_fprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/external/fprintf/nrf_fprintf.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/external/fprintf/nrf_fprintf_format.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/external/fprintf/nrf_fprintf_format.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/external/fprintf/nrf_fprintf_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/external/fprintf/nrf_fprintf_format.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/external/micro-ecc/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/external/micro-ecc/license.txt -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/external/micro-ecc/micro-ecc/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/external/micro-ecc/micro-ecc/types.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/external/micro-ecc/micro-ecc/uECC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/external/micro-ecc/micro-ecc/uECC.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/external/micro-ecc/micro-ecc/uECC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/external/micro-ecc/micro-ecc/uECC.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/external/micro-ecc/micro-ecc/uECC_vli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/external/micro-ecc/micro-ecc/uECC_vli.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/external/nano-pb/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/external/nano-pb/LICENSE.txt -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/external/nano-pb/pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/external/nano-pb/pb.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/external/nano-pb/pb_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/external/nano-pb/pb_common.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/external/nano-pb/pb_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/external/nano-pb/pb_common.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/external/nano-pb/pb_decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/external/nano-pb/pb_decode.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/external/nano-pb/pb_decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/external/nano-pb/pb_decode.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/external/nano-pb/pb_encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/external/nano-pb/pb_encode.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/external/nano-pb/pb_encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/external/nano-pb/pb_encode.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/external/nrf_oberon/lib/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/external/nrf_oberon/lib/license.txt -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/external/nrf_oberon/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/external/nrf_oberon/license.txt -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/external/segger_rtt/SEGGER_RTT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/external/segger_rtt/SEGGER_RTT.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/external/segger_rtt/SEGGER_RTT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/external/segger_rtt/SEGGER_RTT.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/external/segger_rtt/SEGGER_RTT_Conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/external/segger_rtt/SEGGER_RTT_Conf.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/external/segger_rtt/SEGGER_RTT_printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/external/segger_rtt/SEGGER_RTT_printf.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/external/segger_rtt/license/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/external/segger_rtt/license/license.txt -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/gcc_nrf52.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/gcc_nrf52.ld -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/integration/nrfx/legacy/nrf_drv_clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/integration/nrfx/legacy/nrf_drv_clock.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/integration/nrfx/legacy/nrf_drv_clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/integration/nrfx/legacy/nrf_drv_clock.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/integration/nrfx/legacy/nrf_drv_comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/integration/nrfx/legacy/nrf_drv_comp.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/integration/nrfx/legacy/nrf_drv_i2s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/integration/nrfx/legacy/nrf_drv_i2s.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/integration/nrfx/legacy/nrf_drv_pdm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/integration/nrfx/legacy/nrf_drv_pdm.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/integration/nrfx/legacy/nrf_drv_power.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/integration/nrfx/legacy/nrf_drv_power.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/integration/nrfx/legacy/nrf_drv_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/integration/nrfx/legacy/nrf_drv_power.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/integration/nrfx/legacy/nrf_drv_ppi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/integration/nrfx/legacy/nrf_drv_ppi.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/integration/nrfx/legacy/nrf_drv_ppi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/integration/nrfx/legacy/nrf_drv_ppi.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/integration/nrfx/legacy/nrf_drv_pwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/integration/nrfx/legacy/nrf_drv_pwm.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/integration/nrfx/legacy/nrf_drv_qdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/integration/nrfx/legacy/nrf_drv_qdec.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/integration/nrfx/legacy/nrf_drv_qspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/integration/nrfx/legacy/nrf_drv_qspi.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/integration/nrfx/legacy/nrf_drv_rng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/integration/nrfx/legacy/nrf_drv_rng.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/integration/nrfx/legacy/nrf_drv_rng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/integration/nrfx/legacy/nrf_drv_rng.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/integration/nrfx/legacy/nrf_drv_rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/integration/nrfx/legacy/nrf_drv_rtc.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/integration/nrfx/legacy/nrf_drv_saadc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/integration/nrfx/legacy/nrf_drv_saadc.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/integration/nrfx/legacy/nrf_drv_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/integration/nrfx/legacy/nrf_drv_spi.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/integration/nrfx/legacy/nrf_drv_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/integration/nrfx/legacy/nrf_drv_spi.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/integration/nrfx/legacy/nrf_drv_spis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/integration/nrfx/legacy/nrf_drv_spis.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/integration/nrfx/legacy/nrf_drv_spis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/integration/nrfx/legacy/nrf_drv_spis.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/integration/nrfx/legacy/nrf_drv_swi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/integration/nrfx/legacy/nrf_drv_swi.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/integration/nrfx/legacy/nrf_drv_swi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/integration/nrfx/legacy/nrf_drv_swi.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/integration/nrfx/legacy/nrf_drv_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/integration/nrfx/legacy/nrf_drv_timer.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/integration/nrfx/legacy/nrf_drv_twi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/integration/nrfx/legacy/nrf_drv_twi.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/integration/nrfx/legacy/nrf_drv_twi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/integration/nrfx/legacy/nrf_drv_twi.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/integration/nrfx/legacy/nrf_drv_twis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/integration/nrfx/legacy/nrf_drv_twis.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/integration/nrfx/legacy/nrf_drv_uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/integration/nrfx/legacy/nrf_drv_uart.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/integration/nrfx/legacy/nrf_drv_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/integration/nrfx/legacy/nrf_drv_uart.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/integration/nrfx/legacy/nrf_drv_usbd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/integration/nrfx/legacy/nrf_drv_usbd.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/integration/nrfx/legacy/nrf_drv_wdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/integration/nrfx/legacy/nrf_drv_wdt.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/integration/nrfx/nrfx_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/integration/nrfx/nrfx_config.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/integration/nrfx/nrfx_glue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/integration/nrfx/nrfx_glue.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/integration/nrfx/nrfx_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/integration/nrfx/nrfx_log.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/CHANGELOG.md -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/LICENSE -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/README.md -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/doc/buildfiles/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/doc/buildfiles/favicon.ico -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/doc/buildfiles/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/doc/buildfiles/footer.html -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/doc/buildfiles/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/doc/buildfiles/header.html -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/doc/buildfiles/layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/doc/buildfiles/layout.xml -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/doc/drv_supp_matrix.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/doc/drv_supp_matrix.dox -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/doc/generate_html_doc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/doc/generate_html_doc.sh -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/doc/main_page.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/doc/main_page.dox -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/doc/nrf51_series.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/doc/nrf51_series.dox -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/doc/nrf52810.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/doc/nrf52810.dox -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/doc/nrf52820.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/doc/nrf52820.dox -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/doc/nrf52832.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/doc/nrf52832.dox -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/doc/nrf52833.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/doc/nrf52833.dox -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/doc/nrf52840.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/doc/nrf52840.dox -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/doc/nrf9160.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/doc/nrf9160.dox -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/doc/nrfx.doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/doc/nrfx.doxyfile -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/doc/nrfx_api.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/doc/nrfx_api.dox -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/drivers/include/nrfx_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/drivers/include/nrfx_adc.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/drivers/include/nrfx_i2s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/drivers/include/nrfx_i2s.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/drivers/include/nrfx_pdm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/drivers/include/nrfx_pdm.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/drivers/include/nrfx_ppi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/drivers/include/nrfx_ppi.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/drivers/include/nrfx_pwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/drivers/include/nrfx_pwm.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/drivers/include/nrfx_rng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/drivers/include/nrfx_rng.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/drivers/include/nrfx_rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/drivers/include/nrfx_rtc.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/drivers/include/nrfx_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/drivers/include/nrfx_spi.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/drivers/include/nrfx_swi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/drivers/include/nrfx_swi.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/drivers/include/nrfx_twi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/drivers/include/nrfx_twi.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/drivers/include/nrfx_wdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/drivers/include/nrfx_wdt.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/drivers/nrfx_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/drivers/nrfx_common.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/drivers/nrfx_errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/drivers/nrfx_errors.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/drivers/src/nrfx_adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/drivers/src/nrfx_adc.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/drivers/src/nrfx_clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/drivers/src/nrfx_clock.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/drivers/src/nrfx_comp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/drivers/src/nrfx_comp.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/drivers/src/nrfx_dppi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/drivers/src/nrfx_dppi.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/drivers/src/nrfx_gpiote.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/drivers/src/nrfx_gpiote.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/drivers/src/nrfx_i2s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/drivers/src/nrfx_i2s.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/drivers/src/nrfx_lpcomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/drivers/src/nrfx_lpcomp.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/drivers/src/nrfx_nfct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/drivers/src/nrfx_nfct.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/drivers/src/nrfx_nvmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/drivers/src/nrfx_nvmc.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/drivers/src/nrfx_pdm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/drivers/src/nrfx_pdm.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/drivers/src/nrfx_power.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/drivers/src/nrfx_power.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/drivers/src/nrfx_ppi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/drivers/src/nrfx_ppi.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/drivers/src/nrfx_pwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/drivers/src/nrfx_pwm.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/drivers/src/nrfx_qdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/drivers/src/nrfx_qdec.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/drivers/src/nrfx_qspi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/drivers/src/nrfx_qspi.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/drivers/src/nrfx_rng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/drivers/src/nrfx_rng.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/drivers/src/nrfx_rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/drivers/src/nrfx_rtc.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/drivers/src/nrfx_saadc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/drivers/src/nrfx_saadc.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/drivers/src/nrfx_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/drivers/src/nrfx_spi.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/drivers/src/nrfx_spim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/drivers/src/nrfx_spim.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/drivers/src/nrfx_spis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/drivers/src/nrfx_spis.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/drivers/src/nrfx_swi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/drivers/src/nrfx_swi.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/drivers/src/nrfx_systick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/drivers/src/nrfx_systick.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/drivers/src/nrfx_temp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/drivers/src/nrfx_temp.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/drivers/src/nrfx_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/drivers/src/nrfx_timer.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/drivers/src/nrfx_twi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/drivers/src/nrfx_twi.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/drivers/src/nrfx_twim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/drivers/src/nrfx_twim.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/drivers/src/nrfx_twis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/drivers/src/nrfx_twis.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/drivers/src/nrfx_uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/drivers/src/nrfx_uart.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/drivers/src/nrfx_uarte.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/drivers/src/nrfx_uarte.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/drivers/src/nrfx_usbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/drivers/src/nrfx_usbd.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/drivers/src/nrfx_wdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/drivers/src/nrfx_wdt.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/drivers/src/prs/nrfx_prs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/drivers/src/prs/nrfx_prs.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/drivers/src/prs/nrfx_prs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/drivers/src/prs/nrfx_prs.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_aar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_aar.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_acl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_acl.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_adc.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_bprot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_bprot.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_ccm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_ccm.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_clock.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_comp.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_dppi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_dppi.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_ecb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_ecb.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_ecb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_ecb.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_egu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_egu.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_ficr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_ficr.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_gpio.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_gpiote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_gpiote.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_i2s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_i2s.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_kmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_kmu.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_lpcomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_lpcomp.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_mpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_mpu.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_mwu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_mwu.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_nfct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_nfct.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_nvmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_nvmc.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_nvmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_nvmc.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_pdm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_pdm.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_power.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_ppi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_ppi.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_pwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_pwm.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_qdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_qdec.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_qspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_qspi.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_radio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_radio.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_regulators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_regulators.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_rng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_rng.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_rtc.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_saadc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_saadc.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_spi.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_spim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_spim.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_spis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_spis.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_spu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_spu.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_systick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_systick.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_temp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_temp.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_timer.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_twi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_twi.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_twim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_twim.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_twis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_twis.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_uart.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_uarte.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_uarte.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_usbd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_usbd.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_vmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_vmc.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_wdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/hal/nrf_wdt.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/helpers/nrfx_gppi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/helpers/nrfx_gppi.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/arm_startup_nrf51.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/arm_startup_nrf51.s -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/arm_startup_nrf52.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/arm_startup_nrf52.s -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/arm_startup_nrf52805.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/arm_startup_nrf52805.s -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/arm_startup_nrf52810.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/arm_startup_nrf52810.s -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/arm_startup_nrf52811.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/arm_startup_nrf52811.s -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/arm_startup_nrf52820.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/arm_startup_nrf52820.s -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/arm_startup_nrf52833.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/arm_startup_nrf52833.s -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/arm_startup_nrf52840.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/arm_startup_nrf52840.s -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/arm_startup_nrf9160.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/arm_startup_nrf9160.s -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/compiler_abstraction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/compiler_abstraction.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/gcc_startup_nrf51.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/gcc_startup_nrf51.S -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/gcc_startup_nrf52.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/gcc_startup_nrf52.S -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/gcc_startup_nrf52805.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/gcc_startup_nrf52805.S -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/gcc_startup_nrf52810.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/gcc_startup_nrf52810.S -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/gcc_startup_nrf52811.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/gcc_startup_nrf52811.S -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/gcc_startup_nrf52820.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/gcc_startup_nrf52820.S -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/gcc_startup_nrf52833.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/gcc_startup_nrf52833.S -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/gcc_startup_nrf52840.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/gcc_startup_nrf52840.S -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/gcc_startup_nrf9160.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/gcc_startup_nrf9160.S -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/iar_startup_nrf51.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/iar_startup_nrf51.s -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/iar_startup_nrf52.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/iar_startup_nrf52.s -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/iar_startup_nrf52805.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/iar_startup_nrf52805.s -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/iar_startup_nrf52810.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/iar_startup_nrf52810.s -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/iar_startup_nrf52811.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/iar_startup_nrf52811.s -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/iar_startup_nrf52820.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/iar_startup_nrf52820.s -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/iar_startup_nrf52833.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/iar_startup_nrf52833.s -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/iar_startup_nrf52840.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/iar_startup_nrf52840.s -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/iar_startup_nrf9160.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/iar_startup_nrf9160.s -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf51.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf51.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf51.svd -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf51422_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf51422_peripherals.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf51422_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf51422_xxaa.ld -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf51422_xxab.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf51422_xxab.ld -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf51422_xxac.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf51422_xxac.ld -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf51801_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf51801_peripherals.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf51801_xxab.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf51801_xxab.ld -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf51802_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf51802_peripherals.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf51802_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf51802_xxaa.ld -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf51822_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf51822_peripherals.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf51822_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf51822_xxaa.ld -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf51822_xxab.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf51822_xxab.ld -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf51822_xxac.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf51822_xxac.ld -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf51824_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf51824_peripherals.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf51824_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf51824_xxaa.ld -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf51_bitfields.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf51_bitfields.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf51_common.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf51_common.ld -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf51_deprecated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf51_deprecated.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf51_erratas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf51_erratas.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf51_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf51_peripherals.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf51_to_nrf52.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf51_to_nrf52.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf51_to_nrf52810.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf51_to_nrf52810.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf51_to_nrf52840.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf51_to_nrf52840.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf51_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf51_xxaa.ld -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf51_xxab.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf51_xxab.ld -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf51_xxac.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf51_xxac.ld -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf52.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf52.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf52805.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf52805.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf52805_bitfields.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf52805_bitfields.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf52805_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf52805_peripherals.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf52805_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf52805_xxaa.ld -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf52810.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf52810.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf52810_bitfields.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf52810_bitfields.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf52810_name_change.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf52810_name_change.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf52810_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf52810_peripherals.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf52810_to_nrf52811.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf52810_to_nrf52811.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf52810_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf52810_xxaa.ld -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf52811.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf52811.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf52811_bitfields.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf52811_bitfields.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf52811_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf52811_peripherals.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf52811_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf52811_xxaa.ld -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf52820.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf52820.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf52820_bitfields.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf52820_bitfields.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf52820_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf52820_peripherals.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf52820_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf52820_xxaa.ld -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf52832_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf52832_peripherals.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf52832_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf52832_xxaa.ld -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf52832_xxab.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf52832_xxab.ld -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf52833.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf52833.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf52833_bitfields.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf52833_bitfields.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf52833_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf52833_peripherals.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf52833_to_nrf52820.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf52833_to_nrf52820.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf52833_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf52833_xxaa.ld -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf52840.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf52840.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf52840_bitfields.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf52840_bitfields.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf52840_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf52840_peripherals.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf52840_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf52840_xxaa.ld -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf52_bitfields.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf52_bitfields.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf52_common.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf52_common.ld -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf52_erratas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf52_erratas.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf52_name_change.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf52_name_change.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf52_to_nrf52810.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf52_to_nrf52810.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf52_to_nrf52833.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf52_to_nrf52833.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf52_to_nrf52840.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf52_to_nrf52840.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf52_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf52_xxaa.ld -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf5340_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf5340_application.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf5340_network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf5340_network.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf53_erratas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf53_erratas.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf9160.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf9160.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf9160_bitfields.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf9160_bitfields.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf9160_name_change.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf9160_name_change.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf9160_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf9160_peripherals.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf9160_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf9160_xxaa.ld -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf91_erratas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf91_erratas.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf_common.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf_common.ld -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf_erratas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf_erratas.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/nrf_peripherals.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/ses_startup_nrf51.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/ses_startup_nrf51.s -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/ses_startup_nrf52.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/ses_startup_nrf52.s -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/ses_startup_nrf52805.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/ses_startup_nrf52805.s -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/ses_startup_nrf52810.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/ses_startup_nrf52810.s -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/ses_startup_nrf52811.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/ses_startup_nrf52811.s -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/ses_startup_nrf52820.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/ses_startup_nrf52820.s -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/ses_startup_nrf52833.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/ses_startup_nrf52833.s -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/ses_startup_nrf52840.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/ses_startup_nrf52840.s -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/ses_startup_nrf9160.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/ses_startup_nrf9160.s -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/startup_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/startup_config.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/system_nrf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/system_nrf.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/system_nrf51.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/system_nrf51.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/system_nrf51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/system_nrf51.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/system_nrf52.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/system_nrf52.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/system_nrf52.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/system_nrf52.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/system_nrf52805.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/system_nrf52805.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/system_nrf52805.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/system_nrf52805.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/system_nrf52810.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/system_nrf52810.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/system_nrf52810.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/system_nrf52810.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/system_nrf52811.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/system_nrf52811.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/system_nrf52811.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/system_nrf52811.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/system_nrf52820.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/system_nrf52820.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/system_nrf52820.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/system_nrf52820.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/system_nrf52833.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/system_nrf52833.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/system_nrf52833.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/system_nrf52833.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/system_nrf52840.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/system_nrf52840.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/system_nrf52840.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/system_nrf52840.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/system_nrf9160.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/system_nrf9160.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/mdk/system_nrf9160.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/mdk/system_nrf9160.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/nrfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/nrfx.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/soc/nrfx_atomic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/soc/nrfx_atomic.c -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/soc/nrfx_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/soc/nrfx_atomic.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/soc/nrfx_atomic_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/soc/nrfx_atomic_internal.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/soc/nrfx_coredep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/soc/nrfx_coredep.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/soc/nrfx_irqs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/soc/nrfx_irqs.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/soc/nrfx_irqs_nrf51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/soc/nrfx_irqs_nrf51.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/soc/nrfx_irqs_nrf52810.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/soc/nrfx_irqs_nrf52810.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/soc/nrfx_irqs_nrf52811.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/soc/nrfx_irqs_nrf52811.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/soc/nrfx_irqs_nrf52820.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/soc/nrfx_irqs_nrf52820.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/soc/nrfx_irqs_nrf52832.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/soc/nrfx_irqs_nrf52832.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/soc/nrfx_irqs_nrf52833.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/soc/nrfx_irqs_nrf52833.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/soc/nrfx_irqs_nrf52840.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/soc/nrfx_irqs_nrf52840.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/soc/nrfx_irqs_nrf9160.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/soc/nrfx_irqs_nrf9160.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/templates/nrfx_glue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/templates/nrfx_glue.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/modules/nrfx/templates/nrfx_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/modules/nrfx/templates/nrfx_log.h -------------------------------------------------------------------------------- /SDK/17.1.0_ddde560/sdk_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/SDK/17.1.0_ddde560/sdk_config.h -------------------------------------------------------------------------------- /docs/OTP/3c.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/docs/OTP/3c.txt -------------------------------------------------------------------------------- /docs/OTP/bw.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/docs/OTP/bw.txt -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/datasheets/NRF51_Series_Reference_manual_v3.0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/docs/datasheets/NRF51_Series_Reference_manual_v3.0.pdf -------------------------------------------------------------------------------- /docs/datasheets/SSD1619A.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/docs/datasheets/SSD1619A.pdf -------------------------------------------------------------------------------- /docs/datasheets/SSD1683.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/docs/datasheets/SSD1683.pdf -------------------------------------------------------------------------------- /docs/datasheets/UC8151c.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/docs/datasheets/UC8151c.pdf -------------------------------------------------------------------------------- /docs/datasheets/UC8176.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/docs/datasheets/UC8176.pdf -------------------------------------------------------------------------------- /docs/datasheets/UC8276.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/docs/datasheets/UC8276.pdf -------------------------------------------------------------------------------- /docs/datasheets/nRF51822_PS_v3.4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/docs/datasheets/nRF51822_PS_v3.4.pdf -------------------------------------------------------------------------------- /docs/datasheets/nRF52810_PS_v1.5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/docs/datasheets/nRF52810_PS_v1.5.pdf -------------------------------------------------------------------------------- /docs/datasheets/nRF52811_PS_v1.2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/docs/datasheets/nRF52811_PS_v1.2.pdf -------------------------------------------------------------------------------- /docs/develop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/docs/develop.md -------------------------------------------------------------------------------- /docs/devices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/docs/devices.md -------------------------------------------------------------------------------- /docs/images/0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/docs/images/0.jpg -------------------------------------------------------------------------------- /docs/images/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/docs/images/1.jpg -------------------------------------------------------------------------------- /docs/images/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/docs/images/2.jpg -------------------------------------------------------------------------------- /docs/images/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/docs/images/3.jpg -------------------------------------------------------------------------------- /docs/images/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/docs/images/4.jpg -------------------------------------------------------------------------------- /docs/images/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/docs/images/5.jpg -------------------------------------------------------------------------------- /docs/images/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/docs/images/6.jpg -------------------------------------------------------------------------------- /emulator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/emulator.c -------------------------------------------------------------------------------- /html/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/html/css/main.css -------------------------------------------------------------------------------- /html/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/html/favicon.png -------------------------------------------------------------------------------- /html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/html/index.html -------------------------------------------------------------------------------- /html/js/crop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/html/js/crop.js -------------------------------------------------------------------------------- /html/js/dithering.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/html/js/dithering.js -------------------------------------------------------------------------------- /html/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/html/js/main.js -------------------------------------------------------------------------------- /html/js/paint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/html/js/paint.js -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/main.c -------------------------------------------------------------------------------- /main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/main.h -------------------------------------------------------------------------------- /tools/bin/mergehex.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/tools/bin/mergehex.exe -------------------------------------------------------------------------------- /tools/bin/nrfutil.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/tools/bin/nrfutil.exe -------------------------------------------------------------------------------- /tools/bootloader/bl_nrf51822_xxaa_s130.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/tools/bootloader/bl_nrf51822_xxaa_s130.hex -------------------------------------------------------------------------------- /tools/bootloader/bl_nrf52811_xxaa_s112.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/tools/bootloader/bl_nrf52811_xxaa_s112.hex -------------------------------------------------------------------------------- /tools/make-ota-nrf51.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/tools/make-ota-nrf51.bat -------------------------------------------------------------------------------- /tools/make-ota-nrf52.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/tools/make-ota-nrf52.bat -------------------------------------------------------------------------------- /tools/priv.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsl0922/EPD-nRF5/HEAD/tools/priv.pem --------------------------------------------------------------------------------