在好例子网,分享、交流、成长!
您当前所在位置:首页C/C++ 开发实例常规C/C++编程 → IMU实例

IMU实例

常规C/C++编程

下载此实例
  • 开发语言:C/C++
  • 实例大小:36.34M
  • 下载次数:11
  • 浏览次数:83
  • 发布时间:2022-01-19
  • 实例类别:常规C/C++编程
  • 发 布 人:liweiyuanquan
  • 文件格式:.zip
  • 所需积分:2
 相关标签: IMU kf

实例介绍

【实例简介】IMU实例

【实例截图】

from clipboard

【核心代码】.
├── SmartIMU-master
│   ├── LICENSE
│   ├── README.md
│   ├── documents
│   │   ├── SmartIMU_v2.0_3Dpdf.pdf
│   │   ├── SmartIMU_v2.0_BOM.xlsx
│   │   ├── SmartIMU_v2.0_PcbPrint.pdf
│   │   └── SmartIMU_v2.0_Schematic.pdf
│   ├── firmware
│   │   ├── NRF_Peripheral_FLASH
│   │   │   ├── Libraries
│   │   │   │   ├── components
│   │   │   │   │   ├── drivers_nrf
│   │   │   │   │   │   └── nrf_error.h
│   │   │   │   │   └── libraries
│   │   │   │   │       ├── app_error.h
│   │   │   │   │       ├── app_error_weak.h
│   │   │   │   │       ├── app_util.h
│   │   │   │   │       ├── app_util_platform.h
│   │   │   │   │       ├── nordic_common.h
│   │   │   │   │       ├── nrf_assert.h
│   │   │   │   │       ├── nrf_delay.h
│   │   │   │   │       ├── sdk_errors.h
│   │   │   │   │       └── sdk_resources.h
│   │   │   │   ├── documentation
│   │   │   │   │   ├── NordicS.jpg
│   │   │   │   │   ├── index.html
│   │   │   │   │   ├── licenses.html
│   │   │   │   │   ├── licenses.txt
│   │   │   │   │   ├── nRF5_Dynastream_license.txt
│   │   │   │   │   ├── nRF5_Nordic_license.txt
│   │   │   │   │   ├── nRF5x_series_logo.png
│   │   │   │   │   └── release_notes.txt
│   │   │   │   ├── 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_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
│   │   │   │   │       │   │   ├── index.html
│   │   │   │   │       │   │   ├── layout.xml
│   │   │   │   │       │   │   └── nordic_small.png
│   │   │   │   │       │   ├── drv_supp_matrix.dox
│   │   │   │   │       │   ├── generate_html_doc.bat
│   │   │   │   │       │   ├── generate_html_doc.sh
│   │   │   │   │       │   ├── main_page.dox
│   │   │   │   │       │   ├── nrf51_series.dox
│   │   │   │   │       │   ├── nrf52810.dox
│   │   │   │   │       │   ├── nrf52832.dox
│   │   │   │   │       │   ├── nrf52840.dox
│   │   │   │   │       │   ├── nrfx.doxyfile
│   │   │   │   │       │   └── nrfx_api.dox
│   │   │   │   │       ├── drivers
│   │   │   │   │       │   ├── include
│   │   │   │   │       │   │   ├── nrf_bitmask.h
│   │   │   │   │       │   │   ├── nrfx_adc.h
│   │   │   │   │       │   │   ├── nrfx_clock.h
│   │   │   │   │       │   │   ├── nrfx_comp.h
│   │   │   │   │       │   │   ├── nrfx_gpiote.h
│   │   │   │   │       │   │   ├── nrfx_i2s.h
│   │   │   │   │       │   │   ├── nrfx_lpcomp.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_spi.h
│   │   │   │   │       │   │   ├── nrfx_spim.h
│   │   │   │   │       │   │   ├── nrfx_spis.h
│   │   │   │   │       │   │   ├── nrfx_swi.h
│   │   │   │   │       │   │   ├── nrfx_systick.h
│   │   │   │   │       │   │   ├── nrfx_timer.h
│   │   │   │   │       │   │   ├── nrfx_twi.h
│   │   │   │   │       │   │   ├── nrfx_twim.h
│   │   │   │   │       │   │   ├── nrfx_twis.h
│   │   │   │   │       │   │   ├── nrfx_uart.h
│   │   │   │   │       │   │   ├── nrfx_uarte.h
│   │   │   │   │       │   │   └── nrfx_wdt.h
│   │   │   │   │       │   ├── nrfx_common.h
│   │   │   │   │       │   ├── nrfx_errors.h
│   │   │   │   │       │   └── src
│   │   │   │   │       │       ├── nrfx_adc.c
│   │   │   │   │       │       ├── nrfx_clock.c
│   │   │   │   │       │       ├── nrfx_comp.c
│   │   │   │   │       │       ├── nrfx_gpiote.c
│   │   │   │   │       │       ├── nrfx_i2s.c
│   │   │   │   │       │       ├── nrfx_lpcomp.c
│   │   │   │   │       │       ├── nrfx_pdm.c
│   │   │   │   │       │       ├── nrfx_power.c
│   │   │   │   │       │       ├── nrfx_power_clock.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_timer.c
│   │   │   │   │       │       ├── nrfx_twi.c
│   │   │   │   │       │       ├── nrfx_twim.c
│   │   │   │   │       │       ├── nrfx_twis.c
│   │   │   │   │       │       ├── nrfx_uart.c
│   │   │   │   │       │       ├── nrfx_uarte.c
│   │   │   │   │       │       ├── nrfx_wdt.c
│   │   │   │   │       │       └── prs
│   │   │   │   │       │           ├── nrfx_prs.c
│   │   │   │   │       │           └── nrfx_prs.h
│   │   │   │   │       ├── hal
│   │   │   │   │       │   ├── 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_power.h
│   │   │   │   │       │   ├── nrf_ppi.h
│   │   │   │   │       │   ├── nrf_pwm.h
│   │   │   │   │       │   ├── nrf_qdec.h
│   │   │   │   │       │   ├── nrf_qspi.h
│   │   │   │   │       │   ├── nrf_rng.h
│   │   │   │   │       │   ├── nrf_rtc.h
│   │   │   │   │       │   ├── 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
│   │   │   │   │       ├── mdk
│   │   │   │   │       │   ├── arm_startup_nrf51.s
│   │   │   │   │       │   ├── arm_startup_nrf52.s
│   │   │   │   │       │   ├── arm_startup_nrf52810.s
│   │   │   │   │       │   ├── arm_startup_nrf52840.s
│   │   │   │   │       │   ├── compiler_abstraction.h
│   │   │   │   │       │   ├── gcc_startup_nrf51.S
│   │   │   │   │       │   ├── gcc_startup_nrf52.S
│   │   │   │   │       │   ├── gcc_startup_nrf52810.S
│   │   │   │   │       │   ├── gcc_startup_nrf52840.S
│   │   │   │   │       │   ├── iar_startup_nrf51.s
│   │   │   │   │       │   ├── iar_startup_nrf52.s
│   │   │   │   │       │   ├── iar_startup_nrf52810.s
│   │   │   │   │       │   ├── iar_startup_nrf52840.s
│   │   │   │   │       │   ├── nRFxxx.h
│   │   │   │   │       │   ├── nrf.h
│   │   │   │   │       │   ├── nrf51.h
│   │   │   │   │       │   ├── nrf51.svd
│   │   │   │   │       │   ├── nrf51422_peripherals.h
│   │   │   │   │       │   ├── nrf51801_peripherals.h
│   │   │   │   │       │   ├── nrf51801_xxab.ld
│   │   │   │   │       │   ├── nrf51802_peripherals.h
│   │   │   │   │       │   ├── nrf51822_peripherals.h
│   │   │   │   │       │   ├── nrf51824_peripherals.h
│   │   │   │   │       │   ├── nrf51_bitfields.h
│   │   │   │   │       │   ├── nrf51_common.ld
│   │   │   │   │       │   ├── nrf51_deprecated.h
│   │   │   │   │       │   ├── nrf51_peripherals.h
│   │   │   │   │       │   ├── nrf51_to_nrf52.h
│   │   │   │   │       │   ├── nrf51_to_nrf52810.h
│   │   │   │   │       │   ├── nrf51_to_nrf52840.h
│   │   │   │   │       │   ├── nrf51_xxaa.ld
│   │   │   │   │       │   ├── nrf51_xxab.ld
│   │   │   │   │       │   ├── nrf51_xxac.ld
│   │   │   │   │       │   ├── nrf52.h
│   │   │   │   │       │   ├── nrf52.svd
│   │   │   │   │       │   ├── nrf52810.h
│   │   │   │   │       │   ├── nrf52810.svd
│   │   │   │   │       │   ├── nrf52810_bitfields.h
│   │   │   │   │       │   ├── nrf52810_peripherals.h
│   │   │   │   │       │   ├── nrf52810_xxaa.ld
│   │   │   │   │       │   ├── nrf52832_peripherals.h
│   │   │   │   │       │   ├── nrf52832_xxab.ld
│   │   │   │   │       │   ├── nrf52840.h
│   │   │   │   │       │   ├── nrf52840.svd
│   │   │   │   │       │   ├── nrf52840_bitfields.h
│   │   │   │   │       │   ├── nrf52840_peripherals.h
│   │   │   │   │       │   ├── nrf52840_xxaa.ld
│   │   │   │   │       │   ├── nrf52_bitfields.h
│   │   │   │   │       │   ├── nrf52_common.ld
│   │   │   │   │       │   ├── nrf52_name_change.h
│   │   │   │   │       │   ├── nrf52_to_nrf52810.h
│   │   │   │   │       │   ├── nrf52_to_nrf52840.h
│   │   │   │   │       │   ├── nrf52_xxaa.ld
│   │   │   │   │       │   ├── nrf_common.ld
│   │   │   │   │       │   ├── nrf_peripherals.h
│   │   │   │   │       │   ├── ses_nRF_Startup.s
│   │   │   │   │       │   ├── ses_nrf51_Vectors.s
│   │   │   │   │       │   ├── ses_nrf52810_Vectors.s
│   │   │   │   │       │   ├── ses_nrf52840_Vectors.s
│   │   │   │   │       │   ├── ses_nrf52_Vectors.s
│   │   │   │   │       │   ├── startup_config.h
│   │   │   │   │       │   ├── system_nrf51.c
│   │   │   │   │       │   ├── system_nrf51.h
│   │   │   │   │       │   ├── system_nrf52.c
│   │   │   │   │       │   ├── system_nrf52.h
│   │   │   │   │       │   ├── system_nrf52810.c
│   │   │   │   │       │   ├── system_nrf52810.h
│   │   │   │   │       │   ├── system_nrf52840.c
│   │   │   │   │       │   └── system_nrf52840.h
│   │   │   │   │       ├── nrfx.h
│   │   │   │   │       ├── soc
│   │   │   │   │       │   ├── nrfx_coredep.h
│   │   │   │   │       │   ├── nrfx_irqs.h
│   │   │   │   │       │   ├── nrfx_irqs_nrf51.h
│   │   │   │   │       │   ├── nrfx_irqs_nrf52810.h
│   │   │   │   │       │   ├── nrfx_irqs_nrf52832.h
│   │   │   │   │       │   └── nrfx_irqs_nrf52840.h
│   │   │   │   │       └── templates
│   │   │   │   │           ├── nRF51
│   │   │   │   │           │   └── nrfx_config.h
│   │   │   │   │           ├── nRF52810
│   │   │   │   │           │   └── nrfx_config.h
│   │   │   │   │           ├── nRF52832
│   │   │   │   │           │   └── nrfx_config.h
│   │   │   │   │           ├── nRF52840
│   │   │   │   │           │   └── nrfx_config.h
│   │   │   │   │           ├── nrfx_glue.h
│   │   │   │   │           └── nrfx_log.h
│   │   │   │   └── sdk_config.h
│   │   │   ├── Program
│   │   │   │   ├── algorithms
│   │   │   │   │   ├── mathUnit.c
│   │   │   │   │   └── mathUnit.h
│   │   │   │   ├── boardConfig.h
│   │   │   │   ├── drivers
│   │   │   │   │   ├── nrf5x_clock.c
│   │   │   │   │   ├── nrf5x_clock.h
│   │   │   │   │   ├── nrf5x_delay.c
│   │   │   │   │   ├── nrf5x_delay.h
│   │   │   │   │   ├── nrf5x_flash.c
│   │   │   │   │   ├── nrf5x_flash.h
│   │   │   │   │   ├── nrf5x_system.h
│   │   │   │   │   ├── nrf5x_timer.c
│   │   │   │   │   ├── nrf5x_timer.h
│   │   │   │   │   ├── nrf5x_uarte.c
│   │   │   │   │   └── nrf5x_uarte.h
│   │   │   │   ├── main.c
│   │   │   │   ├── modules
│   │   │   │   │   ├── kSerial.c
│   │   │   │   │   ├── kSerial.h
│   │   │   │   │   ├── serial.c
│   │   │   │   │   └── serial.h
│   │   │   │   ├── nrf5x_bsp.c
│   │   │   │   ├── nrf5x_bsp.h
│   │   │   │   ├── nrf5x_conf.h
│   │   │   │   └── nrf5x_it.c
│   │   │   └── Project
│   │   │       ├── ClearFile.bat
│   │   │       ├── ProjNRF5x.uvguix.Hom
│   │   │       ├── ProjNRF5x.uvoptx
│   │   │       ├── ProjNRF5x.uvprojx
│   │   │       └── RTE
│   │   │           ├── _NRF52-DK
│   │   │           │   └── RTE_Components.h
│   │   │           ├── _NRF52810
│   │   │           │   └── RTE_Components.h
│   │   │           └── _NRF52832
│   │   │               └── RTE_Components.h
│   │   ├── NRF_Peripheral_GPIO
│   │   │   ├── Libraries
│   │   │   │   ├── components
│   │   │   │   │   ├── drivers_nrf
│   │   │   │   │   │   └── nrf_error.h
│   │   │   │   │   └── libraries
│   │   │   │   │       ├── app_error.h
│   │   │   │   │       ├── app_error_weak.h
│   │   │   │   │       ├── app_util.h
│   │   │   │   │       ├── app_util_platform.h
│   │   │   │   │       ├── nordic_common.h
│   │   │   │   │       ├── nrf_assert.h
│   │   │   │   │       ├── nrf_delay.h
│   │   │   │   │       ├── sdk_errors.h
│   │   │   │   │       └── sdk_resources.h
│   │   │   │   ├── documentation
│   │   │   │   │   ├── NordicS.jpg
│   │   │   │   │   ├── index.html
│   │   │   │   │   ├── licenses.html
│   │   │   │   │   ├── licenses.txt
│   │   │   │   │   ├── nRF5_Dynastream_license.txt
│   │   │   │   │   ├── nRF5_Nordic_license.txt
│   │   │   │   │   ├── nRF5x_series_logo.png
│   │   │   │   │   └── release_notes.txt
│   │   │   │   ├── 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_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
│   │   │   │   │       │   │   ├── index.html
│   │   │   │   │       │   │   ├── layout.xml
│   │   │   │   │       │   │   └── nordic_small.png
│   │   │   │   │       │   ├── drv_supp_matrix.dox
│   │   │   │   │       │   ├── generate_html_doc.bat
│   │   │   │   │       │   ├── generate_html_doc.sh
│   │   │   │   │       │   ├── main_page.dox
│   │   │   │   │       │   ├── nrf51_series.dox
│   │   │   │   │       │   ├── nrf52810.dox
│   │   │   │   │       │   ├── nrf52832.dox
│   │   │   │   │       │   ├── nrf52840.dox
│   │   │   │   │       │   ├── nrfx.doxyfile
│   │   │   │   │       │   └── nrfx_api.dox
│   │   │   │   │       ├── drivers
│   │   │   │   │       │   ├── include
│   │   │   │   │       │   │   ├── nrf_bitmask.h
│   │   │   │   │       │   │   ├── nrfx_adc.h
│   │   │   │   │       │   │   ├── nrfx_clock.h
│   │   │   │   │       │   │   ├── nrfx_comp.h
│   │   │   │   │       │   │   ├── nrfx_gpiote.h
│   │   │   │   │       │   │   ├── nrfx_i2s.h
│   │   │   │   │       │   │   ├── nrfx_lpcomp.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_spi.h
│   │   │   │   │       │   │   ├── nrfx_spim.h
│   │   │   │   │       │   │   ├── nrfx_spis.h
│   │   │   │   │       │   │   ├── nrfx_swi.h
│   │   │   │   │       │   │   ├── nrfx_systick.h
│   │   │   │   │       │   │   ├── nrfx_timer.h
│   │   │   │   │       │   │   ├── nrfx_twi.h
│   │   │   │   │       │   │   ├── nrfx_twim.h
│   │   │   │   │       │   │   ├── nrfx_twis.h
│   │   │   │   │       │   │   ├── nrfx_uart.h
│   │   │   │   │       │   │   ├── nrfx_uarte.h
│   │   │   │   │       │   │   └── nrfx_wdt.h
│   │   │   │   │       │   ├── nrfx_common.h
│   │   │   │   │       │   ├── nrfx_errors.h
│   │   │   │   │       │   └── src
│   │   │   │   │       │       ├── nrfx_adc.c
│   │   │   │   │       │       ├── nrfx_clock.c
│   │   │   │   │       │       ├── nrfx_comp.c
│   │   │   │   │       │       ├── nrfx_gpiote.c
│   │   │   │   │       │       ├── nrfx_i2s.c
│   │   │   │   │       │       ├── nrfx_lpcomp.c
│   │   │   │   │       │       ├── nrfx_pdm.c
│   │   │   │   │       │       ├── nrfx_power.c
│   │   │   │   │       │       ├── nrfx_power_clock.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_timer.c
│   │   │   │   │       │       ├── nrfx_twi.c
│   │   │   │   │       │       ├── nrfx_twim.c
│   │   │   │   │       │       ├── nrfx_twis.c
│   │   │   │   │       │       ├── nrfx_uart.c
│   │   │   │   │       │       ├── nrfx_uarte.c
│   │   │   │   │       │       ├── nrfx_wdt.c
│   │   │   │   │       │       └── prs
│   │   │   │   │       │           ├── nrfx_prs.c
│   │   │   │   │       │           └── nrfx_prs.h
│   │   │   │   │       ├── hal
│   │   │   │   │       │   ├── 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_power.h
│   │   │   │   │       │   ├── nrf_ppi.h
│   │   │   │   │       │   ├── nrf_pwm.h
│   │   │   │   │       │   ├── nrf_qdec.h
│   │   │   │   │       │   ├── nrf_qspi.h
│   │   │   │   │       │   ├── nrf_rng.h
│   │   │   │   │       │   ├── nrf_rtc.h
│   │   │   │   │       │   ├── 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
│   │   │   │   │       ├── mdk
│   │   │   │   │       │   ├── arm_startup_nrf51.s
│   │   │   │   │       │   ├── arm_startup_nrf52.s
│   │   │   │   │       │   ├── arm_startup_nrf52810.s
│   │   │   │   │       │   ├── arm_startup_nrf52840.s
│   │   │   │   │       │   ├── compiler_abstraction.h
│   │   │   │   │       │   ├── gcc_startup_nrf51.S
│   │   │   │   │       │   ├── gcc_startup_nrf52.S
│   │   │   │   │       │   ├── gcc_startup_nrf52810.S
│   │   │   │   │       │   ├── gcc_startup_nrf52840.S
│   │   │   │   │       │   ├── iar_startup_nrf51.s
│   │   │   │   │       │   ├── iar_startup_nrf52.s
│   │   │   │   │       │   ├── iar_startup_nrf52810.s
│   │   │   │   │       │   ├── iar_startup_nrf52840.s
│   │   │   │   │       │   ├── nRFxxx.h
│   │   │   │   │       │   ├── nrf.h
│   │   │   │   │       │   ├── nrf51.h
│   │   │   │   │       │   ├── nrf51.svd
│   │   │   │   │       │   ├── nrf51422_peripherals.h
│   │   │   │   │       │   ├── nrf51801_peripherals.h
│   │   │   │   │       │   ├── nrf51801_xxab.ld
│   │   │   │   │       │   ├── nrf51802_peripherals.h
│   │   │   │   │       │   ├── nrf51822_peripherals.h
│   │   │   │   │       │   ├── nrf51824_peripherals.h
│   │   │   │   │       │   ├── nrf51_bitfields.h
│   │   │   │   │       │   ├── nrf51_common.ld
│   │   │   │   │       │   ├── nrf51_deprecated.h
│   │   │   │   │       │   ├── nrf51_peripherals.h
│   │   │   │   │       │   ├── nrf51_to_nrf52.h
│   │   │   │   │       │   ├── nrf51_to_nrf52810.h
│   │   │   │   │       │   ├── nrf51_to_nrf52840.h
│   │   │   │   │       │   ├── nrf51_xxaa.ld
│   │   │   │   │       │   ├── nrf51_xxab.ld
│   │   │   │   │       │   ├── nrf51_xxac.ld
│   │   │   │   │       │   ├── nrf52.h
│   │   │   │   │       │   ├── nrf52.svd
│   │   │   │   │       │   ├── nrf52810.h
│   │   │   │   │       │   ├── nrf52810.svd
│   │   │   │   │       │   ├── nrf52810_bitfields.h
│   │   │   │   │       │   ├── nrf52810_peripherals.h
│   │   │   │   │       │   ├── nrf52810_xxaa.ld
│   │   │   │   │       │   ├── nrf52832_peripherals.h
│   │   │   │   │       │   ├── nrf52832_xxab.ld
│   │   │   │   │       │   ├── nrf52840.h
│   │   │   │   │       │   ├── nrf52840.svd
│   │   │   │   │       │   ├── nrf52840_bitfields.h
│   │   │   │   │       │   ├── nrf52840_peripherals.h
│   │   │   │   │       │   ├── nrf52840_xxaa.ld
│   │   │   │   │       │   ├── nrf52_bitfields.h
│   │   │   │   │       │   ├── nrf52_common.ld
│   │   │   │   │       │   ├── nrf52_name_change.h
│   │   │   │   │       │   ├── nrf52_to_nrf52810.h
│   │   │   │   │       │   ├── nrf52_to_nrf52840.h
│   │   │   │   │       │   ├── nrf52_xxaa.ld
│   │   │   │   │       │   ├── nrf_common.ld
│   │   │   │   │       │   ├── nrf_peripherals.h
│   │   │   │   │       │   ├── ses_nRF_Startup.s
│   │   │   │   │       │   ├── ses_nrf51_Vectors.s
│   │   │   │   │       │   ├── ses_nrf52810_Vectors.s
│   │   │   │   │       │   ├── ses_nrf52840_Vectors.s
│   │   │   │   │       │   ├── ses_nrf52_Vectors.s
│   │   │   │   │       │   ├── startup_config.h
│   │   │   │   │       │   ├── system_nrf51.c
│   │   │   │   │       │   ├── system_nrf51.h
│   │   │   │   │       │   ├── system_nrf52.c
│   │   │   │   │       │   ├── system_nrf52.h
│   │   │   │   │       │   ├── system_nrf52810.c
│   │   │   │   │       │   ├── system_nrf52810.h
│   │   │   │   │       │   ├── system_nrf52840.c
│   │   │   │   │       │   └── system_nrf52840.h
│   │   │   │   │       ├── nrfx.h
│   │   │   │   │       ├── soc
│   │   │   │   │       │   ├── nrfx_coredep.h
│   │   │   │   │       │   ├── nrfx_irqs.h
│   │   │   │   │       │   ├── nrfx_irqs_nrf51.h
│   │   │   │   │       │   ├── nrfx_irqs_nrf52810.h
│   │   │   │   │       │   ├── nrfx_irqs_nrf52832.h
│   │   │   │   │       │   └── nrfx_irqs_nrf52840.h
│   │   │   │   │       └── templates
│   │   │   │   │           ├── nRF51
│   │   │   │   │           │   └── nrfx_config.h
│   │   │   │   │           ├── nRF52810
│   │   │   │   │           │   └── nrfx_config.h
│   │   │   │   │           ├── nRF52832
│   │   │   │   │           │   └── nrfx_config.h
│   │   │   │   │           ├── nRF52840
│   │   │   │   │           │   └── nrfx_config.h
│   │   │   │   │           ├── nrfx_glue.h
│   │   │   │   │           └── nrfx_log.h
│   │   │   │   └── sdk_config.h
│   │   │   ├── Program
│   │   │   │   ├── algorithms
│   │   │   │   │   ├── mathUnit.c
│   │   │   │   │   └── mathUnit.h
│   │   │   │   ├── boardConfig.h
│   │   │   │   ├── drivers
│   │   │   │   │   ├── nrf5x_clock.c
│   │   │   │   │   ├── nrf5x_clock.h
│   │   │   │   │   ├── nrf5x_delay.c
│   │   │   │   │   ├── nrf5x_delay.h
│   │   │   │   │   └── nrf5x_system.h
│   │   │   │   ├── main.c
│   │   │   │   ├── nrf5x_bsp.c
│   │   │   │   ├── nrf5x_bsp.h
│   │   │   │   ├── nrf5x_conf.h
│   │   │   │   └── nrf5x_it.c
│   │   │   └── Project
│   │   │       ├── ClearFile.bat
│   │   │       ├── ProjNRF5x.uvguix.Hom
│   │   │       ├── ProjNRF5x.uvoptx
│   │   │       ├── ProjNRF5x.uvprojx
│   │   │       └── RTE
│   │   │           ├── _NRF52-DK
│   │   │           │   └── RTE_Components.h
│   │   │           ├── _NRF52810
│   │   │           │   └── RTE_Components.h
│   │   │           └── _NRF52832
│   │   │               └── RTE_Components.h
│   │   ├── NRF_Peripheral_GPIOTE
│   │   │   ├── Libraries
│   │   │   │   ├── components
│   │   │   │   │   ├── drivers_nrf
│   │   │   │   │   │   └── nrf_error.h
│   │   │   │   │   └── libraries
│   │   │   │   │       ├── app_error.h
│   │   │   │   │       ├── app_error_weak.h
│   │   │   │   │       ├── app_util.h
│   │   │   │   │       ├── app_util_platform.h
│   │   │   │   │       ├── nordic_common.h
│   │   │   │   │       ├── nrf_assert.h
│   │   │   │   │       ├── nrf_delay.h
│   │   │   │   │       ├── sdk_errors.h
│   │   │   │   │       └── sdk_resources.h
│   │   │   │   ├── documentation
│   │   │   │   │   ├── NordicS.jpg
│   │   │   │   │   ├── index.html
│   │   │   │   │   ├── licenses.html
│   │   │   │   │   ├── licenses.txt
│   │   │   │   │   ├── nRF5_Dynastream_license.txt
│   │   │   │   │   ├── nRF5_Nordic_license.txt
│   │   │   │   │   ├── nRF5x_series_logo.png
│   │   │   │   │   └── release_notes.txt
│   │   │   │   ├── 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_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
│   │   │   │   │       │   │   ├── index.html
│   │   │   │   │       │   │   ├── layout.xml
│   │   │   │   │       │   │   └── nordic_small.png
│   │   │   │   │       │   ├── drv_supp_matrix.dox
│   │   │   │   │       │   ├── generate_html_doc.bat
│   │   │   │   │       │   ├── generate_html_doc.sh
│   │   │   │   │       │   ├── main_page.dox
│   │   │   │   │       │   ├── nrf51_series.dox
│   │   │   │   │       │   ├── nrf52810.dox
│   │   │   │   │       │   ├── nrf52832.dox
│   │   │   │   │       │   ├── nrf52840.dox
│   │   │   │   │       │   ├── nrfx.doxyfile
│   │   │   │   │       │   └── nrfx_api.dox
│   │   │   │   │       ├── drivers
│   │   │   │   │       │   ├── include
│   │   │   │   │       │   │   ├── nrf_bitmask.h
│   │   │   │   │       │   │   ├── nrfx_adc.h
│   │   │   │   │       │   │   ├── nrfx_clock.h
│   │   │   │   │       │   │   ├── nrfx_comp.h
│   │   │   │   │       │   │   ├── nrfx_gpiote.h
│   │   │   │   │       │   │   ├── nrfx_i2s.h
│   │   │   │   │       │   │   ├── nrfx_lpcomp.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_spi.h
│   │   │   │   │       │   │   ├── nrfx_spim.h
│   │   │   │   │       │   │   ├── nrfx_spis.h
│   │   │   │   │       │   │   ├── nrfx_swi.h
│   │   │   │   │       │   │   ├── nrfx_systick.h
│   │   │   │   │       │   │   ├── nrfx_timer.h
│   │   │   │   │       │   │   ├── nrfx_twi.h
│   │   │   │   │       │   │   ├── nrfx_twim.h
│   │   │   │   │       │   │   ├── nrfx_twis.h
│   │   │   │   │       │   │   ├── nrfx_uart.h
│   │   │   │   │       │   │   ├── nrfx_uarte.h
│   │   │   │   │       │   │   └── nrfx_wdt.h
│   │   │   │   │       │   ├── nrfx_common.h
│   │   │   │   │       │   ├── nrfx_errors.h
│   │   │   │   │       │   └── src
│   │   │   │   │       │       ├── nrfx_adc.c
│   │   │   │   │       │       ├── nrfx_clock.c
│   │   │   │   │       │       ├── nrfx_comp.c
│   │   │   │   │       │       ├── nrfx_gpiote.c
│   │   │   │   │       │       ├── nrfx_i2s.c
│   │   │   │   │       │       ├── nrfx_lpcomp.c
│   │   │   │   │       │       ├── nrfx_pdm.c
│   │   │   │   │       │       ├── nrfx_power.c
│   │   │   │   │       │       ├── nrfx_power_clock.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_timer.c
│   │   │   │   │       │       ├── nrfx_twi.c
│   │   │   │   │       │       ├── nrfx_twim.c
│   │   │   │   │       │       ├── nrfx_twis.c
│   │   │   │   │       │       ├── nrfx_uart.c
│   │   │   │   │       │       ├── nrfx_uarte.c
│   │   │   │   │       │       ├── nrfx_wdt.c
│   │   │   │   │       │       └── prs
│   │   │   │   │       │           ├── nrfx_prs.c
│   │   │   │   │       │           └── nrfx_prs.h
│   │   │   │   │       ├── hal
│   │   │   │   │       │   ├── 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_power.h
│   │   │   │   │       │   ├── nrf_ppi.h
│   │   │   │   │       │   ├── nrf_pwm.h
│   │   │   │   │       │   ├── nrf_qdec.h
│   │   │   │   │       │   ├── nrf_qspi.h
│   │   │   │   │       │   ├── nrf_rng.h
│   │   │   │   │       │   ├── nrf_rtc.h
│   │   │   │   │       │   ├── 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
│   │   │   │   │       ├── mdk
│   │   │   │   │       │   ├── arm_startup_nrf51.s
│   │   │   │   │       │   ├── arm_startup_nrf52.s
│   │   │   │   │       │   ├── arm_startup_nrf52810.s
│   │   │   │   │       │   ├── arm_startup_nrf52840.s
│   │   │   │   │       │   ├── compiler_abstraction.h
│   │   │   │   │       │   ├── gcc_startup_nrf51.S
│   │   │   │   │       │   ├── gcc_startup_nrf52.S
│   │   │   │   │       │   ├── gcc_startup_nrf52810.S
│   │   │   │   │       │   ├── gcc_startup_nrf52840.S
│   │   │   │   │       │   ├── iar_startup_nrf51.s
│   │   │   │   │       │   ├── iar_startup_nrf52.s
│   │   │   │   │       │   ├── iar_startup_nrf52810.s
│   │   │   │   │       │   ├── iar_startup_nrf52840.s
│   │   │   │   │       │   ├── nRFxxx.h
│   │   │   │   │       │   ├── nrf.h
│   │   │   │   │       │   ├── nrf51.h
│   │   │   │   │       │   ├── nrf51.svd
│   │   │   │   │       │   ├── nrf51422_peripherals.h
│   │   │   │   │       │   ├── nrf51801_peripherals.h
│   │   │   │   │       │   ├── nrf51801_xxab.ld
│   │   │   │   │       │   ├── nrf51802_peripherals.h
│   │   │   │   │       │   ├── nrf51822_peripherals.h
│   │   │   │   │       │   ├── nrf51824_peripherals.h
│   │   │   │   │       │   ├── nrf51_bitfields.h
│   │   │   │   │       │   ├── nrf51_common.ld
│   │   │   │   │       │   ├── nrf51_deprecated.h
│   │   │   │   │       │   ├── nrf51_peripherals.h
│   │   │   │   │       │   ├── nrf51_to_nrf52.h
│   │   │   │   │       │   ├── nrf51_to_nrf52810.h
│   │   │   │   │       │   ├── nrf51_to_nrf52840.h
│   │   │   │   │       │   ├── nrf51_xxaa.ld
│   │   │   │   │       │   ├── nrf51_xxab.ld
│   │   │   │   │       │   ├── nrf51_xxac.ld
│   │   │   │   │       │   ├── nrf52.h
│   │   │   │   │       │   ├── nrf52.svd
│   │   │   │   │       │   ├── nrf52810.h
│   │   │   │   │       │   ├── nrf52810.svd
│   │   │   │   │       │   ├── nrf52810_bitfields.h
│   │   │   │   │       │   ├── nrf52810_peripherals.h
│   │   │   │   │       │   ├── nrf52810_xxaa.ld
│   │   │   │   │       │   ├── nrf52832_peripherals.h
│   │   │   │   │       │   ├── nrf52832_xxab.ld
│   │   │   │   │       │   ├── nrf52840.h
│   │   │   │   │       │   ├── nrf52840.svd
│   │   │   │   │       │   ├── nrf52840_bitfields.h
│   │   │   │   │       │   ├── nrf52840_peripherals.h
│   │   │   │   │       │   ├── nrf52840_xxaa.ld
│   │   │   │   │       │   ├── nrf52_bitfields.h
│   │   │   │   │       │   ├── nrf52_common.ld
│   │   │   │   │       │   ├── nrf52_name_change.h
│   │   │   │   │       │   ├── nrf52_to_nrf52810.h
│   │   │   │   │       │   ├── nrf52_to_nrf52840.h
│   │   │   │   │       │   ├── nrf52_xxaa.ld
│   │   │   │   │       │   ├── nrf_common.ld
│   │   │   │   │       │   ├── nrf_peripherals.h
│   │   │   │   │       │   ├── ses_nRF_Startup.s
│   │   │   │   │       │   ├── ses_nrf51_Vectors.s
│   │   │   │   │       │   ├── ses_nrf52810_Vectors.s
│   │   │   │   │       │   ├── ses_nrf52840_Vectors.s
│   │   │   │   │       │   ├── ses_nrf52_Vectors.s
│   │   │   │   │       │   ├── startup_config.h
│   │   │   │   │       │   ├── system_nrf51.c
│   │   │   │   │       │   ├── system_nrf51.h
│   │   │   │   │       │   ├── system_nrf52.c
│   │   │   │   │       │   ├── system_nrf52.h
│   │   │   │   │       │   ├── system_nrf52810.c
│   │   │   │   │       │   ├── system_nrf52810.h
│   │   │   │   │       │   ├── system_nrf52840.c
│   │   │   │   │       │   └── system_nrf52840.h
│   │   │   │   │       ├── nrfx.h
│   │   │   │   │       ├── soc
│   │   │   │   │       │   ├── nrfx_coredep.h
│   │   │   │   │       │   ├── nrfx_irqs.h
│   │   │   │   │       │   ├── nrfx_irqs_nrf51.h
│   │   │   │   │       │   ├── nrfx_irqs_nrf52810.h
│   │   │   │   │       │   ├── nrfx_irqs_nrf52832.h
│   │   │   │   │       │   └── nrfx_irqs_nrf52840.h
│   │   │   │   │       └── templates
│   │   │   │   │           ├── nRF51
│   │   │   │   │           │   └── nrfx_config.h
│   │   │   │   │           ├── nRF52810
│   │   │   │   │           │   └── nrfx_config.h
│   │   │   │   │           ├── nRF52832
│   │   │   │   │           │   └── nrfx_config.h
│   │   │   │   │           ├── nRF52840
│   │   │   │   │           │   └── nrfx_config.h
│   │   │   │   │           ├── nrfx_glue.h
│   │   │   │   │           └── nrfx_log.h
│   │   │   │   └── sdk_config.h
│   │   │   ├── Program
│   │   │   │   ├── algorithms
│   │   │   │   │   ├── mathUnit.c
│   │   │   │   │   └── mathUnit.h
│   │   │   │   ├── boardConfig.h
│   │   │   │   ├── drivers
│   │   │   │   │   ├── nrf5x_clock.c
│   │   │   │   │   ├── nrf5x_clock.h
│   │   │   │   │   ├── nrf5x_delay.c
│   │   │   │   │   ├── nrf5x_delay.h
│   │   │   │   │   ├── nrf5x_gpiote.c
│   │   │   │   │   ├── nrf5x_gpiote.h
│   │   │   │   │   └── nrf5x_system.h
│   │   │   │   ├── main.c
│   │   │   │   ├── nrf5x_bsp.c
│   │   │   │   ├── nrf5x_bsp.h
│   │   │   │   ├── nrf5x_conf.h
│   │   │   │   └── nrf5x_it.c
│   │   │   └── Project
│   │   │       ├── ClearFile.bat
│   │   │       ├── ProjNRF5x.uvguix.Hom
│   │   │       ├── ProjNRF5x.uvoptx
│   │   │       ├── ProjNRF5x.uvprojx
│   │   │       └── RTE
│   │   │           ├── _NRF52-DK
│   │   │           │   └── RTE_Components.h
│   │   │           ├── _NRF52810
│   │   │           │   └── RTE_Components.h
│   │   │           └── _NRF52832
│   │   │               └── RTE_Components.h
│   │   ├── NRF_Peripheral_PPI
│   │   │   ├── Libraries
│   │   │   │   ├── components
│   │   │   │   │   ├── drivers_nrf
│   │   │   │   │   │   └── nrf_error.h
│   │   │   │   │   └── libraries
│   │   │   │   │       ├── app_error.h
│   │   │   │   │       ├── app_error_weak.h
│   │   │   │   │       ├── app_util.h
│   │   │   │   │       ├── app_util_platform.h
│   │   │   │   │       ├── nordic_common.h
│   │   │   │   │       ├── nrf_assert.h
│   │   │   │   │       ├── nrf_delay.h
│   │   │   │   │       ├── sdk_errors.h
│   │   │   │   │       └── sdk_resources.h
│   │   │   │   ├── documentation
│   │   │   │   │   ├── NordicS.jpg
│   │   │   │   │   ├── index.html
│   │   │   │   │   ├── licenses.html
│   │   │   │   │   ├── licenses.txt
│   │   │   │   │   ├── nRF5_Dynastream_license.txt
│   │   │   │   │   ├── nRF5_Nordic_license.txt
│   │   │   │   │   ├── nRF5x_series_logo.png
│   │   │   │   │   └── release_notes.txt
│   │   │   │   ├── 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_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
│   │   │   │   │       │   │   ├── index.html
│   │   │   │   │       │   │   ├── layout.xml
│   │   │   │   │       │   │   └── nordic_small.png
│   │   │   │   │       │   ├── drv_supp_matrix.dox
│   │   │   │   │       │   ├── generate_html_doc.bat
│   │   │   │   │       │   ├── generate_html_doc.sh
│   │   │   │   │       │   ├── main_page.dox
│   │   │   │   │       │   ├── nrf51_series.dox
│   │   │   │   │       │   ├── nrf52810.dox
│   │   │   │   │       │   ├── nrf52832.dox
│   │   │   │   │       │   ├── nrf52840.dox
│   │   │   │   │       │   ├── nrfx.doxyfile
│   │   │   │   │       │   └── nrfx_api.dox
│   │   │   │   │       ├── drivers
│   │   │   │   │       │   ├── include
│   │   │   │   │       │   │   ├── nrf_bitmask.h
│   │   │   │   │       │   │   ├── nrfx_adc.h
│   │   │   │   │       │   │   ├── nrfx_clock.h
│   │   │   │   │       │   │   ├── nrfx_comp.h
│   │   │   │   │       │   │   ├── nrfx_gpiote.h
│   │   │   │   │       │   │   ├── nrfx_i2s.h
│   │   │   │   │       │   │   ├── nrfx_lpcomp.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_spi.h
│   │   │   │   │       │   │   ├── nrfx_spim.h
│   │   │   │   │       │   │   ├── nrfx_spis.h
│   │   │   │   │       │   │   ├── nrfx_swi.h
│   │   │   │   │       │   │   ├── nrfx_systick.h
│   │   │   │   │       │   │   ├── nrfx_timer.h
│   │   │   │   │       │   │   ├── nrfx_twi.h
│   │   │   │   │       │   │   ├── nrfx_twim.h
│   │   │   │   │       │   │   ├── nrfx_twis.h
│   │   │   │   │       │   │   ├── nrfx_uart.h
│   │   │   │   │       │   │   ├── nrfx_uarte.h
│   │   │   │   │       │   │   └── nrfx_wdt.h
│   │   │   │   │       │   ├── nrfx_common.h
│   │   │   │   │       │   ├── nrfx_errors.h
│   │   │   │   │       │   └── src
│   │   │   │   │       │       ├── nrfx_adc.c
│   │   │   │   │       │       ├── nrfx_clock.c
│   │   │   │   │       │       ├── nrfx_comp.c
│   │   │   │   │       │       ├── nrfx_gpiote.c
│   │   │   │   │       │       ├── nrfx_i2s.c
│   │   │   │   │       │       ├── nrfx_lpcomp.c
│   │   │   │   │       │       ├── nrfx_pdm.c
│   │   │   │   │       │       ├── nrfx_power.c
│   │   │   │   │       │       ├── nrfx_power_clock.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_timer.c
│   │   │   │   │       │       ├── nrfx_twi.c
│   │   │   │   │       │       ├── nrfx_twim.c
│   │   │   │   │       │       ├── nrfx_twis.c
│   │   │   │   │       │       ├── nrfx_uart.c
│   │   │   │   │       │       ├── nrfx_uarte.c
│   │   │   │   │       │       ├── nrfx_wdt.c
│   │   │   │   │       │       └── prs
│   │   │   │   │       │           ├── nrfx_prs.c
│   │   │   │   │       │           └── nrfx_prs.h
│   │   │   │   │       ├── hal
│   │   │   │   │       │   ├── 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_power.h
│   │   │   │   │       │   ├── nrf_ppi.h
│   │   │   │   │       │   ├── nrf_pwm.h
│   │   │   │   │       │   ├── nrf_qdec.h
│   │   │   │   │       │   ├── nrf_qspi.h
│   │   │   │   │       │   ├── nrf_rng.h
│   │   │   │   │       │   ├── nrf_rtc.h
│   │   │   │   │       │   ├── 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
│   │   │   │   │       ├── mdk
│   │   │   │   │       │   ├── arm_startup_nrf51.s
│   │   │   │   │       │   ├── arm_startup_nrf52.s
│   │   │   │   │       │   ├── arm_startup_nrf52810.s
│   │   │   │   │       │   ├── arm_startup_nrf52840.s
│   │   │   │   │       │   ├── compiler_abstraction.h
│   │   │   │   │       │   ├── gcc_startup_nrf51.S
│   │   │   │   │       │   ├── gcc_startup_nrf52.S
│   │   │   │   │       │   ├── gcc_startup_nrf52810.S
│   │   │   │   │       │   ├── gcc_startup_nrf52840.S
│   │   │   │   │       │   ├── iar_startup_nrf51.s
│   │   │   │   │       │   ├── iar_startup_nrf52.s
│   │   │   │   │       │   ├── iar_startup_nrf52810.s
│   │   │   │   │       │   ├── iar_startup_nrf52840.s
│   │   │   │   │       │   ├── nRFxxx.h
│   │   │   │   │       │   ├── nrf.h
│   │   │   │   │       │   ├── nrf51.h
│   │   │   │   │       │   ├── nrf51.svd
│   │   │   │   │       │   ├── nrf51422_peripherals.h
│   │   │   │   │       │   ├── nrf51801_peripherals.h
│   │   │   │   │       │   ├── nrf51801_xxab.ld
│   │   │   │   │       │   ├── nrf51802_peripherals.h
│   │   │   │   │       │   ├── nrf51822_peripherals.h
│   │   │   │   │       │   ├── nrf51824_peripherals.h
│   │   │   │   │       │   ├── nrf51_bitfields.h
│   │   │   │   │       │   ├── nrf51_common.ld
│   │   │   │   │       │   ├── nrf51_deprecated.h
│   │   │   │   │       │   ├── nrf51_peripherals.h
│   │   │   │   │       │   ├── nrf51_to_nrf52.h
│   │   │   │   │       │   ├── nrf51_to_nrf52810.h
│   │   │   │   │       │   ├── nrf51_to_nrf52840.h
│   │   │   │   │       │   ├── nrf51_xxaa.ld
│   │   │   │   │       │   ├── nrf51_xxab.ld
│   │   │   │   │       │   ├── nrf51_xxac.ld
│   │   │   │   │       │   ├── nrf52.h
│   │   │   │   │       │   ├── nrf52.svd
│   │   │   │   │       │   ├── nrf52810.h
│   │   │   │   │       │   ├── nrf52810.svd
│   │   │   │   │       │   ├── nrf52810_bitfields.h
│   │   │   │   │       │   ├── nrf52810_peripherals.h
│   │   │   │   │       │   ├── nrf52810_xxaa.ld
│   │   │   │   │       │   ├── nrf52832_peripherals.h
│   │   │   │   │       │   ├── nrf52832_xxab.ld
│   │   │   │   │       │   ├── nrf52840.h
│   │   │   │   │       │   ├── nrf52840.svd
│   │   │   │   │       │   ├── nrf52840_bitfields.h
│   │   │   │   │       │   ├── nrf52840_peripherals.h
│   │   │   │   │       │   ├── nrf52840_xxaa.ld
│   │   │   │   │       │   ├── nrf52_bitfields.h
│   │   │   │   │       │   ├── nrf52_common.ld
│   │   │   │   │       │   ├── nrf52_name_change.h
│   │   │   │   │       │   ├── nrf52_to_nrf52810.h
│   │   │   │   │       │   ├── nrf52_to_nrf52840.h
│   │   │   │   │       │   ├── nrf52_xxaa.ld
│   │   │   │   │       │   ├── nrf_common.ld
│   │   │   │   │       │   ├── nrf_peripherals.h
│   │   │   │   │       │   ├── ses_nRF_Startup.s
│   │   │   │   │       │   ├── ses_nrf51_Vectors.s
│   │   │   │   │       │   ├── ses_nrf52810_Vectors.s
│   │   │   │   │       │   ├── ses_nrf52840_Vectors.s
│   │   │   │   │       │   ├── ses_nrf52_Vectors.s
│   │   │   │   │       │   ├── startup_config.h
│   │   │   │   │       │   ├── system_nrf51.c
│   │   │   │   │       │   ├── system_nrf51.h
│   │   │   │   │       │   ├── system_nrf52.c
│   │   │   │   │       │   ├── system_nrf52.h
│   │   │   │   │       │   ├── system_nrf52810.c
│   │   │   │   │       │   ├── system_nrf52810.h
│   │   │   │   │       │   ├── system_nrf52840.c
│   │   │   │   │       │   └── system_nrf52840.h
│   │   │   │   │       ├── nrfx.h
│   │   │   │   │       ├── soc
│   │   │   │   │       │   ├── nrfx_coredep.h
│   │   │   │   │       │   ├── nrfx_irqs.h
│   │   │   │   │       │   ├── nrfx_irqs_nrf51.h
│   │   │   │   │       │   ├── nrfx_irqs_nrf52810.h
│   │   │   │   │       │   ├── nrfx_irqs_nrf52832.h
│   │   │   │   │       │   └── nrfx_irqs_nrf52840.h
│   │   │   │   │       └── templates
│   │   │   │   │           ├── nRF51
│   │   │   │   │           │   └── nrfx_config.h
│   │   │   │   │           ├── nRF52810
│   │   │   │   │           │   └── nrfx_config.h
│   │   │   │   │           ├── nRF52832
│   │   │   │   │           │   └── nrfx_config.h
│   │   │   │   │           ├── nRF52840
│   │   │   │   │           │   └── nrfx_config.h
│   │   │   │   │           ├── nrfx_glue.h
│   │   │   │   │           └── nrfx_log.h
│   │   │   │   └── sdk_config.h
│   │   │   ├── Program
│   │   │   │   ├── algorithms
│   │   │   │   │   ├── mathUnit.c
│   │   │   │   │   └── mathUnit.h
│   │   │   │   ├── boardConfig.h
│   │   │   │   ├── drivers
│   │   │   │   │   ├── nrf5x_clock.c
│   │   │   │   │   ├── nrf5x_clock.h
│   │   │   │   │   ├── nrf5x_delay.c
│   │   │   │   │   ├── nrf5x_delay.h
│   │   │   │   │   ├── nrf5x_ppi.c
│   │   │   │   │   ├── nrf5x_ppi.h
│   │   │   │   │   ├── nrf5x_system.h
│   │   │   │   │   ├── nrf5x_timer.c
│   │   │   │   │   └── nrf5x_timer.h
│   │   │   │   ├── main.c
│   │   │   │   ├── nrf5x_bsp.c
│   │   │   │   ├── nrf5x_bsp.h
│   │   │   │   ├── nrf5x_conf.h
│   │   │   │   └── nrf5x_it.c
│   │   │   └── Project
│   │   │       ├── ClearFile.bat
│   │   │       ├── ProjNRF5x.uvguix.Hom
│   │   │       ├── ProjNRF5x.uvoptx
│   │   │       ├── ProjNRF5x.uvprojx
│   │   │       └── RTE
│   │   │           ├── _NRF52-DK
│   │   │           │   └── RTE_Components.h
│   │   │           ├── _NRF52810
│   │   │           │   └── RTE_Components.h
│   │   │           └── _NRF52832
│   │   │               └── RTE_Components.h
│   │   ├── NRF_Peripheral_RADIO
│   │   │   ├── Libraries
│   │   │   │   ├── components
│   │   │   │   │   ├── drivers_nrf
│   │   │   │   │   │   └── nrf_error.h
│   │   │   │   │   └── libraries
│   │   │   │   │       ├── app_error.h
│   │   │   │   │       ├── app_error_weak.h
│   │   │   │   │       ├── app_util.h
│   │   │   │   │       ├── app_util_platform.h
│   │   │   │   │       ├── nordic_common.h
│   │   │   │   │       ├── nrf_assert.h
│   │   │   │   │       ├── nrf_delay.h
│   │   │   │   │       ├── sdk_errors.h
│   │   │   │   │       └── sdk_resources.h
│   │   │   │   ├── documentation
│   │   │   │   │   ├── NordicS.jpg
│   │   │   │   │   ├── index.html
│   │   │   │   │   ├── licenses.html
│   │   │   │   │   ├── licenses.txt
│   │   │   │   │   ├── nRF5_Dynastream_license.txt
│   │   │   │   │   ├── nRF5_Nordic_license.txt
│   │   │   │   │   ├── nRF5x_series_logo.png
│   │   │   │   │   └── release_notes.txt
│   │   │   │   ├── 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_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
│   │   │   │   │       │   │   ├── index.html
│   │   │   │   │       │   │   ├── layout.xml
│   │   │   │   │       │   │   └── nordic_small.png
│   │   │   │   │       │   ├── drv_supp_matrix.dox
│   │   │   │   │       │   ├── generate_html_doc.bat
│   │   │   │   │       │   ├── generate_html_doc.sh
│   │   │   │   │       │   ├── main_page.dox
│   │   │   │   │       │   ├── nrf51_series.dox
│   │   │   │   │       │   ├── nrf52810.dox
│   │   │   │   │       │   ├── nrf52832.dox
│   │   │   │   │       │   ├── nrf52840.dox
│   │   │   │   │       │   ├── nrfx.doxyfile
│   │   │   │   │       │   └── nrfx_api.dox
│   │   │   │   │       ├── drivers
│   │   │   │   │       │   ├── include
│   │   │   │   │       │   │   ├── nrf_bitmask.h
│   │   │   │   │       │   │   ├── nrfx_adc.h
│   │   │   │   │       │   │   ├── nrfx_clock.h
│   │   │   │   │       │   │   ├── nrfx_comp.h
│   │   │   │   │       │   │   ├── nrfx_gpiote.h
│   │   │   │   │       │   │   ├── nrfx_i2s.h
│   │   │   │   │       │   │   ├── nrfx_lpcomp.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_spi.h
│   │   │   │   │       │   │   ├── nrfx_spim.h
│   │   │   │   │       │   │   ├── nrfx_spis.h
│   │   │   │   │       │   │   ├── nrfx_swi.h
│   │   │   │   │       │   │   ├── nrfx_systick.h
│   │   │   │   │       │   │   ├── nrfx_timer.h
│   │   │   │   │       │   │   ├── nrfx_twi.h
│   │   │   │   │       │   │   ├── nrfx_twim.h
│   │   │   │   │       │   │   ├── nrfx_twis.h
│   │   │   │   │       │   │   ├── nrfx_uart.h
│   │   │   │   │       │   │   ├── nrfx_uarte.h
│   │   │   │   │       │   │   └── nrfx_wdt.h
│   │   │   │   │       │   ├── nrfx_common.h
│   │   │   │   │       │   ├── nrfx_errors.h
│   │   │   │   │       │   └── src
│   │   │   │   │       │       ├── nrfx_adc.c
│   │   │   │   │       │       ├── nrfx_clock.c
│   │   │   │   │       │       ├── nrfx_comp.c
│   │   │   │   │       │       ├── nrfx_gpiote.c
│   │   │   │   │       │       ├── nrfx_i2s.c
│   │   │   │   │       │       ├── nrfx_lpcomp.c
│   │   │   │   │       │       ├── nrfx_pdm.c
│   │   │   │   │       │       ├── nrfx_power.c
│   │   │   │   │       │       ├── nrfx_power_clock.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_timer.c
│   │   │   │   │       │       ├── nrfx_twi.c
│   │   │   │   │       │       ├── nrfx_twim.c
│   │   │   │   │       │       ├── nrfx_twis.c
│   │   │   │   │       │       ├── nrfx_uart.c
│   │   │   │   │       │       ├── nrfx_uarte.c
│   │   │   │   │       │       ├── nrfx_wdt.c
│   │   │   │   │       │       └── prs
│   │   │   │   │       │           ├── nrfx_prs.c
│   │   │   │   │       │           └── nrfx_prs.h
│   │   │   │   │       ├── hal
│   │   │   │   │       │   ├── 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_power.h
│   │   │   │   │       │   ├── nrf_ppi.h
│   │   │   │   │       │   ├── nrf_pwm.h
│   │   │   │   │       │   ├── nrf_qdec.h
│   │   │   │   │       │   ├── nrf_qspi.h
│   │   │   │   │       │   ├── nrf_rng.h
│   │   │   │   │       │   ├── nrf_rtc.h
│   │   │   │   │       │   ├── 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
│   │   │   │   │       ├── mdk
│   │   │   │   │       │   ├── arm_startup_nrf51.s
│   │   │   │   │       │   ├── arm_startup_nrf52.s
│   │   │   │   │       │   ├── arm_startup_nrf52810.s
│   │   │   │   │       │   ├── arm_startup_nrf52840.s
│   │   │   │   │       │   ├── compiler_abstraction.h
│   │   │   │   │       │   ├── gcc_startup_nrf51.S
│   │   │   │   │       │   ├── gcc_startup_nrf52.S
│   │   │   │   │       │   ├── gcc_startup_nrf52810.S
│   │   │   │   │       │   ├── gcc_startup_nrf52840.S
│   │   │   │   │       │   ├── iar_startup_nrf51.s
│   │   │   │   │       │   ├── iar_startup_nrf52.s
│   │   │   │   │       │   ├── iar_startup_nrf52810.s
│   │   │   │   │       │   ├── iar_startup_nrf52840.s
│   │   │   │   │       │   ├── nRFxxx.h
│   │   │   │   │       │   ├── nrf.h
│   │   │   │   │       │   ├── nrf51.h
│   │   │   │   │       │   ├── nrf51.svd
│   │   │   │   │       │   ├── nrf51422_peripherals.h
│   │   │   │   │       │   ├── nrf51801_peripherals.h
│   │   │   │   │       │   ├── nrf51801_xxab.ld
│   │   │   │   │       │   ├── nrf51802_peripherals.h
│   │   │   │   │       │   ├── nrf51822_peripherals.h
│   │   │   │   │       │   ├── nrf51824_peripherals.h
│   │   │   │   │       │   ├── nrf51_bitfields.h
│   │   │   │   │       │   ├── nrf51_common.ld
│   │   │   │   │       │   ├── nrf51_deprecated.h
│   │   │   │   │       │   ├── nrf51_peripherals.h
│   │   │   │   │       │   ├── nrf51_to_nrf52.h
│   │   │   │   │       │   ├── nrf51_to_nrf52810.h
│   │   │   │   │       │   ├── nrf51_to_nrf52840.h
│   │   │   │   │       │   ├── nrf51_xxaa.ld
│   │   │   │   │       │   ├── nrf51_xxab.ld
│   │   │   │   │       │   ├── nrf51_xxac.ld
│   │   │   │   │       │   ├── nrf52.h
│   │   │   │   │       │   ├── nrf52.svd
│   │   │   │   │       │   ├── nrf52810.h
│   │   │   │   │       │   ├── nrf52810.svd
│   │   │   │   │       │   ├── nrf52810_bitfields.h
│   │   │   │   │       │   ├── nrf52810_peripherals.h
│   │   │   │   │       │   ├── nrf52810_xxaa.ld
│   │   │   │   │       │   ├── nrf52832_peripherals.h
│   │   │   │   │       │   ├── nrf52832_xxab.ld
│   │   │   │   │       │   ├── nrf52840.h
│   │   │   │   │       │   ├── nrf52840.svd
│   │   │   │   │       │   ├── nrf52840_bitfields.h
│   │   │   │   │       │   ├── nrf52840_peripherals.h
│   │   │   │   │       │   ├── nrf52840_xxaa.ld
│   │   │   │   │       │   ├── nrf52_bitfields.h
│   │   │   │   │       │   ├── nrf52_common.ld
│   │   │   │   │       │   ├── nrf52_name_change.h
│   │   │   │   │       │   ├── nrf52_to_nrf52810.h
│   │   │   │   │       │   ├── nrf52_to_nrf52840.h
│   │   │   │   │       │   ├── nrf52_xxaa.ld
│   │   │   │   │       │   ├── nrf_common.ld
│   │   │   │   │       │   ├── nrf_peripherals.h
│   │   │   │   │       │   ├── ses_nRF_Startup.s
│   │   │   │   │       │   ├── ses_nrf51_Vectors.s
│   │   │   │   │       │   ├── ses_nrf52810_Vectors.s
│   │   │   │   │       │   ├── ses_nrf52840_Vectors.s
│   │   │   │   │       │   ├── ses_nrf52_Vectors.s
│   │   │   │   │       │   ├── startup_config.h
│   │   │   │   │       │   ├── system_nrf51.c
│   │   │   │   │       │   ├── system_nrf51.h
│   │   │   │   │       │   ├── system_nrf52.c
│   │   │   │   │       │   ├── system_nrf52.h
│   │   │   │   │       │   ├── system_nrf52810.c
│   │   │   │   │       │   ├── system_nrf52810.h
│   │   │   │   │       │   ├── system_nrf52840.c
│   │   │   │   │       │   └── system_nrf52840.h
│   │   │   │   │       ├── nrfx.h
│   │   │   │   │       ├── soc
│   │   │   │   │       │   ├── nrfx_coredep.h
│   │   │   │   │       │   ├── nrfx_irqs.h
│   │   │   │   │       │   ├── nrfx_irqs_nrf51.h
│   │   │   │   │       │   ├── nrfx_irqs_nrf52810.h
│   │   │   │   │       │   ├── nrfx_irqs_nrf52832.h
│   │   │   │   │       │   └── nrfx_irqs_nrf52840.h
│   │   │   │   │       └── templates
│   │   │   │   │           ├── nRF51
│   │   │   │   │           │   └── nrfx_config.h
│   │   │   │   │           ├── nRF52810
│   │   │   │   │           │   └── nrfx_config.h
│   │   │   │   │           ├── nRF52832
│   │   │   │   │           │   └── nrfx_config.h
│   │   │   │   │           ├── nRF52840
│   │   │   │   │           │   └── nrfx_config.h
│   │   │   │   │           ├── nrfx_glue.h
│   │   │   │   │           └── nrfx_log.h
│   │   │   │   └── sdk_config.h
│   │   │   ├── Program
│   │   │   │   ├── algorithms
│   │   │   │   │   ├── mathUnit.c
│   │   │   │   │   └── mathUnit.h
│   │   │   │   ├── boardConfig.h
│   │   │   │   ├── drivers
│   │   │   │   │   ├── nrf5x_clock.c
│   │   │   │   │   ├── nrf5x_clock.h
│   │   │   │   │   ├── nrf5x_delay.c
│   │   │   │   │   ├── nrf5x_delay.h
│   │   │   │   │   ├── nrf5x_radio.c
│   │   │   │   │   ├── nrf5x_radio.h
│   │   │   │   │   ├── nrf5x_system.h
│   │   │   │   │   ├── nrf5x_timer.c
│   │   │   │   │   ├── nrf5x_timer.h
│   │   │   │   │   ├── nrf5x_uarte.c
│   │   │   │   │   └── nrf5x_uarte.h
│   │   │   │   ├── main.c
│   │   │   │   ├── modules
│   │   │   │   │   ├── kSerial.c
│   │   │   │   │   ├── kSerial.h
│   │   │   │   │   ├── serial.c
│   │   │   │   │   └── serial.h
│   │   │   │   ├── nrf5x_bsp.c
│   │   │   │   ├── nrf5x_bsp.h
│   │   │   │   ├── nrf5x_conf.h
│   │   │   │   └── nrf5x_it.c
│   │   │   └── Project
│   │   │       ├── ClearFile.bat
│   │   │       ├── ProjNRF5x.uvguix.Hom
│   │   │       ├── ProjNRF5x.uvoptx
│   │   │       ├── ProjNRF5x.uvprojx
│   │   │       └── RTE
│   │   │           ├── _NRF52-DK
│   │   │           │   └── RTE_Components.h
│   │   │           ├── _NRF52810
│   │   │           │   └── RTE_Components.h
│   │   │           └── _NRF52832
│   │   │               └── RTE_Components.h
│   │   ├── NRF_Peripheral_RNG
│   │   │   ├── Libraries
│   │   │   │   ├── components
│   │   │   │   │   ├── drivers_nrf
│   │   │   │   │   │   └── nrf_error.h
│   │   │   │   │   └── libraries
│   │   │   │   │       ├── app_error.h
│   │   │   │   │       ├── app_error_weak.h
│   │   │   │   │       ├── app_util.h
│   │   │   │   │       ├── app_util_platform.h
│   │   │   │   │       ├── nordic_common.h
│   │   │   │   │       ├── nrf_assert.h
│   │   │   │   │       ├── nrf_delay.h
│   │   │   │   │       ├── sdk_errors.h
│   │   │   │   │       └── sdk_resources.h
│   │   │   │   ├── documentation
│   │   │   │   │   ├── NordicS.jpg
│   │   │   │   │   ├── index.html
│   │   │   │   │   ├── licenses.html
│   │   │   │   │   ├── licenses.txt
│   │   │   │   │   ├── nRF5_Dynastream_license.txt
│   │   │   │   │   ├── nRF5_Nordic_license.txt
│   │   │   │   │   ├── nRF5x_series_logo.png
│   │   │   │   │   └── release_notes.txt
│   │   │   │   ├── 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_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
│   │   │   │   │       │   │   ├── index.html
│   │   │   │   │       │   │   ├── layout.xml
│   │   │   │   │       │   │   └── nordic_small.png
│   │   │   │   │       │   ├── drv_supp_matrix.dox
│   │   │   │   │       │   ├── generate_html_doc.bat
│   │   │   │   │       │   ├── generate_html_doc.sh
│   │   │   │   │       │   ├── main_page.dox
│   │   │   │   │       │   ├── nrf51_series.dox
│   │   │   │   │       │   ├── nrf52810.dox
│   │   │   │   │       │   ├── nrf52832.dox
│   │   │   │   │       │   ├── nrf52840.dox
│   │   │   │   │       │   ├── nrfx.doxyfile
│   │   │   │   │       │   └── nrfx_api.dox
│   │   │   │   │       ├── drivers
│   │   │   │   │       │   ├── include
│   │   │   │   │       │   │   ├── nrf_bitmask.h
│   │   │   │   │       │   │   ├── nrfx_adc.h
│   │   │   │   │       │   │   ├── nrfx_clock.h
│   │   │   │   │       │   │   ├── nrfx_comp.h
│   │   │   │   │       │   │   ├── nrfx_gpiote.h
│   │   │   │   │       │   │   ├── nrfx_i2s.h
│   │   │   │   │       │   │   ├── nrfx_lpcomp.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_spi.h
│   │   │   │   │       │   │   ├── nrfx_spim.h
│   │   │   │   │       │   │   ├── nrfx_spis.h
│   │   │   │   │       │   │   ├── nrfx_swi.h
│   │   │   │   │       │   │   ├── nrfx_systick.h
│   │   │   │   │       │   │   ├── nrfx_timer.h
│   │   │   │   │       │   │   ├── nrfx_twi.h
│   │   │   │   │       │   │   ├── nrfx_twim.h
│   │   │   │   │       │   │   ├── nrfx_twis.h
│   │   │   │   │       │   │   ├── nrfx_uart.h
│   │   │   │   │       │   │   ├── nrfx_uarte.h
│   │   │   │   │       │   │   └── nrfx_wdt.h
│   │   │   │   │       │   ├── nrfx_common.h
│   │   │   │   │       │   ├── nrfx_errors.h
│   │   │   │   │       │   └── src
│   │   │   │   │       │       ├── nrfx_adc.c
│   │   │   │   │       │       ├── nrfx_clock.c
│   │   │   │   │       │       ├── nrfx_comp.c
│   │   │   │   │       │       ├── nrfx_gpiote.c
│   │   │   │   │       │       ├── nrfx_i2s.c
│   │   │   │   │       │       ├── nrfx_lpcomp.c
│   │   │   │   │       │       ├── nrfx_pdm.c
│   │   │   │   │       │       ├── nrfx_power.c
│   │   │   │   │       │       ├── nrfx_power_clock.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_timer.c
│   │   │   │   │       │       ├── nrfx_twi.c
│   │   │   │   │       │       ├── nrfx_twim.c
│   │   │   │   │       │       ├── nrfx_twis.c
│   │   │   │   │       │       ├── nrfx_uart.c
│   │   │   │   │       │       ├── nrfx_uarte.c
│   │   │   │   │       │       ├── nrfx_wdt.c
│   │   │   │   │       │       └── prs
│   │   │   │   │       │           ├── nrfx_prs.c
│   │   │   │   │       │           └── nrfx_prs.h
│   │   │   │   │       ├── hal
│   │   │   │   │       │   ├── 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_power.h
│   │   │   │   │       │   ├── nrf_ppi.h
│   │   │   │   │       │   ├── nrf_pwm.h
│   │   │   │   │       │   ├── nrf_qdec.h
│   │   │   │   │       │   ├── nrf_qspi.h
│   │   │   │   │       │   ├── nrf_rng.h
│   │   │   │   │       │   ├── nrf_rtc.h
│   │   │   │   │       │   ├── 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
│   │   │   │   │       ├── mdk
│   │   │   │   │       │   ├── arm_startup_nrf51.s
│   │   │   │   │       │   ├── arm_startup_nrf52.s
│   │   │   │   │       │   ├── arm_startup_nrf52810.s
│   │   │   │   │       │   ├── arm_startup_nrf52840.s
│   │   │   │   │       │   ├── compiler_abstraction.h
│   │   │   │   │       │   ├── gcc_startup_nrf51.S
│   │   │   │   │       │   ├── gcc_startup_nrf52.S
│   │   │   │   │       │   ├── gcc_startup_nrf52810.S
│   │   │   │   │       │   ├── gcc_startup_nrf52840.S
│   │   │   │   │       │   ├── iar_startup_nrf51.s
│   │   │   │   │       │   ├── iar_startup_nrf52.s
│   │   │   │   │       │   ├── iar_startup_nrf52810.s
│   │   │   │   │       │   ├── iar_startup_nrf52840.s
│   │   │   │   │       │   ├── nRFxxx.h
│   │   │   │   │       │   ├── nrf.h
│   │   │   │   │       │   ├── nrf51.h
│   │   │   │   │       │   ├── nrf51.svd
│   │   │   │   │       │   ├── nrf51422_peripherals.h
│   │   │   │   │       │   ├── nrf51801_peripherals.h
│   │   │   │   │       │   ├── nrf51801_xxab.ld
│   │   │   │   │       │   ├── nrf51802_peripherals.h
│   │   │   │   │       │   ├── nrf51822_peripherals.h
│   │   │   │   │       │   ├── nrf51824_peripherals.h
│   │   │   │   │       │   ├── nrf51_bitfields.h
│   │   │   │   │       │   ├── nrf51_common.ld
│   │   │   │   │       │   ├── nrf51_deprecated.h
│   │   │   │   │       │   ├── nrf51_peripherals.h
│   │   │   │   │       │   ├── nrf51_to_nrf52.h
│   │   │   │   │       │   ├── nrf51_to_nrf52810.h
│   │   │   │   │       │   ├── nrf51_to_nrf52840.h
│   │   │   │   │       │   ├── nrf51_xxaa.ld
│   │   │   │   │       │   ├── nrf51_xxab.ld
│   │   │   │   │       │   ├── nrf51_xxac.ld
│   │   │   │   │       │   ├── nrf52.h
│   │   │   │   │       │   ├── nrf52.svd
│   │   │   │   │       │   ├── nrf52810.h
│   │   │   │   │       │   ├── nrf52810.svd
│   │   │   │   │       │   ├── nrf52810_bitfields.h
│   │   │   │   │       │   ├── nrf52810_peripherals.h
│   │   │   │   │       │   ├── nrf52810_xxaa.ld
│   │   │   │   │       │   ├── nrf52832_peripherals.h
│   │   │   │   │       │   ├── nrf52832_xxab.ld
│   │   │   │   │       │   ├── nrf52840.h
│   │   │   │   │       │   ├── nrf52840.svd
│   │   │   │   │       │   ├── nrf52840_bitfields.h
│   │   │   │   │       │   ├── nrf52840_peripherals.h
│   │   │   │   │       │   ├── nrf52840_xxaa.ld
│   │   │   │   │       │   ├── nrf52_bitfields.h
│   │   │   │   │       │   ├── nrf52_common.ld
│   │   │   │   │       │   ├── nrf52_name_change.h
│   │   │   │   │       │   ├── nrf52_to_nrf52810.h
│   │   │   │   │       │   ├── nrf52_to_nrf52840.h
│   │   │   │   │       │   ├── nrf52_xxaa.ld
│   │   │   │   │       │   ├── nrf_common.ld
│   │   │   │   │       │   ├── nrf_peripherals.h
│   │   │   │   │       │   ├── ses_nRF_Startup.s
│   │   │   │   │       │   ├── ses_nrf51_Vectors.s
│   │   │   │   │       │   ├── ses_nrf52810_Vectors.s
│   │   │   │   │       │   ├── ses_nrf52840_Vectors.s
│   │   │   │   │       │   ├── ses_nrf52_Vectors.s
│   │   │   │   │       │   ├── startup_config.h
│   │   │   │   │       │   ├── system_nrf51.c
│   │   │   │   │       │   ├── system_nrf51.h
│   │   │   │   │       │   ├── system_nrf52.c
│   │   │   │   │       │   ├── system_nrf52.h
│   │   │   │   │       │   ├── system_nrf52810.c
│   │   │   │   │       │   ├── system_nrf52810.h
│   │   │   │   │       │   ├── system_nrf52840.c
│   │   │   │   │       │   └── system_nrf52840.h
│   │   │   │   │       ├── nrfx.h
│   │   │   │   │       ├── soc
│   │   │   │   │       │   ├── nrfx_coredep.h
│   │   │   │   │       │   ├── nrfx_irqs.h
│   │   │   │   │       │   ├── nrfx_irqs_nrf51.h
│   │   │   │   │       │   ├── nrfx_irqs_nrf52810.h
│   │   │   │   │       │   ├── nrfx_irqs_nrf52832.h
│   │   │   │   │       │   └── nrfx_irqs_nrf52840.h
│   │   │   │   │       └── templates
│   │   │   │   │           ├── nRF51
│   │   │   │   │           │   └── nrfx_config.h
│   │   │   │   │           ├── nRF52810
│   │   │   │   │           │   └── nrfx_config.h
│   │   │   │   │           ├── nRF52832
│   │   │   │   │           │   └── nrfx_config.h
│   │   │   │   │           ├── nRF52840
│   │   │   │   │           │   └── nrfx_config.h
│   │   │   │   │           ├── nrfx_glue.h
│   │   │   │   │           └── nrfx_log.h
│   │   │   │   └── sdk_config.h
│   │   │   ├── Program
│   │   │   │   ├── algorithms
│   │   │   │   │   ├── mathUnit.c
│   │   │   │   │   └── mathUnit.h
│   │   │   │   ├── boardConfig.h
│   │   │   │   ├── drivers
│   │   │   │   │   ├── nrf5x_clock.c
│   │   │   │   │   ├── nrf5x_clock.h
│   │   │   │   │   ├── nrf5x_delay.c
│   │   │   │   │   ├── nrf5x_delay.h
│   │   │   │   │   ├── nrf5x_rng.c
│   │   │   │   │   ├── nrf5x_rng.h
│   │   │   │   │   ├── nrf5x_system.h
│   │   │   │   │   ├── nrf5x_timer.c
│   │   │   │   │   ├── nrf5x_timer.h
│   │   │   │   │   ├── nrf5x_uarte.c
│   │   │   │   │   └── nrf5x_uarte.h
│   │   │   │   ├── main.c
│   │   │   │   ├── modules
│   │   │   │   │   ├── kSerial.c
│   │   │   │   │   ├── kSerial.h
│   │   │   │   │   ├── serial.c
│   │   │   │   │   └── serial.h
│   │   │   │   ├── nrf5x_bsp.c
│   │   │   │   ├── nrf5x_bsp.h
│   │   │   │   ├── nrf5x_conf.h
│   │   │   │   └── nrf5x_it.c
│   │   │   └── Project
│   │   │       ├── ClearFile.bat
│   │   │       ├── ProjNRF5x.uvguix.Hom
│   │   │       ├── ProjNRF5x.uvoptx
│   │   │       ├── ProjNRF5x.uvprojx
│   │   │       └── RTE
│   │   │           ├── _NRF52-DK
│   │   │           │   └── RTE_Components.h
│   │   │           ├── _NRF52810
│   │   │           │   └── RTE_Components.h
│   │   │           └── _NRF52832
│   │   │               └── RTE_Components.h
│   │   ├── NRF_Peripheral_RTC
│   │   │   ├── Libraries
│   │   │   │   ├── components
│   │   │   │   │   ├── drivers_nrf
│   │   │   │   │   │   └── nrf_error.h
│   │   │   │   │   └── libraries
│   │   │   │   │       ├── app_error.h
│   │   │   │   │       ├── app_error_weak.h
│   │   │   │   │       ├── app_util.h
│   │   │   │   │       ├── app_util_platform.h
│   │   │   │   │       ├── nordic_common.h
│   │   │   │   │       ├── nrf_assert.h
│   │   │   │   │       ├── nrf_delay.h
│   │   │   │   │       ├── sdk_errors.h
│   │   │   │   │       └── sdk_resources.h
│   │   │   │   ├── documentation
│   │   │   │   │   ├── NordicS.jpg
│   │   │   │   │   ├── index.html
│   │   │   │   │   ├── licenses.html
│   │   │   │   │   ├── licenses.txt
│   │   │   │   │   ├── nRF5_Dynastream_license.txt
│   │   │   │   │   ├── nRF5_Nordic_license.txt
│   │   │   │   │   ├── nRF5x_series_logo.png
│   │   │   │   │   └── release_notes.txt
│   │   │   │   ├── 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_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
│   │   │   │   │       │   │   ├── index.html
│   │   │   │   │       │   │   ├── layout.xml
│   │   │   │   │       │   │   └── nordic_small.png
│   │   │   │   │       │   ├── drv_supp_matrix.dox
│   │   │   │   │       │   ├── generate_html_doc.bat
│   │   │   │   │       │   ├── generate_html_doc.sh
│   │   │   │   │       │   ├── main_page.dox
│   │   │   │   │       │   ├── nrf51_series.dox
│   │   │   │   │       │   ├── nrf52810.dox
│   │   │   │   │       │   ├── nrf52832.dox
│   │   │   │   │       │   ├── nrf52840.dox
│   │   │   │   │       │   ├── nrfx.doxyfile
│   │   │   │   │       │   └── nrfx_api.dox
│   │   │   │   │       ├── drivers
│   │   │   │   │       │   ├── include
│   │   │   │   │       │   │   ├── nrf_bitmask.h
│   │   │   │   │       │   │   ├── nrfx_adc.h
│   │   │   │   │       │   │   ├── nrfx_clock.h
│   │   │   │   │       │   │   ├── nrfx_comp.h
│   │   │   │   │       │   │   ├── nrfx_gpiote.h
│   │   │   │   │       │   │   ├── nrfx_i2s.h
│   │   │   │   │       │   │   ├── nrfx_lpcomp.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_spi.h
│   │   │   │   │       │   │   ├── nrfx_spim.h
│   │   │   │   │       │   │   ├── nrfx_spis.h
│   │   │   │   │       │   │   ├── nrfx_swi.h
│   │   │   │   │       │   │   ├── nrfx_systick.h
│   │   │   │   │       │   │   ├── nrfx_timer.h
│   │   │   │   │       │   │   ├── nrfx_twi.h
│   │   │   │   │       │   │   ├── nrfx_twim.h
│   │   │   │   │       │   │   ├── nrfx_twis.h
│   │   │   │   │       │   │   ├── nrfx_uart.h
│   │   │   │   │       │   │   ├── nrfx_uarte.h
│   │   │   │   │       │   │   └── nrfx_wdt.h
│   │   │   │   │       │   ├── nrfx_common.h
│   │   │   │   │       │   ├── nrfx_errors.h
│   │   │   │   │       │   └── src
│   │   │   │   │       │       ├── nrfx_adc.c
│   │   │   │   │       │       ├── nrfx_clock.c
│   │   │   │   │       │       ├── nrfx_comp.c
│   │   │   │   │       │       ├── nrfx_gpiote.c
│   │   │   │   │       │       ├── nrfx_i2s.c
│   │   │   │   │       │       ├── nrfx_lpcomp.c
│   │   │   │   │       │       ├── nrfx_pdm.c
│   │   │   │   │       │       ├── nrfx_power.c
│   │   │   │   │       │       ├── nrfx_power_clock.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_timer.c
│   │   │   │   │       │       ├── nrfx_twi.c
│   │   │   │   │       │       ├── nrfx_twim.c
│   │   │   │   │       │       ├── nrfx_twis.c
│   │   │   │   │       │       ├── nrfx_uart.c
│   │   │   │   │       │       ├── nrfx_uarte.c
│   │   │   │   │       │       ├── nrfx_wdt.c
│   │   │   │   │       │       └── prs
│   │   │   │   │       │           ├── nrfx_prs.c
│   │   │   │   │       │           └── nrfx_prs.h
│   │   │   │   │       ├── hal
│   │   │   │   │       │   ├── 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_power.h
│   │   │   │   │       │   ├── nrf_ppi.h
│   │   │   │   │       │   ├── nrf_pwm.h
│   │   │   │   │       │   ├── nrf_qdec.h
│   │   │   │   │       │   ├── nrf_qspi.h
│   │   │   │   │       │   ├── nrf_rng.h
│   │   │   │   │       │   ├── nrf_rtc.h
│   │   │   │   │       │   ├── 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
│   │   │   │   │       ├── mdk
│   │   │   │   │       │   ├── arm_startup_nrf51.s
│   │   │   │   │       │   ├── arm_startup_nrf52.s
│   │   │   │   │       │   ├── arm_startup_nrf52810.s
│   │   │   │   │       │   ├── arm_startup_nrf52840.s
│   │   │   │   │       │   ├── compiler_abstraction.h
│   │   │   │   │       │   ├── gcc_startup_nrf51.S
│   │   │   │   │       │   ├── gcc_startup_nrf52.S
│   │   │   │   │       │   ├── gcc_startup_nrf52810.S
│   │   │   │   │       │   ├── gcc_startup_nrf52840.S
│   │   │   │   │       │   ├── iar_startup_nrf51.s
│   │   │   │   │       │   ├── iar_startup_nrf52.s
│   │   │   │   │       │   ├── iar_startup_nrf52810.s
│   │   │   │   │       │   ├── iar_startup_nrf52840.s
│   │   │   │   │       │   ├── nRFxxx.h
│   │   │   │   │       │   ├── nrf.h
│   │   │   │   │       │   ├── nrf51.h
│   │   │   │   │       │   ├── nrf51.svd
│   │   │   │   │       │   ├── nrf51422_peripherals.h
│   │   │   │   │       │   ├── nrf51801_peripherals.h
│   │   │   │   │       │   ├── nrf51801_xxab.ld
│   │   │   │   │       │   ├── nrf51802_peripherals.h
│   │   │   │   │       │   ├── nrf51822_peripherals.h
│   │   │   │   │       │   ├── nrf51824_peripherals.h
│   │   │   │   │       │   ├── nrf51_bitfields.h
│   │   │   │   │       │   ├── nrf51_common.ld
│   │   │   │   │       │   ├── nrf51_deprecated.h
│   │   │   │   │       │   ├── nrf51_peripherals.h
│   │   │   │   │       │   ├── nrf51_to_nrf52.h
│   │   │   │   │       │   ├── nrf51_to_nrf52810.h
│   │   │   │   │       │   ├── nrf51_to_nrf52840.h
│   │   │   │   │       │   ├── nrf51_xxaa.ld
│   │   │   │   │       │   ├── nrf51_xxab.ld
│   │   │   │   │       │   ├── nrf51_xxac.ld
│   │   │   │   │       │   ├── nrf52.h
│   │   │   │   │       │   ├── nrf52.svd
│   │   │   │   │       │   ├── nrf52810.h
│   │   │   │   │       │   ├── nrf52810.svd
│   │   │   │   │       │   ├── nrf52810_bitfields.h
│   │   │   │   │       │   ├── nrf52810_peripherals.h
│   │   │   │   │       │   ├── nrf52810_xxaa.ld
│   │   │   │   │       │   ├── nrf52832_peripherals.h
│   │   │   │   │       │   ├── nrf52832_xxab.ld
│   │   │   │   │       │   ├── nrf52840.h
│   │   │   │   │       │   ├── nrf52840.svd
│   │   │   │   │       │   ├── nrf52840_bitfields.h
│   │   │   │   │       │   ├── nrf52840_peripherals.h
│   │   │   │   │       │   ├── nrf52840_xxaa.ld
│   │   │   │   │       │   ├── nrf52_bitfields.h
│   │   │   │   │       │   ├── nrf52_common.ld
│   │   │   │   │       │   ├── nrf52_name_change.h
│   │   │   │   │       │   ├── nrf52_to_nrf52810.h
│   │   │   │   │       │   ├── nrf52_to_nrf52840.h
│   │   │   │   │       │   ├── nrf52_xxaa.ld
│   │   │   │   │       │   ├── nrf_common.ld
│   │   │   │   │       │   ├── nrf_peripherals.h
│   │   │   │   │       │   ├── ses_nRF_Startup.s
│   │   │   │   │       │   ├── ses_nrf51_Vectors.s
│   │   │   │   │       │   ├── ses_nrf52810_Vectors.s
│   │   │   │   │       │   ├── ses_nrf52840_Vectors.s
│   │   │   │   │       │   ├── ses_nrf52_Vectors.s
│   │   │   │   │       │   ├── startup_config.h
│   │   │   │   │       │   ├── system_nrf51.c
│   │   │   │   │       │   ├── system_nrf51.h
│   │   │   │   │       │   ├── system_nrf52.c
│   │   │   │   │       │   ├── system_nrf52.h
│   │   │   │   │       │   ├── system_nrf52810.c
│   │   │   │   │       │   ├── system_nrf52810.h
│   │   │   │   │       │   ├── system_nrf52840.c
│   │   │   │   │       │   └── system_nrf52840.h
│   │   │   │   │       ├── nrfx.h
│   │   │   │   │       ├── soc
│   │   │   │   │       │   ├── nrfx_coredep.h
│   │   │   │   │       │   ├── nrfx_irqs.h
│   │   │   │   │       │   ├── nrfx_irqs_nrf51.h
│   │   │   │   │       │   ├── nrfx_irqs_nrf52810.h
│   │   │   │   │       │   ├── nrfx_irqs_nrf52832.h
│   │   │   │   │       │   └── nrfx_irqs_nrf52840.h
│   │   │   │   │       └── templates
│   │   │   │   │           ├── nRF51
│   │   │   │   │           │   └── nrfx_config.h
│   │   │   │   │           ├── nRF52810
│   │   │   │   │           │   └── nrfx_config.h
│   │   │   │   │           ├── nRF52832
│   │   │   │   │           │   └── nrfx_config.h
│   │   │   │   │           ├── nRF52840
│   │   │   │   │           │   └── nrfx_config.h
│   │   │   │   │           ├── nrfx_glue.h
│   │   │   │   │           └── nrfx_log.h
│   │   │   │   └── sdk_config.h
│   │   │   ├── Program
│   │   │   │   ├── algorithms
│   │   │   │   │   ├── mathUnit.c
│   │   │   │   │   └── mathUnit.h
│   │   │   │   ├── boardConfig.h
│   │   │   │   ├── drivers
│   │   │   │   │   ├── nrf5x_clock.c
│   │   │   │   │   ├── nrf5x_clock.h
│   │   │   │   │   ├── nrf5x_delay.c
│   │   │   │   │   ├── nrf5x_delay.h
│   │   │   │   │   ├── nrf5x_rtc.c
│   │   │   │   │   ├── nrf5x_rtc.h
│   │   │   │   │   ├── nrf5x_system.h
│   │   │   │   │   ├── nrf5x_timer.c
│   │   │   │   │   ├── nrf5x_timer.h
│   │   │   │   │   ├── nrf5x_uarte.c
│   │   │   │   │   └── nrf5x_uarte.h
│   │   │   │   ├── main.c
│   │   │   │   ├── modules
│   │   │   │   │   ├── kSerial.c
│   │   │   │   │   ├── kSerial.h
│   │   │   │   │   ├── serial.c
│   │   │   │   │   └── serial.h
│   │   │   │   ├── nrf5x_bsp.c
│   │   │   │   ├── nrf5x_bsp.h
│   │   │   │   ├── nrf5x_conf.h
│   │   │   │   └── nrf5x_it.c
│   │   │   └── Project
│   │   │       ├── ClearFile.bat
│   │   │       ├── ProjNRF5x.uvguix.Hom
│   │   │       ├── ProjNRF5x.uvoptx
│   │   │       ├── ProjNRF5x.uvprojx
│   │   │       └── RTE
│   │   │           ├── _NRF52-DK
│   │   │           │   └── RTE_Components.h
│   │   │           ├── _NRF52810
│   │   │           │   └── RTE_Components.h
│   │   │           └── _NRF52832
│   │   │               └── RTE_Components.h
│   │   ├── NRF_Peripheral_TEMP
│   │   │   ├── Libraries
│   │   │   │   ├── components
│   │   │   │   │   ├── drivers_nrf
│   │   │   │   │   │   └── nrf_error.h
│   │   │   │   │   └── libraries
│   │   │   │   │       ├── app_error.h
│   │   │   │   │       ├── app_error_weak.h
│   │   │   │   │       ├── app_util.h
│   │   │   │   │       ├── app_util_platform.h
│   │   │   │   │       ├── nordic_common.h
│   │   │   │   │       ├── nrf_assert.h
│   │   │   │   │       ├── nrf_delay.h
│   │   │   │   │       ├── sdk_errors.h
│   │   │   │   │       └── sdk_resources.h
│   │   │   │   ├── documentation
│   │   │   │   │   ├── NordicS.jpg
│   │   │   │   │   ├── index.html
│   │   │   │   │   ├── licenses.html
│   │   │   │   │   ├── licenses.txt
│   │   │   │   │   ├── nRF5_Dynastream_license.txt
│   │   │   │   │   ├── nRF5_Nordic_license.txt
│   │   │   │   │   ├── nRF5x_series_logo.png
│   │   │   │   │   └── release_notes.txt
│   │   │   │   ├── 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_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
│   │   │   │   │       │   │   ├── index.html
│   │   │   │   │       │   │   ├── layout.xml
│   │   │   │   │       │   │   └── nordic_small.png
│   │   │   │   │       │   ├── drv_supp_matrix.dox
│   │   │   │   │       │   ├── generate_html_doc.bat
│   │   │   │   │       │   ├── generate_html_doc.sh
│   │   │   │   │       │   ├── main_page.dox
│   │   │   │   │       │   ├── nrf51_series.dox
│   │   │   │   │       │   ├── nrf52810.dox
│   │   │   │   │       │   ├── nrf52832.dox
│   │   │   │   │       │   ├── nrf52840.dox
│   │   │   │   │       │   ├── nrfx.doxyfile
│   │   │   │   │       │   └── nrfx_api.dox
│   │   │   │   │       ├── drivers
│   │   │   │   │       │   ├── include
│   │   │   │   │       │   │   ├── nrf_bitmask.h
│   │   │   │   │       │   │   ├── nrfx_adc.h
│   │   │   │   │       │   │   ├── nrfx_clock.h
│   │   │   │   │       │   │   ├── nrfx_comp.h
│   │   │   │   │       │   │   ├── nrfx_gpiote.h
│   │   │   │   │       │   │   ├── nrfx_i2s.h
│   │   │   │   │       │   │   ├── nrfx_lpcomp.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_spi.h
│   │   │   │   │       │   │   ├── nrfx_spim.h
│   │   │   │   │       │   │   ├── nrfx_spis.h
│   │   │   │   │       │   │   ├── nrfx_swi.h
│   │   │   │   │       │   │   ├── nrfx_systick.h
│   │   │   │   │       │   │   ├── nrfx_timer.h
│   │   │   │   │       │   │   ├── nrfx_twi.h
│   │   │   │   │       │   │   ├── nrfx_twim.h
│   │   │   │   │       │   │   ├── nrfx_twis.h
│   │   │   │   │       │   │   ├── nrfx_uart.h
│   │   │   │   │       │   │   ├── nrfx_uarte.h
│   │   │   │   │       │   │   └── nrfx_wdt.h
│   │   │   │   │       │   ├── nrfx_common.h
│   │   │   │   │       │   ├── nrfx_errors.h
│   │   │   │   │       │   └── src
│   │   │   │   │       │       ├── nrfx_adc.c
│   │   │   │   │       │       ├── nrfx_clock.c
│   │   │   │   │       │       ├── nrfx_comp.c
│   │   │   │   │       │       ├── nrfx_gpiote.c
│   │   │   │   │       │       ├── nrfx_i2s.c
│   │   │   │   │       │       ├── nrfx_lpcomp.c
│   │   │   │   │       │       ├── nrfx_pdm.c
│   │   │   │   │       │       ├── nrfx_power.c
│   │   │   │   │       │       ├── nrfx_power_clock.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_timer.c
│   │   │   │   │       │       ├── nrfx_twi.c
│   │   │   │   │       │       ├── nrfx_twim.c
│   │   │   │   │       │       ├── nrfx_twis.c
│   │   │   │   │       │       ├── nrfx_uart.c
│   │   │   │   │       │       ├── nrfx_uarte.c
│   │   │   │   │       │       ├── nrfx_wdt.c
│   │   │   │   │       │       └── prs
│   │   │   │   │       │           ├── nrfx_prs.c
│   │   │   │   │       │           └── nrfx_prs.h
│   │   │   │   │       ├── hal
│   │   │   │   │       │   ├── 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_power.h
│   │   │   │   │       │   ├── nrf_ppi.h
│   │   │   │   │       │   ├── nrf_pwm.h
│   │   │   │   │       │   ├── nrf_qdec.h
│   │   │   │   │       │   ├── nrf_qspi.h
│   │   │   │   │       │   ├── nrf_rng.h
│   │   │   │   │       │   ├── nrf_rtc.h
│   │   │   │   │       │   ├── 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
│   │   │   │   │       ├── mdk
│   │   │   │   │       │   ├── arm_startup_nrf51.s
│   │   │   │   │       │   ├── arm_startup_nrf52.s
│   │   │   │   │       │   ├── arm_startup_nrf52810.s
│   │   │   │   │       │   ├── arm_startup_nrf52840.s
│   │   │   │   │       │   ├── compiler_abstraction.h
│   │   │   │   │       │   ├── gcc_startup_nrf51.S
│   │   │   │   │       │   ├── gcc_startup_nrf52.S
│   │   │   │   │       │   ├── gcc_startup_nrf52810.S
│   │   │   │   │       │   ├── gcc_startup_nrf52840.S
│   │   │   │   │       │   ├── iar_startup_nrf51.s
│   │   │   │   │       │   ├── iar_startup_nrf52.s
│   │   │   │   │       │   ├── iar_startup_nrf52810.s
│   │   │   │   │       │   ├── iar_startup_nrf52840.s
│   │   │   │   │       │   ├── nRFxxx.h
│   │   │   │   │       │   ├── nrf.h
│   │   │   │   │       │   ├── nrf51.h
│   │   │   │   │       │   ├── nrf51.svd
│   │   │   │   │       │   ├── nrf51422_peripherals.h
│   │   │   │   │       │   ├── nrf51801_peripherals.h
│   │   │   │   │       │   ├── nrf51801_xxab.ld
│   │   │   │   │       │   ├── nrf51802_peripherals.h
│   │   │   │   │       │   ├── nrf51822_peripherals.h
│   │   │   │   │       │   ├── nrf51824_peripherals.h
│   │   │   │   │       │   ├── nrf51_bitfields.h
│   │   │   │   │       │   ├── nrf51_common.ld
│   │   │   │   │       │   ├── nrf51_deprecated.h
│   │   │   │   │       │   ├── nrf51_peripherals.h
│   │   │   │   │       │   ├── nrf51_to_nrf52.h
│   │   │   │   │       │   ├── nrf51_to_nrf52810.h
│   │   │   │   │       │   ├── nrf51_to_nrf52840.h
│   │   │   │   │       │   ├── nrf51_xxaa.ld
│   │   │   │   │       │   ├── nrf51_xxab.ld
│   │   │   │   │       │   ├── nrf51_xxac.ld
│   │   │   │   │       │   ├── nrf52.h
│   │   │   │   │       │   ├── nrf52.svd
│   │   │   │   │       │   ├── nrf52810.h
│   │   │   │   │       │   ├── nrf52810.svd
│   │   │   │   │       │   ├── nrf52810_bitfields.h
│   │   │   │   │       │   ├── nrf52810_peripherals.h
│   │   │   │   │       │   ├── nrf52810_xxaa.ld
│   │   │   │   │       │   ├── nrf52832_peripherals.h
│   │   │   │   │       │   ├── nrf52832_xxab.ld
│   │   │   │   │       │   ├── nrf52840.h
│   │   │   │   │       │   ├── nrf52840.svd
│   │   │   │   │       │   ├── nrf52840_bitfields.h
│   │   │   │   │       │   ├── nrf52840_peripherals.h
│   │   │   │   │       │   ├── nrf52840_xxaa.ld
│   │   │   │   │       │   ├── nrf52_bitfields.h
│   │   │   │   │       │   ├── nrf52_common.ld
│   │   │   │   │       │   ├── nrf52_name_change.h
│   │   │   │   │       │   ├── nrf52_to_nrf52810.h
│   │   │   │   │       │   ├── nrf52_to_nrf52840.h
│   │   │   │   │       │   ├── nrf52_xxaa.ld
│   │   │   │   │       │   ├── nrf_common.ld
│   │   │   │   │       │   ├── nrf_peripherals.h
│   │   │   │   │       │   ├── ses_nRF_Startup.s
│   │   │   │   │       │   ├── ses_nrf51_Vectors.s
│   │   │   │   │       │   ├── ses_nrf52810_Vectors.s
│   │   │   │   │       │   ├── ses_nrf52840_Vectors.s
│   │   │   │   │       │   ├── ses_nrf52_Vectors.s
│   │   │   │   │       │   ├── startup_config.h
│   │   │   │   │       │   ├── system_nrf51.c
│   │   │   │   │       │   ├── system_nrf51.h
│   │   │   │   │       │   ├── system_nrf52.c
│   │   │   │   │       │   ├── system_nrf52.h
│   │   │   │   │       │   ├── system_nrf52810.c
│   │   │   │   │       │   ├── system_nrf52810.h
│   │   │   │   │       │   ├── system_nrf52840.c
│   │   │   │   │       │   └── system_nrf52840.h
│   │   │   │   │       ├── nrfx.h
│   │   │   │   │       ├── soc
│   │   │   │   │       │   ├── nrfx_coredep.h
│   │   │   │   │       │   ├── nrfx_irqs.h
│   │   │   │   │       │   ├── nrfx_irqs_nrf51.h
│   │   │   │   │       │   ├── nrfx_irqs_nrf52810.h
│   │   │   │   │       │   ├── nrfx_irqs_nrf52832.h
│   │   │   │   │       │   └── nrfx_irqs_nrf52840.h
│   │   │   │   │       └── templates
│   │   │   │   │           ├── nRF51
│   │   │   │   │           │   └── nrfx_config.h
│   │   │   │   │           ├── nRF52810
│   │   │   │   │           │   └── nrfx_config.h
│   │   │   │   │           ├── nRF52832
│   │   │   │   │           │   └── nrfx_config.h
│   │   │   │   │           ├── nRF52840
│   │   │   │   │           │   └── nrfx_config.h
│   │   │   │   │           ├── nrfx_glue.h
│   │   │   │   │           └── nrfx_log.h
│   │   │   │   └── sdk_config.h
│   │   │   ├── Program
│   │   │   │   ├── algorithms
│   │   │   │   │   ├── mathUnit.c
│   │   │   │   │   └── mathUnit.h
│   │   │   │   ├── boardConfig.h
│   │   │   │   ├── drivers
│   │   │   │   │   ├── nrf5x_clock.c
│   │   │   │   │   ├── nrf5x_clock.h
│   │   │   │   │   ├── nrf5x_delay.c
│   │   │   │   │   ├── nrf5x_delay.h
│   │   │   │   │   ├── nrf5x_system.h
│   │   │   │   │   ├── nrf5x_temp.c
│   │   │   │   │   ├── nrf5x_temp.h
│   │   │   │   │   ├── nrf5x_timer.c
│   │   │   │   │   ├── nrf5x_timer.h
│   │   │   │   │   ├── nrf5x_uarte.c
│   │   │   │   │   └── nrf5x_uarte.h
│   │   │   │   ├── main.c
│   │   │   │   ├── modules
│   │   │   │   │   ├── kSerial.c
│   │   │   │   │   ├── kSerial.h
│   │   │   │   │   ├── serial.c
│   │   │   │   │   └── serial.h
│   │   │   │   ├── nrf5x_bsp.c
│   │   │   │   ├── nrf5x_bsp.h
│   │   │   │   ├── nrf5x_conf.h
│   │   │   │   └── nrf5x_it.c
│   │   │   └── Project
│   │   │       ├── ClearFile.bat
│   │   │       ├── ProjNRF5x.uvguix.Hom
│   │   │       ├── ProjNRF5x.uvoptx
│   │   │       ├── ProjNRF5x.uvprojx
│   │   │       └── RTE
│   │   │           ├── _NRF52-DK
│   │   │           │   └── RTE_Components.h
│   │   │           ├── _NRF52810
│   │   │           │   └── RTE_Components.h
│   │   │           └── _NRF52832
│   │   │               └── RTE_Components.h
│   │   ├── NRF_Peripheral_TIMER
│   │   │   ├── Libraries
│   │   │   │   ├── components
│   │   │   │   │   ├── drivers_nrf
│   │   │   │   │   │   └── nrf_error.h
│   │   │   │   │   └── libraries
│   │   │   │   │       ├── app_error.h
│   │   │   │   │       ├── app_error_weak.h
│   │   │   │   │       ├── app_util.h
│   │   │   │   │       ├── app_util_platform.h
│   │   │   │   │       ├── nordic_common.h
│   │   │   │   │       ├── nrf_assert.h
│   │   │   │   │       ├── nrf_delay.h
│   │   │   │   │       ├── sdk_errors.h
│   │   │   │   │       └── sdk_resources.h
│   │   │   │   ├── documentation
│   │   │   │   │   ├── NordicS.jpg
│   │   │   │   │   ├── index.html
│   │   │   │   │   ├── licenses.html
│   │   │   │   │   ├── licenses.txt
│   │   │   │   │   ├── nRF5_Dynastream_license.txt
│   │   │   │   │   ├── nRF5_Nordic_license.txt
│   │   │   │   │   ├── nRF5x_series_logo.png
│   │   │   │   │   └── release_notes.txt
│   │   │   │   ├── 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_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
│   │   │   │   │       │   │   ├── index.html
│   │   │   │   │       │   │   ├── layout.xml
│   │   │   │   │       │   │   └── nordic_small.png
│   │   │   │   │       │   ├── drv_supp_matrix.dox
│   │   │   │   │       │   ├── generate_html_doc.bat
│   │   │   │   │       │   ├── generate_html_doc.sh
│   │   │   │   │       │   ├── main_page.dox
│   │   │   │   │       │   ├── nrf51_series.dox
│   │   │   │   │       │   ├── nrf52810.dox
│   │   │   │   │       │   ├── nrf52832.dox
│   │   │   │   │       │   ├── nrf52840.dox
│   │   │   │   │       │   ├── nrfx.doxyfile
│   │   │   │   │       │   └── nrfx_api.dox
│   │   │   │   │       ├── drivers
│   │   │   │   │       │   ├── include
│   │   │   │   │       │   │   ├── nrf_bitmask.h
│   │   │   │   │       │   │   ├── nrfx_adc.h
│   │   │   │   │       │   │   ├── nrfx_clock.h
│   │   │   │   │       │   │   ├── nrfx_comp.h
│   │   │   │   │       │   │   ├── nrfx_gpiote.h
│   │   │   │   │       │   │   ├── nrfx_i2s.h
│   │   │   │   │       │   │   ├── nrfx_lpcomp.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_spi.h
│   │   │   │   │       │   │   ├── nrfx_spim.h
│   │   │   │   │       │   │   ├── nrfx_spis.h
│   │   │   │   │       │   │   ├── nrfx_swi.h
│   │   │   │   │       │   │   ├── nrfx_systick.h
│   │   │   │   │       │   │   ├── nrfx_timer.h
│   │   │   │   │       │   │   ├── nrfx_twi.h
│   │   │   │   │       │   │   ├── nrfx_twim.h
│   │   │   │   │       │   │   ├── nrfx_twis.h
│   │   │   │   │       │   │   ├── nrfx_uart.h
│   │   │   │   │       │   │   ├── nrfx_uarte.h
│   │   │   │   │       │   │   └── nrfx_wdt.h
│   │   │   │   │       │   ├── nrfx_common.h
│   │   │   │   │       │   ├── nrfx_errors.h
│   │   │   │   │       │   └── src
│   │   │   │   │       │       ├── nrfx_adc.c
│   │   │   │   │       │       ├── nrfx_clock.c
│   │   │   │   │       │       ├── nrfx_comp.c
│   │   │   │   │       │       ├── nrfx_gpiote.c
│   │   │   │   │       │       ├── nrfx_i2s.c
│   │   │   │   │       │       ├── nrfx_lpcomp.c
│   │   │   │   │       │       ├── nrfx_pdm.c
│   │   │   │   │       │       ├── nrfx_power.c
│   │   │   │   │       │       ├── nrfx_power_clock.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_timer.c
│   │   │   │   │       │       ├── nrfx_twi.c
│   │   │   │   │       │       ├── nrfx_twim.c
│   │   │   │   │       │       ├── nrfx_twis.c
│   │   │   │   │       │       ├── nrfx_uart.c
│   │   │   │   │       │       ├── nrfx_uarte.c
│   │   │   │   │       │       ├── nrfx_wdt.c
│   │   │   │   │       │       └── prs
│   │   │   │   │       │           ├── nrfx_prs.c
│   │   │   │   │       │           └── nrfx_prs.h
│   │   │   │   │       ├── hal
│   │   │   │   │       │   ├── 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_power.h
│   │   │   │   │       │   ├── nrf_ppi.h
│   │   │   │   │       │   ├── nrf_pwm.h
│   │   │   │   │       │   ├── nrf_qdec.h
│   │   │   │   │       │   ├── nrf_qspi.h
│   │   │   │   │       │   ├── nrf_rng.h
│   │   │   │   │       │   ├── nrf_rtc.h
│   │   │   │   │       │   ├── 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
│   │   │   │   │       ├── mdk
│   │   │   │   │       │   ├── arm_startup_nrf51.s
│   │   │   │   │       │   ├── arm_startup_nrf52.s
│   │   │   │   │       │   ├── arm_startup_nrf52810.s
│   │   │   │   │       │   ├── arm_startup_nrf52840.s
│   │   │   │   │       │   ├── compiler_abstraction.h
│   │   │   │   │       │   ├── gcc_startup_nrf51.S
│   │   │   │   │       │   ├── gcc_startup_nrf52.S
│   │   │   │   │       │   ├── gcc_startup_nrf52810.S
│   │   │   │   │       │   ├── gcc_startup_nrf52840.S
│   │   │   │   │       │   ├── iar_startup_nrf51.s
│   │   │   │   │       │   ├── iar_startup_nrf52.s
│   │   │   │   │       │   ├── iar_startup_nrf52810.s
│   │   │   │   │       │   ├── iar_startup_nrf52840.s
│   │   │   │   │       │   ├── nRFxxx.h
│   │   │   │   │       │   ├── nrf.h
│   │   │   │   │       │   ├── nrf51.h
│   │   │   │   │       │   ├── nrf51.svd
│   │   │   │   │       │   ├── nrf51422_peripherals.h
│   │   │   │   │       │   ├── nrf51801_peripherals.h
│   │   │   │   │       │   ├── nrf51801_xxab.ld
│   │   │   │   │       │   ├── nrf51802_peripherals.h
│   │   │   │   │       │   ├── nrf51822_peripherals.h
│   │   │   │   │       │   ├── nrf51824_peripherals.h
│   │   │   │   │       │   ├── nrf51_bitfields.h
│   │   │   │   │       │   ├── nrf51_common.ld
│   │   │   │   │       │   ├── nrf51_deprecated.h
│   │   │   │   │       │   ├── nrf51_peripherals.h
│   │   │   │   │       │   ├── nrf51_to_nrf52.h
│   │   │   │   │       │   ├── nrf51_to_nrf52810.h
│   │   │   │   │       │   ├── nrf51_to_nrf52840.h
│   │   │   │   │       │   ├── nrf51_xxaa.ld
│   │   │   │   │       │   ├── nrf51_xxab.ld
│   │   │   │   │       │   ├── nrf51_xxac.ld
│   │   │   │   │       │   ├── nrf52.h
│   │   │   │   │       │   ├── nrf52.svd
│   │   │   │   │       │   ├── nrf52810.h
│   │   │   │   │       │   ├── nrf52810.svd
│   │   │   │   │       │   ├── nrf52810_bitfields.h
│   │   │   │   │       │   ├── nrf52810_peripherals.h
│   │   │   │   │       │   ├── nrf52810_xxaa.ld
│   │   │   │   │       │   ├── nrf52832_peripherals.h
│   │   │   │   │       │   ├── nrf52832_xxab.ld
│   │   │   │   │       │   ├── nrf52840.h
│   │   │   │   │       │   ├── nrf52840.svd
│   │   │   │   │       │   ├── nrf52840_bitfields.h
│   │   │   │   │       │   ├── nrf52840_peripherals.h
│   │   │   │   │       │   ├── nrf52840_xxaa.ld
│   │   │   │   │       │   ├── nrf52_bitfields.h
│   │   │   │   │       │   ├── nrf52_common.ld
│   │   │   │   │       │   ├── nrf52_name_change.h
│   │   │   │   │       │   ├── nrf52_to_nrf52810.h
│   │   │   │   │       │   ├── nrf52_to_nrf52840.h
│   │   │   │   │       │   ├── nrf52_xxaa.ld
│   │   │   │   │       │   ├── nrf_common.ld
│   │   │   │   │       │   ├── nrf_peripherals.h
│   │   │   │   │       │   ├── ses_nRF_Startup.s
│   │   │   │   │       │   ├── ses_nrf51_Vectors.s
│   │   │   │   │       │   ├── ses_nrf52810_Vectors.s
│   │   │   │   │       │   ├── ses_nrf52840_Vectors.s
│   │   │   │   │       │   ├── ses_nrf52_Vectors.s
│   │   │   │   │       │   ├── startup_config.h
│   │   │   │   │       │   ├── system_nrf51.c
│   │   │   │   │       │   ├── system_nrf51.h
│   │   │   │   │       │   ├── system_nrf52.c
│   │   │   │   │       │   ├── system_nrf52.h
│   │   │   │   │       │   ├── system_nrf52810.c
│   │   │   │   │       │   ├── system_nrf52810.h
│   │   │   │   │       │   ├── system_nrf52840.c
│   │   │   │   │       │   └── system_nrf52840.h
│   │   │   │   │       ├── nrfx.h
│   │   │   │   │       ├── soc
│   │   │   │   │       │   ├── nrfx_coredep.h
│   │   │   │   │       │   ├── nrfx_irqs.h
│   │   │   │   │       │   ├── nrfx_irqs_nrf51.h
│   │   │   │   │       │   ├── nrfx_irqs_nrf52810.h
│   │   │   │   │       │   ├── nrfx_irqs_nrf52832.h
│   │   │   │   │       │   └── nrfx_irqs_nrf52840.h
│   │   │   │   │       └── templates
│   │   │   │   │           ├── nRF51
│   │   │   │   │           │   └── nrfx_config.h
│   │   │   │   │           ├── nRF52810
│   │   │   │   │           │   └── nrfx_config.h
│   │   │   │   │           ├── nRF52832
│   │   │   │   │           │   └── nrfx_config.h
│   │   │   │   │           ├── nRF52840
│   │   │   │   │           │   └── nrfx_config.h
│   │   │   │   │           ├── nrfx_glue.h
│   │   │   │   │           └── nrfx_log.h
│   │   │   │   └── sdk_config.h
│   │   │   ├── Program
│   │   │   │   ├── algorithms
│   │   │   │   │   ├── mathUnit.c
│   │   │   │   │   └── mathUnit.h
│   │   │   │   ├── boardConfig.h
│   │   │   │   ├── drivers
│   │   │   │   │   ├── nrf5x_clock.c
│   │   │   │   │   ├── nrf5x_clock.h
│   │   │   │   │   ├── nrf5x_delay.c
│   │   │   │   │   ├── nrf5x_delay.h
│   │   │   │   │   ├── nrf5x_system.h
│   │   │   │   │   ├── nrf5x_timer.c
│   │   │   │   │   └── nrf5x_timer.h
│   │   │   │   ├── main.c
│   │   │   │   ├── nrf5x_bsp.c
│   │   │   │   ├── nrf5x_bsp.h
│   │   │   │   ├── nrf5x_conf.h
│   │   │   │   └── nrf5x_it.c
│   │   │   └── Project
│   │   │       ├── ClearFile.bat
│   │   │       ├── ProjNRF5x.uvguix.Hom
│   │   │       ├── ProjNRF5x.uvoptx
│   │   │       ├── ProjNRF5x.uvprojx
│   │   │       └── RTE
│   │   │           ├── _NRF52-DK
│   │   │           │   └── RTE_Components.h
│   │   │           ├── _NRF52810
│   │   │           │   └── RTE_Components.h
│   │   │           └── _NRF52832
│   │   │               └── RTE_Components.h
│   │   ├── NRF_Peripheral_UARTE
│   │   │   ├── Libraries
│   │   │   │   ├── components
│   │   │   │   │   ├── drivers_nrf
│   │   │   │   │   │   └── nrf_error.h
│   │   │   │   │   └── libraries
│   │   │   │   │       ├── app_error.h
│   │   │   │   │       ├── app_error_weak.h
│   │   │   │   │       ├── app_util.h
│   │   │   │   │       ├── app_util_platform.h
│   │   │   │   │       ├── nordic_common.h
│   │   │   │   │       ├── nrf_assert.h
│   │   │   │   │       ├── nrf_delay.h
│   │   │   │   │       ├── sdk_errors.h
│   │   │   │   │       └── sdk_resources.h
│   │   │   │   ├── documentation
│   │   │   │   │   ├── NordicS.jpg
│   │   │   │   │   ├── index.html
│   │   │   │   │   ├── licenses.html
│   │   │   │   │   ├── licenses.txt
│   │   │   │   │   ├── nRF5_Dynastream_license.txt
│   │   │   │   │   ├── nRF5_Nordic_license.txt
│   │   │   │   │   ├── nRF5x_series_logo.png
│   │   │   │   │   └── release_notes.txt
│   │   │   │   ├── 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_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
│   │   │   │   │       │   │   ├── index.html
│   │   │   │   │       │   │   ├── layout.xml
│   │   │   │   │       │   │   └── nordic_small.png
│   │   │   │   │       │   ├── drv_supp_matrix.dox
│   │   │   │   │       │   ├── generate_html_doc.bat
│   │   │   │   │       │   ├── generate_html_doc.sh
│   │   │   │   │       │   ├── main_page.dox
│   │   │   │   │       │   ├── nrf51_series.dox
│   │   │   │   │       │   ├── nrf52810.dox
│   │   │   │   │       │   ├── nrf52832.dox
│   │   │   │   │       │   ├── nrf52840.dox
│   │   │   │   │       │   ├── nrfx.doxyfile
│   │   │   │   │       │   └── nrfx_api.dox
│   │   │   │   │       ├── drivers
│   │   │   │   │       │   ├── include
│   │   │   │   │       │   │   ├── nrf_bitmask.h
│   │   │   │   │       │   │   ├── nrfx_adc.h
│   │   │   │   │       │   │   ├── nrfx_clock.h
│   │   │   │   │       │   │   ├── nrfx_comp.h
│   │   │   │   │       │   │   ├── nrfx_gpiote.h
│   │   │   │   │       │   │   ├── nrfx_i2s.h
│   │   │   │   │       │   │   ├── nrfx_lpcomp.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_spi.h
│   │   │   │   │       │   │   ├── nrfx_spim.h
│   │   │   │   │       │   │   ├── nrfx_spis.h
│   │   │   │   │       │   │   ├── nrfx_swi.h
│   │   │   │   │       │   │   ├── nrfx_systick.h
│   │   │   │   │       │   │   ├── nrfx_timer.h
│   │   │   │   │       │   │   ├── nrfx_twi.h
│   │   │   │   │       │   │   ├── nrfx_twim.h
│   │   │   │   │       │   │   ├── nrfx_twis.h
│   │   │   │   │       │   │   ├── nrfx_uart.h
│   │   │   │   │       │   │   ├── nrfx_uarte.h
│   │   │   │   │       │   │   └── nrfx_wdt.h
│   │   │   │   │       │   ├── nrfx_common.h
│   │   │   │   │       │   ├── nrfx_errors.h
│   │   │   │   │       │   └── src
│   │   │   │   │       │       ├── nrfx_adc.c
│   │   │   │   │       │       ├── nrfx_clock.c
│   │   │   │   │       │       ├── nrfx_comp.c
│   │   │   │   │       │       ├── nrfx_gpiote.c
│   │   │   │   │       │       ├── nrfx_i2s.c
│   │   │   │   │       │       ├── nrfx_lpcomp.c
│   │   │   │   │       │       ├── nrfx_pdm.c
│   │   │   │   │       │       ├── nrfx_power.c
│   │   │   │   │       │       ├── nrfx_power_clock.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_timer.c
│   │   │   │   │       │       ├── nrfx_twi.c
│   │   │   │   │       │       ├── nrfx_twim.c
│   │   │   │   │       │       ├── nrfx_twis.c
│   │   │   │   │       │       ├── nrfx_uart.c
│   │   │   │   │       │       ├── nrfx_uarte.c
│   │   │   │   │       │       ├── nrfx_wdt.c
│   │   │   │   │       │       └── prs
│   │   │   │   │       │           ├── nrfx_prs.c
│   │   │   │   │       │           └── nrfx_prs.h
│   │   │   │   │       ├── hal
│   │   │   │   │       │   ├── 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_power.h
│   │   │   │   │       │   ├── nrf_ppi.h
│   │   │   │   │       │   ├── nrf_pwm.h
│   │   │   │   │       │   ├── nrf_qdec.h
│   │   │   │   │       │   ├── nrf_qspi.h
│   │   │   │   │       │   ├── nrf_rng.h
│   │   │   │   │       │   ├── nrf_rtc.h
│   │   │   │   │       │   ├── 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
│   │   │   │   │       ├── mdk
│   │   │   │   │       │   ├── arm_startup_nrf51.s
│   │   │   │   │       │   ├── arm_startup_nrf52.s
│   │   │   │   │       │   ├── arm_startup_nrf52810.s
│   │   │   │   │       │   ├── arm_startup_nrf52840.s
│   │   │   │   │       │   ├── compiler_abstraction.h
│   │   │   │   │       │   ├── gcc_startup_nrf51.S
│   │   │   │   │       │   ├── gcc_startup_nrf52.S
│   │   │   │   │       │   ├── gcc_startup_nrf52810.S
│   │   │   │   │       │   ├── gcc_startup_nrf52840.S
│   │   │   │   │       │   ├── iar_startup_nrf51.s
│   │   │   │   │       │   ├── iar_startup_nrf52.s
│   │   │   │   │       │   ├── iar_startup_nrf52810.s
│   │   │   │   │       │   ├── iar_startup_nrf52840.s
│   │   │   │   │       │   ├── nRFxxx.h
│   │   │   │   │       │   ├── nrf.h
│   │   │   │   │       │   ├── nrf51.h
│   │   │   │   │       │   ├── nrf51.svd
│   │   │   │   │       │   ├── nrf51422_peripherals.h
│   │   │   │   │       │   ├── nrf51801_peripherals.h
│   │   │   │   │       │   ├── nrf51801_xxab.ld
│   │   │   │   │       │   ├── nrf51802_peripherals.h
│   │   │   │   │       │   ├── nrf51822_peripherals.h
│   │   │   │   │       │   ├── nrf51824_peripherals.h
│   │   │   │   │       │   ├── nrf51_bitfields.h
│   │   │   │   │       │   ├── nrf51_common.ld
│   │   │   │   │       │   ├── nrf51_deprecated.h
│   │   │   │   │       │   ├── nrf51_peripherals.h
│   │   │   │   │       │   ├── nrf51_to_nrf52.h
│   │   │   │   │       │   ├── nrf51_to_nrf52810.h
│   │   │   │   │       │   ├── nrf51_to_nrf52840.h
│   │   │   │   │       │   ├── nrf51_xxaa.ld
│   │   │   │   │       │   ├── nrf51_xxab.ld
│   │   │   │   │       │   ├── nrf51_xxac.ld
│   │   │   │   │       │   ├── nrf52.h
│   │   │   │   │       │   ├── nrf52.svd
│   │   │   │   │       │   ├── nrf52810.h
│   │   │   │   │       │   ├── nrf52810.svd
│   │   │   │   │       │   ├── nrf52810_bitfields.h
│   │   │   │   │       │   ├── nrf52810_peripherals.h
│   │   │   │   │       │   ├── nrf52810_xxaa.ld
│   │   │   │   │       │   ├── nrf52832_peripherals.h
│   │   │   │   │       │   ├── nrf52832_xxab.ld
│   │   │   │   │       │   ├── nrf52840.h
│   │   │   │   │       │   ├── nrf52840.svd
│   │   │   │   │       │   ├── nrf52840_bitfields.h
│   │   │   │   │       │   ├── nrf52840_peripherals.h
│   │   │   │   │       │   ├── nrf52840_xxaa.ld
│   │   │   │   │       │   ├── nrf52_bitfields.h
│   │   │   │   │       │   ├── nrf52_common.ld
│   │   │   │   │       │   ├── nrf52_name_change.h
│   │   │   │   │       │   ├── nrf52_to_nrf52810.h
│   │   │   │   │       │   ├── nrf52_to_nrf52840.h
│   │   │   │   │       │   ├── nrf52_xxaa.ld
│   │   │   │   │       │   ├── nrf_common.ld
│   │   │   │   │       │   ├── nrf_peripherals.h
│   │   │   │   │       │   ├── ses_nRF_Startup.s
│   │   │   │   │       │   ├── ses_nrf51_Vectors.s
│   │   │   │   │       │   ├── ses_nrf52810_Vectors.s
│   │   │   │   │       │   ├── ses_nrf52840_Vectors.s
│   │   │   │   │       │   ├── ses_nrf52_Vectors.s
│   │   │   │   │       │   ├── startup_config.h
│   │   │   │   │       │   ├── system_nrf51.c
│   │   │   │   │       │   ├── system_nrf51.h
│   │   │   │   │       │   ├── system_nrf52.c
│   │   │   │   │       │   ├── system_nrf52.h
│   │   │   │   │       │   ├── system_nrf52810.c
│   │   │   │   │       │   ├── system_nrf52810.h
│   │   │   │   │       │   ├── system_nrf52840.c
│   │   │   │   │       │   └── system_nrf52840.h
│   │   │   │   │       ├── nrfx.h
│   │   │   │   │       ├── soc
│   │   │   │   │       │   ├── nrfx_coredep.h
│   │   │   │   │       │   ├── nrfx_irqs.h
│   │   │   │   │       │   ├── nrfx_irqs_nrf51.h
│   │   │   │   │       │   ├── nrfx_irqs_nrf52810.h
│   │   │   │   │       │   ├── nrfx_irqs_nrf52832.h
│   │   │   │   │       │   └── nrfx_irqs_nrf52840.h
│   │   │   │   │       └── templates
│   │   │   │   │           ├── nRF51
│   │   │   │   │           │   └── nrfx_config.h
│   │   │   │   │           ├── nRF52810
│   │   │   │   │           │   └── nrfx_config.h
│   │   │   │   │           ├── nRF52832
│   │   │   │   │           │   └── nrfx_config.h
│   │   │   │   │           ├── nRF52840
│   │   │   │   │           │   └── nrfx_config.h
│   │   │   │   │           ├── nrfx_glue.h
│   │   │   │   │           └── nrfx_log.h
│   │   │   │   └── sdk_config.h
│   │   │   ├── Program
│   │   │   │   ├── algorithms
│   │   │   │   │   ├── mathUnit.c
│   │   │   │   │   └── mathUnit.h
│   │   │   │   ├── boardConfig.h
│   │   │   │   ├── drivers
│   │   │   │   │   ├── nrf5x_clock.c
│   │   │   │   │   ├── nrf5x_clock.h
│   │   │   │   │   ├── nrf5x_delay.c
│   │   │   │   │   ├── nrf5x_delay.h
│   │   │   │   │   ├── nrf5x_system.h
│   │   │   │   │   ├── nrf5x_timer.c
│   │   │   │   │   ├── nrf5x_timer.h
│   │   │   │   │   ├── nrf5x_uarte.c
│   │   │   │   │   └── nrf5x_uarte.h
│   │   │   │   ├── main.c
│   │   │   │   ├── modules
│   │   │   │   │   ├── kSerial.c
│   │   │   │   │   ├── kSerial.h
│   │   │   │   │   ├── serial.c
│   │   │   │   │   └── serial.h
│   │   │   │   ├── nrf5x_bsp.c
│   │   │   │   ├── nrf5x_bsp.h
│   │   │   │   ├── nrf5x_conf.h
│   │   │   │   └── nrf5x_it.c
│   │   │   ├── Project
│   │   │   │   ├── ClearFile.bat
│   │   │   │   ├── ProjNRF5x.uvguix.Hom
│   │   │   │   ├── ProjNRF5x.uvoptx
│   │   │   │   ├── ProjNRF5x.uvprojx
│   │   │   │   └── RTE
│   │   │   │       ├── _NRF52-DK
│   │   │   │       │   └── RTE_Components.h
│   │   │   │       ├── _NRF52810
│   │   │   │       │   └── RTE_Components.h
│   │   │   │       └── _NRF52832
│   │   │   │           └── RTE_Components.h
│   │   │   ├── kOscilloscope.m
│   │   │   ├── kSerial.m
│   │   │   ├── kSerialOscilloscope.m
│   │   │   ├── serialOscilloscope.m
│   │   │   └── serialPacket.m
│   │   ├── STM_Peripheral_ADC
│   │   │   ├── Libraries
│   │   │   │   ├── CMSIS
│   │   │   │   │   ├── CMSIS_END_USER_LICENCE_AGREEMENT.pdf
│   │   │   │   │   ├── DSP_Lib
│   │   │   │   │   │   └── license.txt
│   │   │   │   │   ├── Device
│   │   │   │   │   │   ├── Release_Notes.html
│   │   │   │   │   │   ├── startup_stm32f411xe.s
│   │   │   │   │   │   ├── stm32f411xe.h
│   │   │   │   │   │   ├── stm32f4xx.h
│   │   │   │   │   │   ├── system_stm32f4xx.c
│   │   │   │   │   │   └── system_stm32f4xx.h
│   │   │   │   │   └── Include
│   │   │   │   │       ├── arm_common_tables.h
│   │   │   │   │       ├── arm_const_structs.h
│   │   │   │   │       ├── arm_math.h
│   │   │   │   │       ├── cmsis_armcc.h
│   │   │   │   │       ├── cmsis_armcc_V6.h
│   │   │   │   │       ├── cmsis_gcc.h
│   │   │   │   │       ├── core_cm4.h
│   │   │   │   │       ├── core_cmFunc.h
│   │   │   │   │       ├── core_cmInstr.h
│   │   │   │   │       ├── core_cmSimd.h
│   │   │   │   │       ├── core_sc000.h
│   │   │   │   │       └── core_sc300.h
│   │   │   │   └── STM32F4xx_HAL_Driver
│   │   │   │       ├── Inc
│   │   │   │       │   ├── Legacy
│   │   │   │       │   │   ├── stm32_hal_legacy.h
│   │   │   │       │   │   └── stm32f4xx_hal_can_legacy.h
│   │   │   │       │   ├── stm32_assert_template.h
│   │   │   │       │   ├── stm32f4xx_hal.h
│   │   │   │       │   ├── stm32f4xx_hal_adc.h
│   │   │   │       │   ├── stm32f4xx_hal_adc_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_can.h
│   │   │   │       │   ├── stm32f4xx_hal_cec.h
│   │   │   │       │   ├── stm32f4xx_hal_conf_template.h
│   │   │   │       │   ├── stm32f4xx_hal_cortex.h
│   │   │   │       │   ├── stm32f4xx_hal_crc.h
│   │   │   │       │   ├── stm32f4xx_hal_cryp.h
│   │   │   │       │   ├── stm32f4xx_hal_cryp_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_dac.h
│   │   │   │       │   ├── stm32f4xx_hal_dac_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_dcmi.h
│   │   │   │       │   ├── stm32f4xx_hal_dcmi_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_def.h
│   │   │   │       │   ├── stm32f4xx_hal_dfsdm.h
│   │   │   │       │   ├── stm32f4xx_hal_dma.h
│   │   │   │       │   ├── stm32f4xx_hal_dma2d.h
│   │   │   │       │   ├── stm32f4xx_hal_dma_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_dsi.h
│   │   │   │       │   ├── stm32f4xx_hal_eth.h
│   │   │   │       │   ├── stm32f4xx_hal_flash.h
│   │   │   │       │   ├── stm32f4xx_hal_flash_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_flash_ramfunc.h
│   │   │   │       │   ├── stm32f4xx_hal_fmpi2c.h
│   │   │   │       │   ├── stm32f4xx_hal_fmpi2c_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_gpio.h
│   │   │   │       │   ├── stm32f4xx_hal_gpio_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_hash.h
│   │   │   │       │   ├── stm32f4xx_hal_hash_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_hcd.h
│   │   │   │       │   ├── stm32f4xx_hal_i2c.h
│   │   │   │       │   ├── stm32f4xx_hal_i2c_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_i2s.h
│   │   │   │       │   ├── stm32f4xx_hal_i2s_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_irda.h
│   │   │   │       │   ├── stm32f4xx_hal_iwdg.h
│   │   │   │       │   ├── stm32f4xx_hal_lptim.h
│   │   │   │       │   ├── stm32f4xx_hal_ltdc.h
│   │   │   │       │   ├── stm32f4xx_hal_ltdc_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_mmc.h
│   │   │   │       │   ├── stm32f4xx_hal_nand.h
│   │   │   │       │   ├── stm32f4xx_hal_nor.h
│   │   │   │       │   ├── stm32f4xx_hal_pccard.h
│   │   │   │       │   ├── stm32f4xx_hal_pcd.h
│   │   │   │       │   ├── stm32f4xx_hal_pcd_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_pwr.h
│   │   │   │       │   ├── stm32f4xx_hal_pwr_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_qspi.h
│   │   │   │       │   ├── stm32f4xx_hal_rcc.h
│   │   │   │       │   ├── stm32f4xx_hal_rcc_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_rng.h
│   │   │   │       │   ├── stm32f4xx_hal_rtc.h
│   │   │   │       │   ├── stm32f4xx_hal_rtc_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_sai.h
│   │   │   │       │   ├── stm32f4xx_hal_sai_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_sd.h
│   │   │   │       │   ├── stm32f4xx_hal_sdram.h
│   │   │   │       │   ├── stm32f4xx_hal_smartcard.h
│   │   │   │       │   ├── stm32f4xx_hal_spdifrx.h
│   │   │   │       │   ├── stm32f4xx_hal_spi.h
│   │   │   │       │   ├── stm32f4xx_hal_sram.h
│   │   │   │       │   ├── stm32f4xx_hal_tim.h
│   │   │   │       │   ├── stm32f4xx_hal_tim_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_uart.h
│   │   │   │       │   ├── stm32f4xx_hal_usart.h
│   │   │   │       │   ├── stm32f4xx_hal_wwdg.h
│   │   │   │       │   ├── stm32f4xx_ll_adc.h
│   │   │   │       │   ├── stm32f4xx_ll_bus.h
│   │   │   │       │   ├── stm32f4xx_ll_cortex.h
│   │   │   │       │   ├── stm32f4xx_ll_crc.h
│   │   │   │       │   ├── stm32f4xx_ll_dac.h
│   │   │   │       │   ├── stm32f4xx_ll_dma.h
│   │   │   │       │   ├── stm32f4xx_ll_dma2d.h
│   │   │   │       │   ├── stm32f4xx_ll_exti.h
│   │   │   │       │   ├── stm32f4xx_ll_fmc.h
│   │   │   │       │   ├── stm32f4xx_ll_fsmc.h
│   │   │   │       │   ├── stm32f4xx_ll_gpio.h
│   │   │   │       │   ├── stm32f4xx_ll_i2c.h
│   │   │   │       │   ├── stm32f4xx_ll_iwdg.h
│   │   │   │       │   ├── stm32f4xx_ll_lptim.h
│   │   │   │       │   ├── stm32f4xx_ll_pwr.h
│   │   │   │       │   ├── stm32f4xx_ll_rcc.h
│   │   │   │       │   ├── stm32f4xx_ll_rng.h
│   │   │   │       │   ├── stm32f4xx_ll_rtc.h
│   │   │   │       │   ├── stm32f4xx_ll_sdmmc.h
│   │   │   │       │   ├── stm32f4xx_ll_spi.h
│   │   │   │       │   ├── stm32f4xx_ll_system.h
│   │   │   │       │   ├── stm32f4xx_ll_tim.h
│   │   │   │       │   ├── stm32f4xx_ll_usart.h
│   │   │   │       │   ├── stm32f4xx_ll_usb.h
│   │   │   │       │   ├── stm32f4xx_ll_utils.h
│   │   │   │       │   └── stm32f4xx_ll_wwdg.h
│   │   │   │       ├── Release_Notes.html
│   │   │   │       └── Src
│   │   │   │           ├── Legacy
│   │   │   │           │   └── stm32f4xx_hal_can.c
│   │   │   │           ├── stm32f4xx_hal.c
│   │   │   │           ├── stm32f4xx_hal_adc.c
│   │   │   │           ├── stm32f4xx_hal_adc_ex.c
│   │   │   │           ├── stm32f4xx_hal_can.c
│   │   │   │           ├── stm32f4xx_hal_cec.c
│   │   │   │           ├── stm32f4xx_hal_cortex.c
│   │   │   │           ├── stm32f4xx_hal_crc.c
│   │   │   │           ├── stm32f4xx_hal_cryp.c
│   │   │   │           ├── stm32f4xx_hal_cryp_ex.c
│   │   │   │           ├── stm32f4xx_hal_dac.c
│   │   │   │           ├── stm32f4xx_hal_dac_ex.c
│   │   │   │           ├── stm32f4xx_hal_dcmi.c
│   │   │   │           ├── stm32f4xx_hal_dcmi_ex.c
│   │   │   │           ├── stm32f4xx_hal_dfsdm.c
│   │   │   │           ├── stm32f4xx_hal_dma.c
│   │   │   │           ├── stm32f4xx_hal_dma2d.c
│   │   │   │           ├── stm32f4xx_hal_dma_ex.c
│   │   │   │           ├── stm32f4xx_hal_dsi.c
│   │   │   │           ├── stm32f4xx_hal_eth.c
│   │   │   │           ├── stm32f4xx_hal_flash.c
│   │   │   │           ├── stm32f4xx_hal_flash_ex.c
│   │   │   │           ├── stm32f4xx_hal_flash_ramfunc.c
│   │   │   │           ├── stm32f4xx_hal_fmpi2c.c
│   │   │   │           ├── stm32f4xx_hal_fmpi2c_ex.c
│   │   │   │           ├── stm32f4xx_hal_gpio.c
│   │   │   │           ├── stm32f4xx_hal_hash.c
│   │   │   │           ├── stm32f4xx_hal_hash_ex.c
│   │   │   │           ├── stm32f4xx_hal_hcd.c
│   │   │   │           ├── stm32f4xx_hal_i2c.c
│   │   │   │           ├── stm32f4xx_hal_i2c_ex.c
│   │   │   │           ├── stm32f4xx_hal_i2s.c
│   │   │   │           ├── stm32f4xx_hal_i2s_ex.c
│   │   │   │           ├── stm32f4xx_hal_irda.c
│   │   │   │           ├── stm32f4xx_hal_iwdg.c
│   │   │   │           ├── stm32f4xx_hal_lptim.c
│   │   │   │           ├── stm32f4xx_hal_ltdc.c
│   │   │   │           ├── stm32f4xx_hal_ltdc_ex.c
│   │   │   │           ├── stm32f4xx_hal_mmc.c
│   │   │   │           ├── stm32f4xx_hal_msp_template.c
│   │   │   │           ├── stm32f4xx_hal_nand.c
│   │   │   │           ├── stm32f4xx_hal_nor.c
│   │   │   │           ├── stm32f4xx_hal_pccard.c
│   │   │   │           ├── stm32f4xx_hal_pcd.c
│   │   │   │           ├── stm32f4xx_hal_pcd_ex.c
│   │   │   │           ├── stm32f4xx_hal_pwr.c
│   │   │   │           ├── stm32f4xx_hal_pwr_ex.c
│   │   │   │           ├── stm32f4xx_hal_qspi.c
│   │   │   │           ├── stm32f4xx_hal_rcc.c
│   │   │   │           ├── stm32f4xx_hal_rcc_ex.c
│   │   │   │           ├── stm32f4xx_hal_rng.c
│   │   │   │           ├── stm32f4xx_hal_rtc.c
│   │   │   │           ├── stm32f4xx_hal_rtc_ex.c
│   │   │   │           ├── stm32f4xx_hal_sai.c
│   │   │   │           ├── stm32f4xx_hal_sai_ex.c
│   │   │   │           ├── stm32f4xx_hal_sd.c
│   │   │   │           ├── stm32f4xx_hal_sdram.c
│   │   │   │           ├── stm32f4xx_hal_smartcard.c
│   │   │   │           ├── stm32f4xx_hal_spdifrx.c
│   │   │   │           ├── stm32f4xx_hal_spi.c
│   │   │   │           ├── stm32f4xx_hal_sram.c
│   │   │   │           ├── stm32f4xx_hal_tim.c
│   │   │   │           ├── stm32f4xx_hal_tim_ex.c
│   │   │   │           ├── stm32f4xx_hal_timebase_rtc_alarm_template.c
│   │   │   │           ├── stm32f4xx_hal_timebase_rtc_wakeup_template.c
│   │   │   │           ├── stm32f4xx_hal_timebase_tim_template.c
│   │   │   │           ├── stm32f4xx_hal_uart.c
│   │   │   │           ├── stm32f4xx_hal_usart.c
│   │   │   │           ├── stm32f4xx_hal_wwdg.c
│   │   │   │           ├── stm32f4xx_ll_adc.c
│   │   │   │           ├── stm32f4xx_ll_crc.c
│   │   │   │           ├── stm32f4xx_ll_dac.c
│   │   │   │           ├── stm32f4xx_ll_dma.c
│   │   │   │           ├── stm32f4xx_ll_dma2d.c
│   │   │   │           ├── stm32f4xx_ll_exti.c
│   │   │   │           ├── stm32f4xx_ll_fmc.c
│   │   │   │           ├── stm32f4xx_ll_fsmc.c
│   │   │   │           ├── stm32f4xx_ll_gpio.c
│   │   │   │           ├── stm32f4xx_ll_i2c.c
│   │   │   │           ├── stm32f4xx_ll_lptim.c
│   │   │   │           ├── stm32f4xx_ll_pwr.c
│   │   │   │           ├── stm32f4xx_ll_rcc.c
│   │   │   │           ├── stm32f4xx_ll_rng.c
│   │   │   │           ├── stm32f4xx_ll_rtc.c
│   │   │   │           ├── stm32f4xx_ll_sdmmc.c
│   │   │   │           ├── stm32f4xx_ll_spi.c
│   │   │   │           ├── stm32f4xx_ll_tim.c
│   │   │   │           ├── stm32f4xx_ll_usart.c
│   │   │   │           ├── stm32f4xx_ll_usb.c
│   │   │   │           └── stm32f4xx_ll_utils.c
│   │   │   ├── Program
│   │   │   │   ├── algorithms
│   │   │   │   │   ├── mathUnit.c
│   │   │   │   │   └── mathUnit.h
│   │   │   │   ├── boardConfig.h
│   │   │   │   ├── drivers
│   │   │   │   │   ├── stm32f4_adc.c
│   │   │   │   │   ├── stm32f4_adc.h
│   │   │   │   │   ├── stm32f4_delay.c
│   │   │   │   │   ├── stm32f4_delay.h
│   │   │   │   │   ├── stm32f4_msp.c
│   │   │   │   │   ├── stm32f4_system.h
│   │   │   │   │   ├── stm32f4_tim.c
│   │   │   │   │   ├── stm32f4_tim.h
│   │   │   │   │   ├── stm32f4_uart.c
│   │   │   │   │   └── stm32f4_uart.h
│   │   │   │   ├── main.c
│   │   │   │   ├── modules
│   │   │   │   │   ├── kSerial.c
│   │   │   │   │   ├── kSerial.h
│   │   │   │   │   ├── serial.c
│   │   │   │   │   └── serial.h
│   │   │   │   ├── stm32f4xx_bsp.c
│   │   │   │   ├── stm32f4xx_bsp.h
│   │   │   │   ├── stm32f4xx_hal_conf.h
│   │   │   │   └── stm32f4xx_it.c
│   │   │   ├── Project
│   │   │   │   ├── ClearFile.bat
│   │   │   │   ├── DebugConfig
│   │   │   │   │   └── STM32F411C_STM32F411CEUx.dbgconf
│   │   │   │   ├── JLinkSettings.ini
│   │   │   │   ├── ProjSTM32.uvguix.Hom
│   │   │   │   ├── ProjSTM32.uvoptx
│   │   │   │   ├── ProjSTM32.uvprojx
│   │   │   │   └── RTE
│   │   │   │       └── _STM32F411C
│   │   │   │           └── RTE_Components.h
│   │   │   ├── kOscilloscope.m
│   │   │   ├── kSerial.m
│   │   │   ├── kSerialOscilloscope.m
│   │   │   ├── serialOscilloscope.m
│   │   │   └── serialPacket.m
│   │   ├── STM_Peripheral_EXTI
│   │   │   ├── Libraries
│   │   │   │   ├── CMSIS
│   │   │   │   │   ├── CMSIS_END_USER_LICENCE_AGREEMENT.pdf
│   │   │   │   │   ├── DSP_Lib
│   │   │   │   │   │   └── license.txt
│   │   │   │   │   ├── Device
│   │   │   │   │   │   ├── Release_Notes.html
│   │   │   │   │   │   ├── startup_stm32f411xe.s
│   │   │   │   │   │   ├── stm32f411xe.h
│   │   │   │   │   │   ├── stm32f4xx.h
│   │   │   │   │   │   ├── system_stm32f4xx.c
│   │   │   │   │   │   └── system_stm32f4xx.h
│   │   │   │   │   └── Include
│   │   │   │   │       ├── arm_common_tables.h
│   │   │   │   │       ├── arm_const_structs.h
│   │   │   │   │       ├── arm_math.h
│   │   │   │   │       ├── cmsis_armcc.h
│   │   │   │   │       ├── cmsis_armcc_V6.h
│   │   │   │   │       ├── cmsis_gcc.h
│   │   │   │   │       ├── core_cm4.h
│   │   │   │   │       ├── core_cmFunc.h
│   │   │   │   │       ├── core_cmInstr.h
│   │   │   │   │       ├── core_cmSimd.h
│   │   │   │   │       ├── core_sc000.h
│   │   │   │   │       └── core_sc300.h
│   │   │   │   └── STM32F4xx_HAL_Driver
│   │   │   │       ├── Inc
│   │   │   │       │   ├── Legacy
│   │   │   │       │   │   ├── stm32_hal_legacy.h
│   │   │   │       │   │   └── stm32f4xx_hal_can_legacy.h
│   │   │   │       │   ├── stm32_assert_template.h
│   │   │   │       │   ├── stm32f4xx_hal.h
│   │   │   │       │   ├── stm32f4xx_hal_adc.h
│   │   │   │       │   ├── stm32f4xx_hal_adc_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_can.h
│   │   │   │       │   ├── stm32f4xx_hal_cec.h
│   │   │   │       │   ├── stm32f4xx_hal_conf_template.h
│   │   │   │       │   ├── stm32f4xx_hal_cortex.h
│   │   │   │       │   ├── stm32f4xx_hal_crc.h
│   │   │   │       │   ├── stm32f4xx_hal_cryp.h
│   │   │   │       │   ├── stm32f4xx_hal_cryp_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_dac.h
│   │   │   │       │   ├── stm32f4xx_hal_dac_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_dcmi.h
│   │   │   │       │   ├── stm32f4xx_hal_dcmi_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_def.h
│   │   │   │       │   ├── stm32f4xx_hal_dfsdm.h
│   │   │   │       │   ├── stm32f4xx_hal_dma.h
│   │   │   │       │   ├── stm32f4xx_hal_dma2d.h
│   │   │   │       │   ├── stm32f4xx_hal_dma_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_dsi.h
│   │   │   │       │   ├── stm32f4xx_hal_eth.h
│   │   │   │       │   ├── stm32f4xx_hal_flash.h
│   │   │   │       │   ├── stm32f4xx_hal_flash_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_flash_ramfunc.h
│   │   │   │       │   ├── stm32f4xx_hal_fmpi2c.h
│   │   │   │       │   ├── stm32f4xx_hal_fmpi2c_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_gpio.h
│   │   │   │       │   ├── stm32f4xx_hal_gpio_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_hash.h
│   │   │   │       │   ├── stm32f4xx_hal_hash_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_hcd.h
│   │   │   │       │   ├── stm32f4xx_hal_i2c.h
│   │   │   │       │   ├── stm32f4xx_hal_i2c_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_i2s.h
│   │   │   │       │   ├── stm32f4xx_hal_i2s_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_irda.h
│   │   │   │       │   ├── stm32f4xx_hal_iwdg.h
│   │   │   │       │   ├── stm32f4xx_hal_lptim.h
│   │   │   │       │   ├── stm32f4xx_hal_ltdc.h
│   │   │   │       │   ├── stm32f4xx_hal_ltdc_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_mmc.h
│   │   │   │       │   ├── stm32f4xx_hal_nand.h
│   │   │   │       │   ├── stm32f4xx_hal_nor.h
│   │   │   │       │   ├── stm32f4xx_hal_pccard.h
│   │   │   │       │   ├── stm32f4xx_hal_pcd.h
│   │   │   │       │   ├── stm32f4xx_hal_pcd_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_pwr.h
│   │   │   │       │   ├── stm32f4xx_hal_pwr_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_qspi.h
│   │   │   │       │   ├── stm32f4xx_hal_rcc.h
│   │   │   │       │   ├── stm32f4xx_hal_rcc_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_rng.h
│   │   │   │       │   ├── stm32f4xx_hal_rtc.h
│   │   │   │       │   ├── stm32f4xx_hal_rtc_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_sai.h
│   │   │   │       │   ├── stm32f4xx_hal_sai_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_sd.h
│   │   │   │       │   ├── stm32f4xx_hal_sdram.h
│   │   │   │       │   ├── stm32f4xx_hal_smartcard.h
│   │   │   │       │   ├── stm32f4xx_hal_spdifrx.h
│   │   │   │       │   ├── stm32f4xx_hal_spi.h
│   │   │   │       │   ├── stm32f4xx_hal_sram.h
│   │   │   │       │   ├── stm32f4xx_hal_tim.h
│   │   │   │       │   ├── stm32f4xx_hal_tim_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_uart.h
│   │   │   │       │   ├── stm32f4xx_hal_usart.h
│   │   │   │       │   ├── stm32f4xx_hal_wwdg.h
│   │   │   │       │   ├── stm32f4xx_ll_adc.h
│   │   │   │       │   ├── stm32f4xx_ll_bus.h
│   │   │   │       │   ├── stm32f4xx_ll_cortex.h
│   │   │   │       │   ├── stm32f4xx_ll_crc.h
│   │   │   │       │   ├── stm32f4xx_ll_dac.h
│   │   │   │       │   ├── stm32f4xx_ll_dma.h
│   │   │   │       │   ├── stm32f4xx_ll_dma2d.h
│   │   │   │       │   ├── stm32f4xx_ll_exti.h
│   │   │   │       │   ├── stm32f4xx_ll_fmc.h
│   │   │   │       │   ├── stm32f4xx_ll_fsmc.h
│   │   │   │       │   ├── stm32f4xx_ll_gpio.h
│   │   │   │       │   ├── stm32f4xx_ll_i2c.h
│   │   │   │       │   ├── stm32f4xx_ll_iwdg.h
│   │   │   │       │   ├── stm32f4xx_ll_lptim.h
│   │   │   │       │   ├── stm32f4xx_ll_pwr.h
│   │   │   │       │   ├── stm32f4xx_ll_rcc.h
│   │   │   │       │   ├── stm32f4xx_ll_rng.h
│   │   │   │       │   ├── stm32f4xx_ll_rtc.h
│   │   │   │       │   ├── stm32f4xx_ll_sdmmc.h
│   │   │   │       │   ├── stm32f4xx_ll_spi.h
│   │   │   │       │   ├── stm32f4xx_ll_system.h
│   │   │   │       │   ├── stm32f4xx_ll_tim.h
│   │   │   │       │   ├── stm32f4xx_ll_usart.h
│   │   │   │       │   ├── stm32f4xx_ll_usb.h
│   │   │   │       │   ├── stm32f4xx_ll_utils.h
│   │   │   │       │   └── stm32f4xx_ll_wwdg.h
│   │   │   │       ├── Release_Notes.html
│   │   │   │       └── Src
│   │   │   │           ├── Legacy
│   │   │   │           │   └── stm32f4xx_hal_can.c
│   │   │   │           ├── stm32f4xx_hal.c
│   │   │   │           ├── stm32f4xx_hal_adc.c
│   │   │   │           ├── stm32f4xx_hal_adc_ex.c
│   │   │   │           ├── stm32f4xx_hal_can.c
│   │   │   │           ├── stm32f4xx_hal_cec.c
│   │   │   │           ├── stm32f4xx_hal_cortex.c
│   │   │   │           ├── stm32f4xx_hal_crc.c
│   │   │   │           ├── stm32f4xx_hal_cryp.c
│   │   │   │           ├── stm32f4xx_hal_cryp_ex.c
│   │   │   │           ├── stm32f4xx_hal_dac.c
│   │   │   │           ├── stm32f4xx_hal_dac_ex.c
│   │   │   │           ├── stm32f4xx_hal_dcmi.c
│   │   │   │           ├── stm32f4xx_hal_dcmi_ex.c
│   │   │   │           ├── stm32f4xx_hal_dfsdm.c
│   │   │   │           ├── stm32f4xx_hal_dma.c
│   │   │   │           ├── stm32f4xx_hal_dma2d.c
│   │   │   │           ├── stm32f4xx_hal_dma_ex.c
│   │   │   │           ├── stm32f4xx_hal_dsi.c
│   │   │   │           ├── stm32f4xx_hal_eth.c
│   │   │   │           ├── stm32f4xx_hal_flash.c
│   │   │   │           ├── stm32f4xx_hal_flash_ex.c
│   │   │   │           ├── stm32f4xx_hal_flash_ramfunc.c
│   │   │   │           ├── stm32f4xx_hal_fmpi2c.c
│   │   │   │           ├── stm32f4xx_hal_fmpi2c_ex.c
│   │   │   │           ├── stm32f4xx_hal_gpio.c
│   │   │   │           ├── stm32f4xx_hal_hash.c
│   │   │   │           ├── stm32f4xx_hal_hash_ex.c
│   │   │   │           ├── stm32f4xx_hal_hcd.c
│   │   │   │           ├── stm32f4xx_hal_i2c.c
│   │   │   │           ├── stm32f4xx_hal_i2c_ex.c
│   │   │   │           ├── stm32f4xx_hal_i2s.c
│   │   │   │           ├── stm32f4xx_hal_i2s_ex.c
│   │   │   │           ├── stm32f4xx_hal_irda.c
│   │   │   │           ├── stm32f4xx_hal_iwdg.c
│   │   │   │           ├── stm32f4xx_hal_lptim.c
│   │   │   │           ├── stm32f4xx_hal_ltdc.c
│   │   │   │           ├── stm32f4xx_hal_ltdc_ex.c
│   │   │   │           ├── stm32f4xx_hal_mmc.c
│   │   │   │           ├── stm32f4xx_hal_msp_template.c
│   │   │   │           ├── stm32f4xx_hal_nand.c
│   │   │   │           ├── stm32f4xx_hal_nor.c
│   │   │   │           ├── stm32f4xx_hal_pccard.c
│   │   │   │           ├── stm32f4xx_hal_pcd.c
│   │   │   │           ├── stm32f4xx_hal_pcd_ex.c
│   │   │   │           ├── stm32f4xx_hal_pwr.c
│   │   │   │           ├── stm32f4xx_hal_pwr_ex.c
│   │   │   │           ├── stm32f4xx_hal_qspi.c
│   │   │   │           ├── stm32f4xx_hal_rcc.c
│   │   │   │           ├── stm32f4xx_hal_rcc_ex.c
│   │   │   │           ├── stm32f4xx_hal_rng.c
│   │   │   │           ├── stm32f4xx_hal_rtc.c
│   │   │   │           ├── stm32f4xx_hal_rtc_ex.c
│   │   │   │           ├── stm32f4xx_hal_sai.c
│   │   │   │           ├── stm32f4xx_hal_sai_ex.c
│   │   │   │           ├── stm32f4xx_hal_sd.c
│   │   │   │           ├── stm32f4xx_hal_sdram.c
│   │   │   │           ├── stm32f4xx_hal_smartcard.c
│   │   │   │           ├── stm32f4xx_hal_spdifrx.c
│   │   │   │           ├── stm32f4xx_hal_spi.c
│   │   │   │           ├── stm32f4xx_hal_sram.c
│   │   │   │           ├── stm32f4xx_hal_tim.c
│   │   │   │           ├── stm32f4xx_hal_tim_ex.c
│   │   │   │           ├── stm32f4xx_hal_timebase_rtc_alarm_template.c
│   │   │   │           ├── stm32f4xx_hal_timebase_rtc_wakeup_template.c
│   │   │   │           ├── stm32f4xx_hal_timebase_tim_template.c
│   │   │   │           ├── stm32f4xx_hal_uart.c
│   │   │   │           ├── stm32f4xx_hal_usart.c
│   │   │   │           ├── stm32f4xx_hal_wwdg.c
│   │   │   │           ├── stm32f4xx_ll_adc.c
│   │   │   │           ├── stm32f4xx_ll_crc.c
│   │   │   │           ├── stm32f4xx_ll_dac.c
│   │   │   │           ├── stm32f4xx_ll_dma.c
│   │   │   │           ├── stm32f4xx_ll_dma2d.c
│   │   │   │           ├── stm32f4xx_ll_exti.c
│   │   │   │           ├── stm32f4xx_ll_fmc.c
│   │   │   │           ├── stm32f4xx_ll_fsmc.c
│   │   │   │           ├── stm32f4xx_ll_gpio.c
│   │   │   │           ├── stm32f4xx_ll_i2c.c
│   │   │   │           ├── stm32f4xx_ll_lptim.c
│   │   │   │           ├── stm32f4xx_ll_pwr.c
│   │   │   │           ├── stm32f4xx_ll_rcc.c
│   │   │   │           ├── stm32f4xx_ll_rng.c
│   │   │   │           ├── stm32f4xx_ll_rtc.c
│   │   │   │           ├── stm32f4xx_ll_sdmmc.c
│   │   │   │           ├── stm32f4xx_ll_spi.c
│   │   │   │           ├── stm32f4xx_ll_tim.c
│   │   │   │           ├── stm32f4xx_ll_usart.c
│   │   │   │           ├── stm32f4xx_ll_usb.c
│   │   │   │           └── stm32f4xx_ll_utils.c
│   │   │   ├── Program
│   │   │   │   ├── algorithms
│   │   │   │   │   ├── mathUnit.c
│   │   │   │   │   └── mathUnit.h
│   │   │   │   ├── boardConfig.h
│   │   │   │   ├── drivers
│   │   │   │   │   ├── stm32f4_delay.c
│   │   │   │   │   ├── stm32f4_delay.h
│   │   │   │   │   ├── stm32f4_exti.c
│   │   │   │   │   ├── stm32f4_exti.h
│   │   │   │   │   ├── stm32f4_msp.c
│   │   │   │   │   └── stm32f4_system.h
│   │   │   │   ├── main.c
│   │   │   │   ├── stm32f4xx_bsp.c
│   │   │   │   ├── stm32f4xx_bsp.h
│   │   │   │   ├── stm32f4xx_hal_conf.h
│   │   │   │   └── stm32f4xx_it.c
│   │   │   └── Project
│   │   │       ├── ClearFile.bat
│   │   │       ├── DebugConfig
│   │   │       │   └── STM32F411C_STM32F411CEUx.dbgconf
│   │   │       ├── JLinkSettings.ini
│   │   │       ├── ProjSTM32.uvguix.Hom
│   │   │       ├── ProjSTM32.uvoptx
│   │   │       ├── ProjSTM32.uvprojx
│   │   │       └── RTE
│   │   │           └── _STM32F411C
│   │   │               └── RTE_Components.h
│   │   ├── STM_Peripheral_FLASH
│   │   │   ├── Libraries
│   │   │   │   ├── CMSIS
│   │   │   │   │   ├── CMSIS_END_USER_LICENCE_AGREEMENT.pdf
│   │   │   │   │   ├── DSP_Lib
│   │   │   │   │   │   └── license.txt
│   │   │   │   │   ├── Device
│   │   │   │   │   │   ├── Release_Notes.html
│   │   │   │   │   │   ├── startup_stm32f411xe.s
│   │   │   │   │   │   ├── stm32f411xe.h
│   │   │   │   │   │   ├── stm32f4xx.h
│   │   │   │   │   │   ├── system_stm32f4xx.c
│   │   │   │   │   │   └── system_stm32f4xx.h
│   │   │   │   │   └── Include
│   │   │   │   │       ├── arm_common_tables.h
│   │   │   │   │       ├── arm_const_structs.h
│   │   │   │   │       ├── arm_math.h
│   │   │   │   │       ├── cmsis_armcc.h
│   │   │   │   │       ├── cmsis_armcc_V6.h
│   │   │   │   │       ├── cmsis_gcc.h
│   │   │   │   │       ├── core_cm4.h
│   │   │   │   │       ├── core_cmFunc.h
│   │   │   │   │       ├── core_cmInstr.h
│   │   │   │   │       ├── core_cmSimd.h
│   │   │   │   │       ├── core_sc000.h
│   │   │   │   │       └── core_sc300.h
│   │   │   │   └── STM32F4xx_HAL_Driver
│   │   │   │       ├── Inc
│   │   │   │       │   ├── Legacy
│   │   │   │       │   │   ├── stm32_hal_legacy.h
│   │   │   │       │   │   └── stm32f4xx_hal_can_legacy.h
│   │   │   │       │   ├── stm32_assert_template.h
│   │   │   │       │   ├── stm32f4xx_hal.h
│   │   │   │       │   ├── stm32f4xx_hal_adc.h
│   │   │   │       │   ├── stm32f4xx_hal_adc_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_can.h
│   │   │   │       │   ├── stm32f4xx_hal_cec.h
│   │   │   │       │   ├── stm32f4xx_hal_conf_template.h
│   │   │   │       │   ├── stm32f4xx_hal_cortex.h
│   │   │   │       │   ├── stm32f4xx_hal_crc.h
│   │   │   │       │   ├── stm32f4xx_hal_cryp.h
│   │   │   │       │   ├── stm32f4xx_hal_cryp_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_dac.h
│   │   │   │       │   ├── stm32f4xx_hal_dac_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_dcmi.h
│   │   │   │       │   ├── stm32f4xx_hal_dcmi_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_def.h
│   │   │   │       │   ├── stm32f4xx_hal_dfsdm.h
│   │   │   │       │   ├── stm32f4xx_hal_dma.h
│   │   │   │       │   ├── stm32f4xx_hal_dma2d.h
│   │   │   │       │   ├── stm32f4xx_hal_dma_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_dsi.h
│   │   │   │       │   ├── stm32f4xx_hal_eth.h
│   │   │   │       │   ├── stm32f4xx_hal_flash.h
│   │   │   │       │   ├── stm32f4xx_hal_flash_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_flash_ramfunc.h
│   │   │   │       │   ├── stm32f4xx_hal_fmpi2c.h
│   │   │   │       │   ├── stm32f4xx_hal_fmpi2c_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_gpio.h
│   │   │   │       │   ├── stm32f4xx_hal_gpio_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_hash.h
│   │   │   │       │   ├── stm32f4xx_hal_hash_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_hcd.h
│   │   │   │       │   ├── stm32f4xx_hal_i2c.h
│   │   │   │       │   ├── stm32f4xx_hal_i2c_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_i2s.h
│   │   │   │       │   ├── stm32f4xx_hal_i2s_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_irda.h
│   │   │   │       │   ├── stm32f4xx_hal_iwdg.h
│   │   │   │       │   ├── stm32f4xx_hal_lptim.h
│   │   │   │       │   ├── stm32f4xx_hal_ltdc.h
│   │   │   │       │   ├── stm32f4xx_hal_ltdc_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_mmc.h
│   │   │   │       │   ├── stm32f4xx_hal_nand.h
│   │   │   │       │   ├── stm32f4xx_hal_nor.h
│   │   │   │       │   ├── stm32f4xx_hal_pccard.h
│   │   │   │       │   ├── stm32f4xx_hal_pcd.h
│   │   │   │       │   ├── stm32f4xx_hal_pcd_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_pwr.h
│   │   │   │       │   ├── stm32f4xx_hal_pwr_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_qspi.h
│   │   │   │       │   ├── stm32f4xx_hal_rcc.h
│   │   │   │       │   ├── stm32f4xx_hal_rcc_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_rng.h
│   │   │   │       │   ├── stm32f4xx_hal_rtc.h
│   │   │   │       │   ├── stm32f4xx_hal_rtc_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_sai.h
│   │   │   │       │   ├── stm32f4xx_hal_sai_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_sd.h
│   │   │   │       │   ├── stm32f4xx_hal_sdram.h
│   │   │   │       │   ├── stm32f4xx_hal_smartcard.h
│   │   │   │       │   ├── stm32f4xx_hal_spdifrx.h
│   │   │   │       │   ├── stm32f4xx_hal_spi.h
│   │   │   │       │   ├── stm32f4xx_hal_sram.h
│   │   │   │       │   ├── stm32f4xx_hal_tim.h
│   │   │   │       │   ├── stm32f4xx_hal_tim_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_uart.h
│   │   │   │       │   ├── stm32f4xx_hal_usart.h
│   │   │   │       │   ├── stm32f4xx_hal_wwdg.h
│   │   │   │       │   ├── stm32f4xx_ll_adc.h
│   │   │   │       │   ├── stm32f4xx_ll_bus.h
│   │   │   │       │   ├── stm32f4xx_ll_cortex.h
│   │   │   │       │   ├── stm32f4xx_ll_crc.h
│   │   │   │       │   ├── stm32f4xx_ll_dac.h
│   │   │   │       │   ├── stm32f4xx_ll_dma.h
│   │   │   │       │   ├── stm32f4xx_ll_dma2d.h
│   │   │   │       │   ├── stm32f4xx_ll_exti.h
│   │   │   │       │   ├── stm32f4xx_ll_fmc.h
│   │   │   │       │   ├── stm32f4xx_ll_fsmc.h
│   │   │   │       │   ├── stm32f4xx_ll_gpio.h
│   │   │   │       │   ├── stm32f4xx_ll_i2c.h
│   │   │   │       │   ├── stm32f4xx_ll_iwdg.h
│   │   │   │       │   ├── stm32f4xx_ll_lptim.h
│   │   │   │       │   ├── stm32f4xx_ll_pwr.h
│   │   │   │       │   ├── stm32f4xx_ll_rcc.h
│   │   │   │       │   ├── stm32f4xx_ll_rng.h
│   │   │   │       │   ├── stm32f4xx_ll_rtc.h
│   │   │   │       │   ├── stm32f4xx_ll_sdmmc.h
│   │   │   │       │   ├── stm32f4xx_ll_spi.h
│   │   │   │       │   ├── stm32f4xx_ll_system.h
│   │   │   │       │   ├── stm32f4xx_ll_tim.h
│   │   │   │       │   ├── stm32f4xx_ll_usart.h
│   │   │   │       │   ├── stm32f4xx_ll_usb.h
│   │   │   │       │   ├── stm32f4xx_ll_utils.h
│   │   │   │       │   └── stm32f4xx_ll_wwdg.h
│   │   │   │       ├── Release_Notes.html
│   │   │   │       └── Src
│   │   │   │           ├── Legacy
│   │   │   │           │   └── stm32f4xx_hal_can.c
│   │   │   │           ├── stm32f4xx_hal.c
│   │   │   │           ├── stm32f4xx_hal_adc.c
│   │   │   │           ├── stm32f4xx_hal_adc_ex.c
│   │   │   │           ├── stm32f4xx_hal_can.c
│   │   │   │           ├── stm32f4xx_hal_cec.c
│   │   │   │           ├── stm32f4xx_hal_cortex.c
│   │   │   │           ├── stm32f4xx_hal_crc.c
│   │   │   │           ├── stm32f4xx_hal_cryp.c
│   │   │   │           ├── stm32f4xx_hal_cryp_ex.c
│   │   │   │           ├── stm32f4xx_hal_dac.c
│   │   │   │           ├── stm32f4xx_hal_dac_ex.c
│   │   │   │           ├── stm32f4xx_hal_dcmi.c
│   │   │   │           ├── stm32f4xx_hal_dcmi_ex.c
│   │   │   │           ├── stm32f4xx_hal_dfsdm.c
│   │   │   │           ├── stm32f4xx_hal_dma.c
│   │   │   │           ├── stm32f4xx_hal_dma2d.c
│   │   │   │           ├── stm32f4xx_hal_dma_ex.c
│   │   │   │           ├── stm32f4xx_hal_dsi.c
│   │   │   │           ├── stm32f4xx_hal_eth.c
│   │   │   │           ├── stm32f4xx_hal_flash.c
│   │   │   │           ├── stm32f4xx_hal_flash_ex.c
│   │   │   │           ├── stm32f4xx_hal_flash_ramfunc.c
│   │   │   │           ├── stm32f4xx_hal_fmpi2c.c
│   │   │   │           ├── stm32f4xx_hal_fmpi2c_ex.c
│   │   │   │           ├── stm32f4xx_hal_gpio.c
│   │   │   │           ├── stm32f4xx_hal_hash.c
│   │   │   │           ├── stm32f4xx_hal_hash_ex.c
│   │   │   │           ├── stm32f4xx_hal_hcd.c
│   │   │   │           ├── stm32f4xx_hal_i2c.c
│   │   │   │           ├── stm32f4xx_hal_i2c_ex.c
│   │   │   │           ├── stm32f4xx_hal_i2s.c
│   │   │   │           ├── stm32f4xx_hal_i2s_ex.c
│   │   │   │           ├── stm32f4xx_hal_irda.c
│   │   │   │           ├── stm32f4xx_hal_iwdg.c
│   │   │   │           ├── stm32f4xx_hal_lptim.c
│   │   │   │           ├── stm32f4xx_hal_ltdc.c
│   │   │   │           ├── stm32f4xx_hal_ltdc_ex.c
│   │   │   │           ├── stm32f4xx_hal_mmc.c
│   │   │   │           ├── stm32f4xx_hal_msp_template.c
│   │   │   │           ├── stm32f4xx_hal_nand.c
│   │   │   │           ├── stm32f4xx_hal_nor.c
│   │   │   │           ├── stm32f4xx_hal_pccard.c
│   │   │   │           ├── stm32f4xx_hal_pcd.c
│   │   │   │           ├── stm32f4xx_hal_pcd_ex.c
│   │   │   │           ├── stm32f4xx_hal_pwr.c
│   │   │   │           ├── stm32f4xx_hal_pwr_ex.c
│   │   │   │           ├── stm32f4xx_hal_qspi.c
│   │   │   │           ├── stm32f4xx_hal_rcc.c
│   │   │   │           ├── stm32f4xx_hal_rcc_ex.c
│   │   │   │           ├── stm32f4xx_hal_rng.c
│   │   │   │           ├── stm32f4xx_hal_rtc.c
│   │   │   │           ├── stm32f4xx_hal_rtc_ex.c
│   │   │   │           ├── stm32f4xx_hal_sai.c
│   │   │   │           ├── stm32f4xx_hal_sai_ex.c
│   │   │   │           ├── stm32f4xx_hal_sd.c
│   │   │   │           ├── stm32f4xx_hal_sdram.c
│   │   │   │           ├── stm32f4xx_hal_smartcard.c
│   │   │   │           ├── stm32f4xx_hal_spdifrx.c
│   │   │   │           ├── stm32f4xx_hal_spi.c
│   │   │   │           ├── stm32f4xx_hal_sram.c
│   │   │   │           ├── stm32f4xx_hal_tim.c
│   │   │   │           ├── stm32f4xx_hal_tim_ex.c
│   │   │   │           ├── stm32f4xx_hal_timebase_rtc_alarm_template.c
│   │   │   │           ├── stm32f4xx_hal_timebase_rtc_wakeup_template.c
│   │   │   │           ├── stm32f4xx_hal_timebase_tim_template.c
│   │   │   │           ├── stm32f4xx_hal_uart.c
│   │   │   │           ├── stm32f4xx_hal_usart.c
│   │   │   │           ├── stm32f4xx_hal_wwdg.c
│   │   │   │           ├── stm32f4xx_ll_adc.c
│   │   │   │           ├── stm32f4xx_ll_crc.c
│   │   │   │           ├── stm32f4xx_ll_dac.c
│   │   │   │           ├── stm32f4xx_ll_dma.c
│   │   │   │           ├── stm32f4xx_ll_dma2d.c
│   │   │   │           ├── stm32f4xx_ll_exti.c
│   │   │   │           ├── stm32f4xx_ll_fmc.c
│   │   │   │           ├── stm32f4xx_ll_fsmc.c
│   │   │   │           ├── stm32f4xx_ll_gpio.c
│   │   │   │           ├── stm32f4xx_ll_i2c.c
│   │   │   │           ├── stm32f4xx_ll_lptim.c
│   │   │   │           ├── stm32f4xx_ll_pwr.c
│   │   │   │           ├── stm32f4xx_ll_rcc.c
│   │   │   │           ├── stm32f4xx_ll_rng.c
│   │   │   │           ├── stm32f4xx_ll_rtc.c
│   │   │   │           ├── stm32f4xx_ll_sdmmc.c
│   │   │   │           ├── stm32f4xx_ll_spi.c
│   │   │   │           ├── stm32f4xx_ll_tim.c
│   │   │   │           ├── stm32f4xx_ll_usart.c
│   │   │   │           ├── stm32f4xx_ll_usb.c
│   │   │   │           └── stm32f4xx_ll_utils.c
│   │   │   ├── Program
│   │   │   │   ├── algorithms
│   │   │   │   │   ├── mathUnit.c
│   │   │   │   │   └── mathUnit.h
│   │   │   │   ├── boardConfig.h
│   │   │   │   ├── drivers
│   │   │   │   │   ├── stm32f4_delay.c
│   │   │   │   │   ├── stm32f4_delay.h
│   │   │   │   │   ├── stm32f4_flash.c
│   │   │   │   │   ├── stm32f4_flash.h
│   │   │   │   │   ├── stm32f4_msp.c
│   │   │   │   │   └── stm32f4_system.h
│   │   │   │   ├── main.c
│   │   │   │   ├── stm32f4xx_bsp.c
│   │   │   │   ├── stm32f4xx_bsp.h
│   │   │   │   ├── stm32f4xx_hal_conf.h
│   │   │   │   └── stm32f4xx_it.c
│   │   │   └── Project
│   │   │       ├── ClearFile.bat
│   │   │       ├── DebugConfig
│   │   │       │   └── STM32F411C_STM32F411CEUx.dbgconf
│   │   │       ├── JLinkSettings.ini
│   │   │       ├── ProjSTM32.uvguix.Hom
│   │   │       ├── ProjSTM32.uvoptx
│   │   │       ├── ProjSTM32.uvprojx
│   │   │       └── RTE
│   │   │           └── _STM32F411C
│   │   │               └── RTE_Components.h
│   │   ├── STM_Peripheral_GPIO
│   │   │   ├── Libraries
│   │   │   │   ├── CMSIS
│   │   │   │   │   ├── CMSIS_END_USER_LICENCE_AGREEMENT.pdf
│   │   │   │   │   ├── DSP_Lib
│   │   │   │   │   │   └── license.txt
│   │   │   │   │   ├── Device
│   │   │   │   │   │   ├── Release_Notes.html
│   │   │   │   │   │   ├── startup_stm32f411xe.s
│   │   │   │   │   │   ├── stm32f411xe.h
│   │   │   │   │   │   ├── stm32f4xx.h
│   │   │   │   │   │   ├── system_stm32f4xx.c
│   │   │   │   │   │   └── system_stm32f4xx.h
│   │   │   │   │   └── Include
│   │   │   │   │       ├── arm_common_tables.h
│   │   │   │   │       ├── arm_const_structs.h
│   │   │   │   │       ├── arm_math.h
│   │   │   │   │       ├── cmsis_armcc.h
│   │   │   │   │       ├── cmsis_armcc_V6.h
│   │   │   │   │       ├── cmsis_gcc.h
│   │   │   │   │       ├── core_cm4.h
│   │   │   │   │       ├── core_cmFunc.h
│   │   │   │   │       ├── core_cmInstr.h
│   │   │   │   │       ├── core_cmSimd.h
│   │   │   │   │       ├── core_sc000.h
│   │   │   │   │       └── core_sc300.h
│   │   │   │   └── STM32F4xx_HAL_Driver
│   │   │   │       ├── Inc
│   │   │   │       │   ├── Legacy
│   │   │   │       │   │   ├── stm32_hal_legacy.h
│   │   │   │       │   │   └── stm32f4xx_hal_can_legacy.h
│   │   │   │       │   ├── stm32_assert_template.h
│   │   │   │       │   ├── stm32f4xx_hal.h
│   │   │   │       │   ├── stm32f4xx_hal_adc.h
│   │   │   │       │   ├── stm32f4xx_hal_adc_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_can.h
│   │   │   │       │   ├── stm32f4xx_hal_cec.h
│   │   │   │       │   ├── stm32f4xx_hal_conf_template.h
│   │   │   │       │   ├── stm32f4xx_hal_cortex.h
│   │   │   │       │   ├── stm32f4xx_hal_crc.h
│   │   │   │       │   ├── stm32f4xx_hal_cryp.h
│   │   │   │       │   ├── stm32f4xx_hal_cryp_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_dac.h
│   │   │   │       │   ├── stm32f4xx_hal_dac_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_dcmi.h
│   │   │   │       │   ├── stm32f4xx_hal_dcmi_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_def.h
│   │   │   │       │   ├── stm32f4xx_hal_dfsdm.h
│   │   │   │       │   ├── stm32f4xx_hal_dma.h
│   │   │   │       │   ├── stm32f4xx_hal_dma2d.h
│   │   │   │       │   ├── stm32f4xx_hal_dma_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_dsi.h
│   │   │   │       │   ├── stm32f4xx_hal_eth.h
│   │   │   │       │   ├── stm32f4xx_hal_flash.h
│   │   │   │       │   ├── stm32f4xx_hal_flash_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_flash_ramfunc.h
│   │   │   │       │   ├── stm32f4xx_hal_fmpi2c.h
│   │   │   │       │   ├── stm32f4xx_hal_fmpi2c_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_gpio.h
│   │   │   │       │   ├── stm32f4xx_hal_gpio_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_hash.h
│   │   │   │       │   ├── stm32f4xx_hal_hash_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_hcd.h
│   │   │   │       │   ├── stm32f4xx_hal_i2c.h
│   │   │   │       │   ├── stm32f4xx_hal_i2c_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_i2s.h
│   │   │   │       │   ├── stm32f4xx_hal_i2s_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_irda.h
│   │   │   │       │   ├── stm32f4xx_hal_iwdg.h
│   │   │   │       │   ├── stm32f4xx_hal_lptim.h
│   │   │   │       │   ├── stm32f4xx_hal_ltdc.h
│   │   │   │       │   ├── stm32f4xx_hal_ltdc_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_mmc.h
│   │   │   │       │   ├── stm32f4xx_hal_nand.h
│   │   │   │       │   ├── stm32f4xx_hal_nor.h
│   │   │   │       │   ├── stm32f4xx_hal_pccard.h
│   │   │   │       │   ├── stm32f4xx_hal_pcd.h
│   │   │   │       │   ├── stm32f4xx_hal_pcd_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_pwr.h
│   │   │   │       │   ├── stm32f4xx_hal_pwr_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_qspi.h
│   │   │   │       │   ├── stm32f4xx_hal_rcc.h
│   │   │   │       │   ├── stm32f4xx_hal_rcc_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_rng.h
│   │   │   │       │   ├── stm32f4xx_hal_rtc.h
│   │   │   │       │   ├── stm32f4xx_hal_rtc_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_sai.h
│   │   │   │       │   ├── stm32f4xx_hal_sai_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_sd.h
│   │   │   │       │   ├── stm32f4xx_hal_sdram.h
│   │   │   │       │   ├── stm32f4xx_hal_smartcard.h
│   │   │   │       │   ├── stm32f4xx_hal_spdifrx.h
│   │   │   │       │   ├── stm32f4xx_hal_spi.h
│   │   │   │       │   ├── stm32f4xx_hal_sram.h
│   │   │   │       │   ├── stm32f4xx_hal_tim.h
│   │   │   │       │   ├── stm32f4xx_hal_tim_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_uart.h
│   │   │   │       │   ├── stm32f4xx_hal_usart.h
│   │   │   │       │   ├── stm32f4xx_hal_wwdg.h
│   │   │   │       │   ├── stm32f4xx_ll_adc.h
│   │   │   │       │   ├── stm32f4xx_ll_bus.h
│   │   │   │       │   ├── stm32f4xx_ll_cortex.h
│   │   │   │       │   ├── stm32f4xx_ll_crc.h
│   │   │   │       │   ├── stm32f4xx_ll_dac.h
│   │   │   │       │   ├── stm32f4xx_ll_dma.h
│   │   │   │       │   ├── stm32f4xx_ll_dma2d.h
│   │   │   │       │   ├── stm32f4xx_ll_exti.h
│   │   │   │       │   ├── stm32f4xx_ll_fmc.h
│   │   │   │       │   ├── stm32f4xx_ll_fsmc.h
│   │   │   │       │   ├── stm32f4xx_ll_gpio.h
│   │   │   │       │   ├── stm32f4xx_ll_i2c.h
│   │   │   │       │   ├── stm32f4xx_ll_iwdg.h
│   │   │   │       │   ├── stm32f4xx_ll_lptim.h
│   │   │   │       │   ├── stm32f4xx_ll_pwr.h
│   │   │   │       │   ├── stm32f4xx_ll_rcc.h
│   │   │   │       │   ├── stm32f4xx_ll_rng.h
│   │   │   │       │   ├── stm32f4xx_ll_rtc.h
│   │   │   │       │   ├── stm32f4xx_ll_sdmmc.h
│   │   │   │       │   ├── stm32f4xx_ll_spi.h
│   │   │   │       │   ├── stm32f4xx_ll_system.h
│   │   │   │       │   ├── stm32f4xx_ll_tim.h
│   │   │   │       │   ├── stm32f4xx_ll_usart.h
│   │   │   │       │   ├── stm32f4xx_ll_usb.h
│   │   │   │       │   ├── stm32f4xx_ll_utils.h
│   │   │   │       │   └── stm32f4xx_ll_wwdg.h
│   │   │   │       ├── Release_Notes.html
│   │   │   │       └── Src
│   │   │   │           ├── Legacy
│   │   │   │           │   └── stm32f4xx_hal_can.c
│   │   │   │           ├── stm32f4xx_hal.c
│   │   │   │           ├── stm32f4xx_hal_adc.c
│   │   │   │           ├── stm32f4xx_hal_adc_ex.c
│   │   │   │           ├── stm32f4xx_hal_can.c
│   │   │   │           ├── stm32f4xx_hal_cec.c
│   │   │   │           ├── stm32f4xx_hal_cortex.c
│   │   │   │           ├── stm32f4xx_hal_crc.c
│   │   │   │           ├── stm32f4xx_hal_cryp.c
│   │   │   │           ├── stm32f4xx_hal_cryp_ex.c
│   │   │   │           ├── stm32f4xx_hal_dac.c
│   │   │   │           ├── stm32f4xx_hal_dac_ex.c
│   │   │   │           ├── stm32f4xx_hal_dcmi.c
│   │   │   │           ├── stm32f4xx_hal_dcmi_ex.c
│   │   │   │           ├── stm32f4xx_hal_dfsdm.c
│   │   │   │           ├── stm32f4xx_hal_dma.c
│   │   │   │           ├── stm32f4xx_hal_dma2d.c
│   │   │   │           ├── stm32f4xx_hal_dma_ex.c
│   │   │   │           ├── stm32f4xx_hal_dsi.c
│   │   │   │           ├── stm32f4xx_hal_eth.c
│   │   │   │           ├── stm32f4xx_hal_flash.c
│   │   │   │           ├── stm32f4xx_hal_flash_ex.c
│   │   │   │           ├── stm32f4xx_hal_flash_ramfunc.c
│   │   │   │           ├── stm32f4xx_hal_fmpi2c.c
│   │   │   │           ├── stm32f4xx_hal_fmpi2c_ex.c
│   │   │   │           ├── stm32f4xx_hal_gpio.c
│   │   │   │           ├── stm32f4xx_hal_hash.c
│   │   │   │           ├── stm32f4xx_hal_hash_ex.c
│   │   │   │           ├── stm32f4xx_hal_hcd.c
│   │   │   │           ├── stm32f4xx_hal_i2c.c
│   │   │   │           ├── stm32f4xx_hal_i2c_ex.c
│   │   │   │           ├── stm32f4xx_hal_i2s.c
│   │   │   │           ├── stm32f4xx_hal_i2s_ex.c
│   │   │   │           ├── stm32f4xx_hal_irda.c
│   │   │   │           ├── stm32f4xx_hal_iwdg.c
│   │   │   │           ├── stm32f4xx_hal_lptim.c
│   │   │   │           ├── stm32f4xx_hal_ltdc.c
│   │   │   │           ├── stm32f4xx_hal_ltdc_ex.c
│   │   │   │           ├── stm32f4xx_hal_mmc.c
│   │   │   │           ├── stm32f4xx_hal_msp_template.c
│   │   │   │           ├── stm32f4xx_hal_nand.c
│   │   │   │           ├── stm32f4xx_hal_nor.c
│   │   │   │           ├── stm32f4xx_hal_pccard.c
│   │   │   │           ├── stm32f4xx_hal_pcd.c
│   │   │   │           ├── stm32f4xx_hal_pcd_ex.c
│   │   │   │           ├── stm32f4xx_hal_pwr.c
│   │   │   │           ├── stm32f4xx_hal_pwr_ex.c
│   │   │   │           ├── stm32f4xx_hal_qspi.c
│   │   │   │           ├── stm32f4xx_hal_rcc.c
│   │   │   │           ├── stm32f4xx_hal_rcc_ex.c
│   │   │   │           ├── stm32f4xx_hal_rng.c
│   │   │   │           ├── stm32f4xx_hal_rtc.c
│   │   │   │           ├── stm32f4xx_hal_rtc_ex.c
│   │   │   │           ├── stm32f4xx_hal_sai.c
│   │   │   │           ├── stm32f4xx_hal_sai_ex.c
│   │   │   │           ├── stm32f4xx_hal_sd.c
│   │   │   │           ├── stm32f4xx_hal_sdram.c
│   │   │   │           ├── stm32f4xx_hal_smartcard.c
│   │   │   │           ├── stm32f4xx_hal_spdifrx.c
│   │   │   │           ├── stm32f4xx_hal_spi.c
│   │   │   │           ├── stm32f4xx_hal_sram.c
│   │   │   │           ├── stm32f4xx_hal_tim.c
│   │   │   │           ├── stm32f4xx_hal_tim_ex.c
│   │   │   │           ├── stm32f4xx_hal_timebase_rtc_alarm_template.c
│   │   │   │           ├── stm32f4xx_hal_timebase_rtc_wakeup_template.c
│   │   │   │           ├── stm32f4xx_hal_timebase_tim_template.c
│   │   │   │           ├── stm32f4xx_hal_uart.c
│   │   │   │           ├── stm32f4xx_hal_usart.c
│   │   │   │           ├── stm32f4xx_hal_wwdg.c
│   │   │   │           ├── stm32f4xx_ll_adc.c
│   │   │   │           ├── stm32f4xx_ll_crc.c
│   │   │   │           ├── stm32f4xx_ll_dac.c
│   │   │   │           ├── stm32f4xx_ll_dma.c
│   │   │   │           ├── stm32f4xx_ll_dma2d.c
│   │   │   │           ├── stm32f4xx_ll_exti.c
│   │   │   │           ├── stm32f4xx_ll_fmc.c
│   │   │   │           ├── stm32f4xx_ll_fsmc.c
│   │   │   │           ├── stm32f4xx_ll_gpio.c
│   │   │   │           ├── stm32f4xx_ll_i2c.c
│   │   │   │           ├── stm32f4xx_ll_lptim.c
│   │   │   │           ├── stm32f4xx_ll_pwr.c
│   │   │   │           ├── stm32f4xx_ll_rcc.c
│   │   │   │           ├── stm32f4xx_ll_rng.c
│   │   │   │           ├── stm32f4xx_ll_rtc.c
│   │   │   │           ├── stm32f4xx_ll_sdmmc.c
│   │   │   │           ├── stm32f4xx_ll_spi.c
│   │   │   │           ├── stm32f4xx_ll_tim.c
│   │   │   │           ├── stm32f4xx_ll_usart.c
│   │   │   │           ├── stm32f4xx_ll_usb.c
│   │   │   │           └── stm32f4xx_ll_utils.c
│   │   │   ├── Program
│   │   │   │   ├── algorithms
│   │   │   │   │   ├── mathUnit.c
│   │   │   │   │   └── mathUnit.h
│   │   │   │   ├── boardConfig.h
│   │   │   │   ├── drivers
│   │   │   │   │   ├── stm32f4_delay.c
│   │   │   │   │   ├── stm32f4_delay.h
│   │   │   │   │   ├── stm32f4_msp.c
│   │   │   │   │   └── stm32f4_system.h
│   │   │   │   ├── main.c
│   │   │   │   ├── stm32f4xx_bsp.c
│   │   │   │   ├── stm32f4xx_bsp.h
│   │   │   │   ├── stm32f4xx_hal_conf.h
│   │   │   │   └── stm32f4xx_it.c
│   │   │   └── Project
│   │   │       ├── ClearFile.bat
│   │   │       ├── DebugConfig
│   │   │       │   └── STM32F411C_STM32F411CEUx.dbgconf
│   │   │       ├── JLinkSettings.ini
│   │   │       ├── ProjSTM32.uvguix.Hom
│   │   │       ├── ProjSTM32.uvoptx
│   │   │       ├── ProjSTM32.uvprojx
│   │   │       └── RTE
│   │   │           └── _STM32F411C
│   │   │               └── RTE_Components.h
│   │   ├── STM_Peripheral_SENSOR
│   │   │   ├── Libraries
│   │   │   │   ├── CMSIS
│   │   │   │   │   ├── CMSIS_END_USER_LICENCE_AGREEMENT.pdf
│   │   │   │   │   ├── DSP_Lib
│   │   │   │   │   │   └── license.txt
│   │   │   │   │   ├── Device
│   │   │   │   │   │   ├── Release_Notes.html
│   │   │   │   │   │   ├── startup_stm32f411xe.s
│   │   │   │   │   │   ├── stm32f411xe.h
│   │   │   │   │   │   ├── stm32f4xx.h
│   │   │   │   │   │   ├── system_stm32f4xx.c
│   │   │   │   │   │   └── system_stm32f4xx.h
│   │   │   │   │   └── Include
│   │   │   │   │       ├── arm_common_tables.h
│   │   │   │   │       ├── arm_const_structs.h
│   │   │   │   │       ├── arm_math.h
│   │   │   │   │       ├── cmsis_armcc.h
│   │   │   │   │       ├── cmsis_armcc_V6.h
│   │   │   │   │       ├── cmsis_gcc.h
│   │   │   │   │       ├── core_cm4.h
│   │   │   │   │       ├── core_cmFunc.h
│   │   │   │   │       ├── core_cmInstr.h
│   │   │   │   │       ├── core_cmSimd.h
│   │   │   │   │       ├── core_sc000.h
│   │   │   │   │       └── core_sc300.h
│   │   │   │   └── STM32F4xx_HAL_Driver
│   │   │   │       ├── Inc
│   │   │   │       │   ├── Legacy
│   │   │   │       │   │   ├── stm32_hal_legacy.h
│   │   │   │       │   │   └── stm32f4xx_hal_can_legacy.h
│   │   │   │       │   ├── stm32_assert_template.h
│   │   │   │       │   ├── stm32f4xx_hal.h
│   │   │   │       │   ├── stm32f4xx_hal_adc.h
│   │   │   │       │   ├── stm32f4xx_hal_adc_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_can.h
│   │   │   │       │   ├── stm32f4xx_hal_cec.h
│   │   │   │       │   ├── stm32f4xx_hal_conf_template.h
│   │   │   │       │   ├── stm32f4xx_hal_cortex.h
│   │   │   │       │   ├── stm32f4xx_hal_crc.h
│   │   │   │       │   ├── stm32f4xx_hal_cryp.h
│   │   │   │       │   ├── stm32f4xx_hal_cryp_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_dac.h
│   │   │   │       │   ├── stm32f4xx_hal_dac_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_dcmi.h
│   │   │   │       │   ├── stm32f4xx_hal_dcmi_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_def.h
│   │   │   │       │   ├── stm32f4xx_hal_dfsdm.h
│   │   │   │       │   ├── stm32f4xx_hal_dma.h
│   │   │   │       │   ├── stm32f4xx_hal_dma2d.h
│   │   │   │       │   ├── stm32f4xx_hal_dma_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_dsi.h
│   │   │   │       │   ├── stm32f4xx_hal_eth.h
│   │   │   │       │   ├── stm32f4xx_hal_flash.h
│   │   │   │       │   ├── stm32f4xx_hal_flash_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_flash_ramfunc.h
│   │   │   │       │   ├── stm32f4xx_hal_fmpi2c.h
│   │   │   │       │   ├── stm32f4xx_hal_fmpi2c_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_gpio.h
│   │   │   │       │   ├── stm32f4xx_hal_gpio_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_hash.h
│   │   │   │       │   ├── stm32f4xx_hal_hash_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_hcd.h
│   │   │   │       │   ├── stm32f4xx_hal_i2c.h
│   │   │   │       │   ├── stm32f4xx_hal_i2c_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_i2s.h
│   │   │   │       │   ├── stm32f4xx_hal_i2s_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_irda.h
│   │   │   │       │   ├── stm32f4xx_hal_iwdg.h
│   │   │   │       │   ├── stm32f4xx_hal_lptim.h
│   │   │   │       │   ├── stm32f4xx_hal_ltdc.h
│   │   │   │       │   ├── stm32f4xx_hal_ltdc_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_mmc.h
│   │   │   │       │   ├── stm32f4xx_hal_nand.h
│   │   │   │       │   ├── stm32f4xx_hal_nor.h
│   │   │   │       │   ├── stm32f4xx_hal_pccard.h
│   │   │   │       │   ├── stm32f4xx_hal_pcd.h
│   │   │   │       │   ├── stm32f4xx_hal_pcd_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_pwr.h
│   │   │   │       │   ├── stm32f4xx_hal_pwr_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_qspi.h
│   │   │   │       │   ├── stm32f4xx_hal_rcc.h
│   │   │   │       │   ├── stm32f4xx_hal_rcc_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_rng.h
│   │   │   │       │   ├── stm32f4xx_hal_rtc.h
│   │   │   │       │   ├── stm32f4xx_hal_rtc_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_sai.h
│   │   │   │       │   ├── stm32f4xx_hal_sai_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_sd.h
│   │   │   │       │   ├── stm32f4xx_hal_sdram.h
│   │   │   │       │   ├── stm32f4xx_hal_smartcard.h
│   │   │   │       │   ├── stm32f4xx_hal_spdifrx.h
│   │   │   │       │   ├── stm32f4xx_hal_spi.h
│   │   │   │       │   ├── stm32f4xx_hal_sram.h
│   │   │   │       │   ├── stm32f4xx_hal_tim.h
│   │   │   │       │   ├── stm32f4xx_hal_tim_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_uart.h
│   │   │   │       │   ├── stm32f4xx_hal_usart.h
│   │   │   │       │   ├── stm32f4xx_hal_wwdg.h
│   │   │   │       │   ├── stm32f4xx_ll_adc.h
│   │   │   │       │   ├── stm32f4xx_ll_bus.h
│   │   │   │       │   ├── stm32f4xx_ll_cortex.h
│   │   │   │       │   ├── stm32f4xx_ll_crc.h
│   │   │   │       │   ├── stm32f4xx_ll_dac.h
│   │   │   │       │   ├── stm32f4xx_ll_dma.h
│   │   │   │       │   ├── stm32f4xx_ll_dma2d.h
│   │   │   │       │   ├── stm32f4xx_ll_exti.h
│   │   │   │       │   ├── stm32f4xx_ll_fmc.h
│   │   │   │       │   ├── stm32f4xx_ll_fsmc.h
│   │   │   │       │   ├── stm32f4xx_ll_gpio.h
│   │   │   │       │   ├── stm32f4xx_ll_i2c.h
│   │   │   │       │   ├── stm32f4xx_ll_iwdg.h
│   │   │   │       │   ├── stm32f4xx_ll_lptim.h
│   │   │   │       │   ├── stm32f4xx_ll_pwr.h
│   │   │   │       │   ├── stm32f4xx_ll_rcc.h
│   │   │   │       │   ├── stm32f4xx_ll_rng.h
│   │   │   │       │   ├── stm32f4xx_ll_rtc.h
│   │   │   │       │   ├── stm32f4xx_ll_sdmmc.h
│   │   │   │       │   ├── stm32f4xx_ll_spi.h
│   │   │   │       │   ├── stm32f4xx_ll_system.h
│   │   │   │       │   ├── stm32f4xx_ll_tim.h
│   │   │   │       │   ├── stm32f4xx_ll_usart.h
│   │   │   │       │   ├── stm32f4xx_ll_usb.h
│   │   │   │       │   ├── stm32f4xx_ll_utils.h
│   │   │   │       │   └── stm32f4xx_ll_wwdg.h
│   │   │   │       ├── Release_Notes.html
│   │   │   │       └── Src
│   │   │   │           ├── Legacy
│   │   │   │           │   └── stm32f4xx_hal_can.c
│   │   │   │           ├── stm32f4xx_hal.c
│   │   │   │           ├── stm32f4xx_hal_adc.c
│   │   │   │           ├── stm32f4xx_hal_adc_ex.c
│   │   │   │           ├── stm32f4xx_hal_can.c
│   │   │   │           ├── stm32f4xx_hal_cec.c
│   │   │   │           ├── stm32f4xx_hal_cortex.c
│   │   │   │           ├── stm32f4xx_hal_crc.c
│   │   │   │           ├── stm32f4xx_hal_cryp.c
│   │   │   │           ├── stm32f4xx_hal_cryp_ex.c
│   │   │   │           ├── stm32f4xx_hal_dac.c
│   │   │   │           ├── stm32f4xx_hal_dac_ex.c
│   │   │   │           ├── stm32f4xx_hal_dcmi.c
│   │   │   │           ├── stm32f4xx_hal_dcmi_ex.c
│   │   │   │           ├── stm32f4xx_hal_dfsdm.c
│   │   │   │           ├── stm32f4xx_hal_dma.c
│   │   │   │           ├── stm32f4xx_hal_dma2d.c
│   │   │   │           ├── stm32f4xx_hal_dma_ex.c
│   │   │   │           ├── stm32f4xx_hal_dsi.c
│   │   │   │           ├── stm32f4xx_hal_eth.c
│   │   │   │           ├── stm32f4xx_hal_flash.c
│   │   │   │           ├── stm32f4xx_hal_flash_ex.c
│   │   │   │           ├── stm32f4xx_hal_flash_ramfunc.c
│   │   │   │           ├── stm32f4xx_hal_fmpi2c.c
│   │   │   │           ├── stm32f4xx_hal_fmpi2c_ex.c
│   │   │   │           ├── stm32f4xx_hal_gpio.c
│   │   │   │           ├── stm32f4xx_hal_hash.c
│   │   │   │           ├── stm32f4xx_hal_hash_ex.c
│   │   │   │           ├── stm32f4xx_hal_hcd.c
│   │   │   │           ├── stm32f4xx_hal_i2c.c
│   │   │   │           ├── stm32f4xx_hal_i2c_ex.c
│   │   │   │           ├── stm32f4xx_hal_i2s.c
│   │   │   │           ├── stm32f4xx_hal_i2s_ex.c
│   │   │   │           ├── stm32f4xx_hal_irda.c
│   │   │   │           ├── stm32f4xx_hal_iwdg.c
│   │   │   │           ├── stm32f4xx_hal_lptim.c
│   │   │   │           ├── stm32f4xx_hal_ltdc.c
│   │   │   │           ├── stm32f4xx_hal_ltdc_ex.c
│   │   │   │           ├── stm32f4xx_hal_mmc.c
│   │   │   │           ├── stm32f4xx_hal_msp_template.c
│   │   │   │           ├── stm32f4xx_hal_nand.c
│   │   │   │           ├── stm32f4xx_hal_nor.c
│   │   │   │           ├── stm32f4xx_hal_pccard.c
│   │   │   │           ├── stm32f4xx_hal_pcd.c
│   │   │   │           ├── stm32f4xx_hal_pcd_ex.c
│   │   │   │           ├── stm32f4xx_hal_pwr.c
│   │   │   │           ├── stm32f4xx_hal_pwr_ex.c
│   │   │   │           ├── stm32f4xx_hal_qspi.c
│   │   │   │           ├── stm32f4xx_hal_rcc.c
│   │   │   │           ├── stm32f4xx_hal_rcc_ex.c
│   │   │   │           ├── stm32f4xx_hal_rng.c
│   │   │   │           ├── stm32f4xx_hal_rtc.c
│   │   │   │           ├── stm32f4xx_hal_rtc_ex.c
│   │   │   │           ├── stm32f4xx_hal_sai.c
│   │   │   │           ├── stm32f4xx_hal_sai_ex.c
│   │   │   │           ├── stm32f4xx_hal_sd.c
│   │   │   │           ├── stm32f4xx_hal_sdram.c
│   │   │   │           ├── stm32f4xx_hal_smartcard.c
│   │   │   │           ├── stm32f4xx_hal_spdifrx.c
│   │   │   │           ├── stm32f4xx_hal_spi.c
│   │   │   │           ├── stm32f4xx_hal_sram.c
│   │   │   │           ├── stm32f4xx_hal_tim.c
│   │   │   │           ├── stm32f4xx_hal_tim_ex.c
│   │   │   │           ├── stm32f4xx_hal_timebase_rtc_alarm_template.c
│   │   │   │           ├── stm32f4xx_hal_timebase_rtc_wakeup_template.c
│   │   │   │           ├── stm32f4xx_hal_timebase_tim_template.c
│   │   │   │           ├── stm32f4xx_hal_uart.c
│   │   │   │           ├── stm32f4xx_hal_usart.c
│   │   │   │           ├── stm32f4xx_hal_wwdg.c
│   │   │   │           ├── stm32f4xx_ll_adc.c
│   │   │   │           ├── stm32f4xx_ll_crc.c
│   │   │   │           ├── stm32f4xx_ll_dac.c
│   │   │   │           ├── stm32f4xx_ll_dma.c
│   │   │   │           ├── stm32f4xx_ll_dma2d.c
│   │   │   │           ├── stm32f4xx_ll_exti.c
│   │   │   │           ├── stm32f4xx_ll_fmc.c
│   │   │   │           ├── stm32f4xx_ll_fsmc.c
│   │   │   │           ├── stm32f4xx_ll_gpio.c
│   │   │   │           ├── stm32f4xx_ll_i2c.c
│   │   │   │           ├── stm32f4xx_ll_lptim.c
│   │   │   │           ├── stm32f4xx_ll_pwr.c
│   │   │   │           ├── stm32f4xx_ll_rcc.c
│   │   │   │           ├── stm32f4xx_ll_rng.c
│   │   │   │           ├── stm32f4xx_ll_rtc.c
│   │   │   │           ├── stm32f4xx_ll_sdmmc.c
│   │   │   │           ├── stm32f4xx_ll_spi.c
│   │   │   │           ├── stm32f4xx_ll_tim.c
│   │   │   │           ├── stm32f4xx_ll_usart.c
│   │   │   │           ├── stm32f4xx_ll_usb.c
│   │   │   │           └── stm32f4xx_ll_utils.c
│   │   │   ├── Program
│   │   │   │   ├── algorithms
│   │   │   │   │   ├── mathUnit.c
│   │   │   │   │   └── mathUnit.h
│   │   │   │   ├── boardConfig.h
│   │   │   │   ├── drivers
│   │   │   │   │   ├── stm32f4_delay.c
│   │   │   │   │   ├── stm32f4_delay.h
│   │   │   │   │   ├── stm32f4_msp.c
│   │   │   │   │   ├── stm32f4_spi.c
│   │   │   │   │   ├── stm32f4_spi.h
│   │   │   │   │   ├── stm32f4_system.h
│   │   │   │   │   ├── stm32f4_tim.c
│   │   │   │   │   ├── stm32f4_tim.h
│   │   │   │   │   ├── stm32f4_uart.c
│   │   │   │   │   └── stm32f4_uart.h
│   │   │   │   ├── main.c
│   │   │   │   ├── modules
│   │   │   │   │   ├── imu.c
│   │   │   │   │   ├── imu.h
│   │   │   │   │   ├── kSerial.c
│   │   │   │   │   ├── kSerial.h
│   │   │   │   │   ├── lps22hb.c
│   │   │   │   │   ├── lps22hb.h
│   │   │   │   │   ├── mpu9250.c
│   │   │   │   │   ├── mpu9250.h
│   │   │   │   │   ├── serial.c
│   │   │   │   │   └── serial.h
│   │   │   │   ├── stm32f4xx_bsp.c
│   │   │   │   ├── stm32f4xx_bsp.h
│   │   │   │   ├── stm32f4xx_hal_conf.h
│   │   │   │   └── stm32f4xx_it.c
│   │   │   ├── Project
│   │   │   │   ├── ClearFile.bat
│   │   │   │   ├── DebugConfig
│   │   │   │   │   └── STM32F411C_STM32F411CEUx.dbgconf
│   │   │   │   ├── JLinkSettings.ini
│   │   │   │   ├── ProjSTM32.uvguix.Hom
│   │   │   │   ├── ProjSTM32.uvoptx
│   │   │   │   ├── ProjSTM32.uvprojx
│   │   │   │   └── RTE
│   │   │   │       └── _STM32F411C
│   │   │   │           └── RTE_Components.h
│   │   │   ├── kOscilloscope.m
│   │   │   ├── kSerial.m
│   │   │   ├── kSerialOscilloscope.m
│   │   │   ├── serialOscilloscope.m
│   │   │   └── serialPacket.m
│   │   ├── STM_Peripheral_TIM
│   │   │   ├── Libraries
│   │   │   │   ├── CMSIS
│   │   │   │   │   ├── CMSIS_END_USER_LICENCE_AGREEMENT.pdf
│   │   │   │   │   ├── DSP_Lib
│   │   │   │   │   │   └── license.txt
│   │   │   │   │   ├── Device
│   │   │   │   │   │   ├── Release_Notes.html
│   │   │   │   │   │   ├── startup_stm32f411xe.s
│   │   │   │   │   │   ├── stm32f411xe.h
│   │   │   │   │   │   ├── stm32f4xx.h
│   │   │   │   │   │   ├── system_stm32f4xx.c
│   │   │   │   │   │   └── system_stm32f4xx.h
│   │   │   │   │   └── Include
│   │   │   │   │       ├── arm_common_tables.h
│   │   │   │   │       ├── arm_const_structs.h
│   │   │   │   │       ├── arm_math.h
│   │   │   │   │       ├── cmsis_armcc.h
│   │   │   │   │       ├── cmsis_armcc_V6.h
│   │   │   │   │       ├── cmsis_gcc.h
│   │   │   │   │       ├── core_cm4.h
│   │   │   │   │       ├── core_cmFunc.h
│   │   │   │   │       ├── core_cmInstr.h
│   │   │   │   │       ├── core_cmSimd.h
│   │   │   │   │       ├── core_sc000.h
│   │   │   │   │       └── core_sc300.h
│   │   │   │   └── STM32F4xx_HAL_Driver
│   │   │   │       ├── Inc
│   │   │   │       │   ├── Legacy
│   │   │   │       │   │   ├── stm32_hal_legacy.h
│   │   │   │       │   │   └── stm32f4xx_hal_can_legacy.h
│   │   │   │       │   ├── stm32_assert_template.h
│   │   │   │       │   ├── stm32f4xx_hal.h
│   │   │   │       │   ├── stm32f4xx_hal_adc.h
│   │   │   │       │   ├── stm32f4xx_hal_adc_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_can.h
│   │   │   │       │   ├── stm32f4xx_hal_cec.h
│   │   │   │       │   ├── stm32f4xx_hal_conf_template.h
│   │   │   │       │   ├── stm32f4xx_hal_cortex.h
│   │   │   │       │   ├── stm32f4xx_hal_crc.h
│   │   │   │       │   ├── stm32f4xx_hal_cryp.h
│   │   │   │       │   ├── stm32f4xx_hal_cryp_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_dac.h
│   │   │   │       │   ├── stm32f4xx_hal_dac_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_dcmi.h
│   │   │   │       │   ├── stm32f4xx_hal_dcmi_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_def.h
│   │   │   │       │   ├── stm32f4xx_hal_dfsdm.h
│   │   │   │       │   ├── stm32f4xx_hal_dma.h
│   │   │   │       │   ├── stm32f4xx_hal_dma2d.h
│   │   │   │       │   ├── stm32f4xx_hal_dma_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_dsi.h
│   │   │   │       │   ├── stm32f4xx_hal_eth.h
│   │   │   │       │   ├── stm32f4xx_hal_flash.h
│   │   │   │       │   ├── stm32f4xx_hal_flash_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_flash_ramfunc.h
│   │   │   │       │   ├── stm32f4xx_hal_fmpi2c.h
│   │   │   │       │   ├── stm32f4xx_hal_fmpi2c_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_gpio.h
│   │   │   │       │   ├── stm32f4xx_hal_gpio_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_hash.h
│   │   │   │       │   ├── stm32f4xx_hal_hash_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_hcd.h
│   │   │   │       │   ├── stm32f4xx_hal_i2c.h
│   │   │   │       │   ├── stm32f4xx_hal_i2c_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_i2s.h
│   │   │   │       │   ├── stm32f4xx_hal_i2s_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_irda.h
│   │   │   │       │   ├── stm32f4xx_hal_iwdg.h
│   │   │   │       │   ├── stm32f4xx_hal_lptim.h
│   │   │   │       │   ├── stm32f4xx_hal_ltdc.h
│   │   │   │       │   ├── stm32f4xx_hal_ltdc_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_mmc.h
│   │   │   │       │   ├── stm32f4xx_hal_nand.h
│   │   │   │       │   ├── stm32f4xx_hal_nor.h
│   │   │   │       │   ├── stm32f4xx_hal_pccard.h
│   │   │   │       │   ├── stm32f4xx_hal_pcd.h
│   │   │   │       │   ├── stm32f4xx_hal_pcd_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_pwr.h
│   │   │   │       │   ├── stm32f4xx_hal_pwr_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_qspi.h
│   │   │   │       │   ├── stm32f4xx_hal_rcc.h
│   │   │   │       │   ├── stm32f4xx_hal_rcc_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_rng.h
│   │   │   │       │   ├── stm32f4xx_hal_rtc.h
│   │   │   │       │   ├── stm32f4xx_hal_rtc_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_sai.h
│   │   │   │       │   ├── stm32f4xx_hal_sai_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_sd.h
│   │   │   │       │   ├── stm32f4xx_hal_sdram.h
│   │   │   │       │   ├── stm32f4xx_hal_smartcard.h
│   │   │   │       │   ├── stm32f4xx_hal_spdifrx.h
│   │   │   │       │   ├── stm32f4xx_hal_spi.h
│   │   │   │       │   ├── stm32f4xx_hal_sram.h
│   │   │   │       │   ├── stm32f4xx_hal_tim.h
│   │   │   │       │   ├── stm32f4xx_hal_tim_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_uart.h
│   │   │   │       │   ├── stm32f4xx_hal_usart.h
│   │   │   │       │   ├── stm32f4xx_hal_wwdg.h
│   │   │   │       │   ├── stm32f4xx_ll_adc.h
│   │   │   │       │   ├── stm32f4xx_ll_bus.h
│   │   │   │       │   ├── stm32f4xx_ll_cortex.h
│   │   │   │       │   ├── stm32f4xx_ll_crc.h
│   │   │   │       │   ├── stm32f4xx_ll_dac.h
│   │   │   │       │   ├── stm32f4xx_ll_dma.h
│   │   │   │       │   ├── stm32f4xx_ll_dma2d.h
│   │   │   │       │   ├── stm32f4xx_ll_exti.h
│   │   │   │       │   ├── stm32f4xx_ll_fmc.h
│   │   │   │       │   ├── stm32f4xx_ll_fsmc.h
│   │   │   │       │   ├── stm32f4xx_ll_gpio.h
│   │   │   │       │   ├── stm32f4xx_ll_i2c.h
│   │   │   │       │   ├── stm32f4xx_ll_iwdg.h
│   │   │   │       │   ├── stm32f4xx_ll_lptim.h
│   │   │   │       │   ├── stm32f4xx_ll_pwr.h
│   │   │   │       │   ├── stm32f4xx_ll_rcc.h
│   │   │   │       │   ├── stm32f4xx_ll_rng.h
│   │   │   │       │   ├── stm32f4xx_ll_rtc.h
│   │   │   │       │   ├── stm32f4xx_ll_sdmmc.h
│   │   │   │       │   ├── stm32f4xx_ll_spi.h
│   │   │   │       │   ├── stm32f4xx_ll_system.h
│   │   │   │       │   ├── stm32f4xx_ll_tim.h
│   │   │   │       │   ├── stm32f4xx_ll_usart.h
│   │   │   │       │   ├── stm32f4xx_ll_usb.h
│   │   │   │       │   ├── stm32f4xx_ll_utils.h
│   │   │   │       │   └── stm32f4xx_ll_wwdg.h
│   │   │   │       ├── Release_Notes.html
│   │   │   │       └── Src
│   │   │   │           ├── Legacy
│   │   │   │           │   └── stm32f4xx_hal_can.c
│   │   │   │           ├── stm32f4xx_hal.c
│   │   │   │           ├── stm32f4xx_hal_adc.c
│   │   │   │           ├── stm32f4xx_hal_adc_ex.c
│   │   │   │           ├── stm32f4xx_hal_can.c
│   │   │   │           ├── stm32f4xx_hal_cec.c
│   │   │   │           ├── stm32f4xx_hal_cortex.c
│   │   │   │           ├── stm32f4xx_hal_crc.c
│   │   │   │           ├── stm32f4xx_hal_cryp.c
│   │   │   │           ├── stm32f4xx_hal_cryp_ex.c
│   │   │   │           ├── stm32f4xx_hal_dac.c
│   │   │   │           ├── stm32f4xx_hal_dac_ex.c
│   │   │   │           ├── stm32f4xx_hal_dcmi.c
│   │   │   │           ├── stm32f4xx_hal_dcmi_ex.c
│   │   │   │           ├── stm32f4xx_hal_dfsdm.c
│   │   │   │           ├── stm32f4xx_hal_dma.c
│   │   │   │           ├── stm32f4xx_hal_dma2d.c
│   │   │   │           ├── stm32f4xx_hal_dma_ex.c
│   │   │   │           ├── stm32f4xx_hal_dsi.c
│   │   │   │           ├── stm32f4xx_hal_eth.c
│   │   │   │           ├── stm32f4xx_hal_flash.c
│   │   │   │           ├── stm32f4xx_hal_flash_ex.c
│   │   │   │           ├── stm32f4xx_hal_flash_ramfunc.c
│   │   │   │           ├── stm32f4xx_hal_fmpi2c.c
│   │   │   │           ├── stm32f4xx_hal_fmpi2c_ex.c
│   │   │   │           ├── stm32f4xx_hal_gpio.c
│   │   │   │           ├── stm32f4xx_hal_hash.c
│   │   │   │           ├── stm32f4xx_hal_hash_ex.c
│   │   │   │           ├── stm32f4xx_hal_hcd.c
│   │   │   │           ├── stm32f4xx_hal_i2c.c
│   │   │   │           ├── stm32f4xx_hal_i2c_ex.c
│   │   │   │           ├── stm32f4xx_hal_i2s.c
│   │   │   │           ├── stm32f4xx_hal_i2s_ex.c
│   │   │   │           ├── stm32f4xx_hal_irda.c
│   │   │   │           ├── stm32f4xx_hal_iwdg.c
│   │   │   │           ├── stm32f4xx_hal_lptim.c
│   │   │   │           ├── stm32f4xx_hal_ltdc.c
│   │   │   │           ├── stm32f4xx_hal_ltdc_ex.c
│   │   │   │           ├── stm32f4xx_hal_mmc.c
│   │   │   │           ├── stm32f4xx_hal_msp_template.c
│   │   │   │           ├── stm32f4xx_hal_nand.c
│   │   │   │           ├── stm32f4xx_hal_nor.c
│   │   │   │           ├── stm32f4xx_hal_pccard.c
│   │   │   │           ├── stm32f4xx_hal_pcd.c
│   │   │   │           ├── stm32f4xx_hal_pcd_ex.c
│   │   │   │           ├── stm32f4xx_hal_pwr.c
│   │   │   │           ├── stm32f4xx_hal_pwr_ex.c
│   │   │   │           ├── stm32f4xx_hal_qspi.c
│   │   │   │           ├── stm32f4xx_hal_rcc.c
│   │   │   │           ├── stm32f4xx_hal_rcc_ex.c
│   │   │   │           ├── stm32f4xx_hal_rng.c
│   │   │   │           ├── stm32f4xx_hal_rtc.c
│   │   │   │           ├── stm32f4xx_hal_rtc_ex.c
│   │   │   │           ├── stm32f4xx_hal_sai.c
│   │   │   │           ├── stm32f4xx_hal_sai_ex.c
│   │   │   │           ├── stm32f4xx_hal_sd.c
│   │   │   │           ├── stm32f4xx_hal_sdram.c
│   │   │   │           ├── stm32f4xx_hal_smartcard.c
│   │   │   │           ├── stm32f4xx_hal_spdifrx.c
│   │   │   │           ├── stm32f4xx_hal_spi.c
│   │   │   │           ├── stm32f4xx_hal_sram.c
│   │   │   │           ├── stm32f4xx_hal_tim.c
│   │   │   │           ├── stm32f4xx_hal_tim_ex.c
│   │   │   │           ├── stm32f4xx_hal_timebase_rtc_alarm_template.c
│   │   │   │           ├── stm32f4xx_hal_timebase_rtc_wakeup_template.c
│   │   │   │           ├── stm32f4xx_hal_timebase_tim_template.c
│   │   │   │           ├── stm32f4xx_hal_uart.c
│   │   │   │           ├── stm32f4xx_hal_usart.c
│   │   │   │           ├── stm32f4xx_hal_wwdg.c
│   │   │   │           ├── stm32f4xx_ll_adc.c
│   │   │   │           ├── stm32f4xx_ll_crc.c
│   │   │   │           ├── stm32f4xx_ll_dac.c
│   │   │   │           ├── stm32f4xx_ll_dma.c
│   │   │   │           ├── stm32f4xx_ll_dma2d.c
│   │   │   │           ├── stm32f4xx_ll_exti.c
│   │   │   │           ├── stm32f4xx_ll_fmc.c
│   │   │   │           ├── stm32f4xx_ll_fsmc.c
│   │   │   │           ├── stm32f4xx_ll_gpio.c
│   │   │   │           ├── stm32f4xx_ll_i2c.c
│   │   │   │           ├── stm32f4xx_ll_lptim.c
│   │   │   │           ├── stm32f4xx_ll_pwr.c
│   │   │   │           ├── stm32f4xx_ll_rcc.c
│   │   │   │           ├── stm32f4xx_ll_rng.c
│   │   │   │           ├── stm32f4xx_ll_rtc.c
│   │   │   │           ├── stm32f4xx_ll_sdmmc.c
│   │   │   │           ├── stm32f4xx_ll_spi.c
│   │   │   │           ├── stm32f4xx_ll_tim.c
│   │   │   │           ├── stm32f4xx_ll_usart.c
│   │   │   │           ├── stm32f4xx_ll_usb.c
│   │   │   │           └── stm32f4xx_ll_utils.c
│   │   │   ├── Program
│   │   │   │   ├── algorithms
│   │   │   │   │   ├── mathUnit.c
│   │   │   │   │   └── mathUnit.h
│   │   │   │   ├── boardConfig.h
│   │   │   │   ├── drivers
│   │   │   │   │   ├── stm32f4_delay.c
│   │   │   │   │   ├── stm32f4_delay.h
│   │   │   │   │   ├── stm32f4_msp.c
│   │   │   │   │   ├── stm32f4_system.h
│   │   │   │   │   ├── stm32f4_tim.c
│   │   │   │   │   └── stm32f4_tim.h
│   │   │   │   ├── main.c
│   │   │   │   ├── stm32f4xx_bsp.c
│   │   │   │   ├── stm32f4xx_bsp.h
│   │   │   │   ├── stm32f4xx_hal_conf.h
│   │   │   │   └── stm32f4xx_it.c
│   │   │   └── Project
│   │   │       ├── ClearFile.bat
│   │   │       ├── DebugConfig
│   │   │       │   └── STM32F411C_STM32F411CEUx.dbgconf
│   │   │       ├── JLinkSettings.ini
│   │   │       ├── ProjSTM32.uvguix.Hom
│   │   │       ├── ProjSTM32.uvoptx
│   │   │       ├── ProjSTM32.uvprojx
│   │   │       └── RTE
│   │   │           └── _STM32F411C
│   │   │               └── RTE_Components.h
│   │   ├── STM_Peripheral_TIM-PWM
│   │   │   ├── Libraries
│   │   │   │   ├── CMSIS
│   │   │   │   │   ├── CMSIS_END_USER_LICENCE_AGREEMENT.pdf
│   │   │   │   │   ├── DSP_Lib
│   │   │   │   │   │   └── license.txt
│   │   │   │   │   ├── Device
│   │   │   │   │   │   ├── Release_Notes.html
│   │   │   │   │   │   ├── startup_stm32f411xe.s
│   │   │   │   │   │   ├── stm32f411xe.h
│   │   │   │   │   │   ├── stm32f4xx.h
│   │   │   │   │   │   ├── system_stm32f4xx.c
│   │   │   │   │   │   └── system_stm32f4xx.h
│   │   │   │   │   └── Include
│   │   │   │   │       ├── arm_common_tables.h
│   │   │   │   │       ├── arm_const_structs.h
│   │   │   │   │       ├── arm_math.h
│   │   │   │   │       ├── cmsis_armcc.h
│   │   │   │   │       ├── cmsis_armcc_V6.h
│   │   │   │   │       ├── cmsis_gcc.h
│   │   │   │   │       ├── core_cm4.h
│   │   │   │   │       ├── core_cmFunc.h
│   │   │   │   │       ├── core_cmInstr.h
│   │   │   │   │       ├── core_cmSimd.h
│   │   │   │   │       ├── core_sc000.h
│   │   │   │   │       └── core_sc300.h
│   │   │   │   └── STM32F4xx_HAL_Driver
│   │   │   │       ├── Inc
│   │   │   │       │   ├── Legacy
│   │   │   │       │   │   ├── stm32_hal_legacy.h
│   │   │   │       │   │   └── stm32f4xx_hal_can_legacy.h
│   │   │   │       │   ├── stm32_assert_template.h
│   │   │   │       │   ├── stm32f4xx_hal.h
│   │   │   │       │   ├── stm32f4xx_hal_adc.h
│   │   │   │       │   ├── stm32f4xx_hal_adc_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_can.h
│   │   │   │       │   ├── stm32f4xx_hal_cec.h
│   │   │   │       │   ├── stm32f4xx_hal_conf_template.h
│   │   │   │       │   ├── stm32f4xx_hal_cortex.h
│   │   │   │       │   ├── stm32f4xx_hal_crc.h
│   │   │   │       │   ├── stm32f4xx_hal_cryp.h
│   │   │   │       │   ├── stm32f4xx_hal_cryp_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_dac.h
│   │   │   │       │   ├── stm32f4xx_hal_dac_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_dcmi.h
│   │   │   │       │   ├── stm32f4xx_hal_dcmi_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_def.h
│   │   │   │       │   ├── stm32f4xx_hal_dfsdm.h
│   │   │   │       │   ├── stm32f4xx_hal_dma.h
│   │   │   │       │   ├── stm32f4xx_hal_dma2d.h
│   │   │   │       │   ├── stm32f4xx_hal_dma_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_dsi.h
│   │   │   │       │   ├── stm32f4xx_hal_eth.h
│   │   │   │       │   ├── stm32f4xx_hal_flash.h
│   │   │   │       │   ├── stm32f4xx_hal_flash_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_flash_ramfunc.h
│   │   │   │       │   ├── stm32f4xx_hal_fmpi2c.h
│   │   │   │       │   ├── stm32f4xx_hal_fmpi2c_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_gpio.h
│   │   │   │       │   ├── stm32f4xx_hal_gpio_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_hash.h
│   │   │   │       │   ├── stm32f4xx_hal_hash_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_hcd.h
│   │   │   │       │   ├── stm32f4xx_hal_i2c.h
│   │   │   │       │   ├── stm32f4xx_hal_i2c_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_i2s.h
│   │   │   │       │   ├── stm32f4xx_hal_i2s_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_irda.h
│   │   │   │       │   ├── stm32f4xx_hal_iwdg.h
│   │   │   │       │   ├── stm32f4xx_hal_lptim.h
│   │   │   │       │   ├── stm32f4xx_hal_ltdc.h
│   │   │   │       │   ├── stm32f4xx_hal_ltdc_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_mmc.h
│   │   │   │       │   ├── stm32f4xx_hal_nand.h
│   │   │   │       │   ├── stm32f4xx_hal_nor.h
│   │   │   │       │   ├── stm32f4xx_hal_pccard.h
│   │   │   │       │   ├── stm32f4xx_hal_pcd.h
│   │   │   │       │   ├── stm32f4xx_hal_pcd_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_pwr.h
│   │   │   │       │   ├── stm32f4xx_hal_pwr_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_qspi.h
│   │   │   │       │   ├── stm32f4xx_hal_rcc.h
│   │   │   │       │   ├── stm32f4xx_hal_rcc_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_rng.h
│   │   │   │       │   ├── stm32f4xx_hal_rtc.h
│   │   │   │       │   ├── stm32f4xx_hal_rtc_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_sai.h
│   │   │   │       │   ├── stm32f4xx_hal_sai_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_sd.h
│   │   │   │       │   ├── stm32f4xx_hal_sdram.h
│   │   │   │       │   ├── stm32f4xx_hal_smartcard.h
│   │   │   │       │   ├── stm32f4xx_hal_spdifrx.h
│   │   │   │       │   ├── stm32f4xx_hal_spi.h
│   │   │   │       │   ├── stm32f4xx_hal_sram.h
│   │   │   │       │   ├── stm32f4xx_hal_tim.h
│   │   │   │       │   ├── stm32f4xx_hal_tim_ex.h
│   │   │   │       │   ├── stm32f4xx_hal_uart.h
│   │   │   │       │   ├── stm32f4xx_hal_usart.h
│   │   │   │       │   ├── stm32f4xx_hal_wwdg.h
│   │   │   │       │   ├── stm32f4xx_ll_adc.h
│   │   │   │       │   ├── stm32f4xx_ll_bus.h
│   │   │   │       │   ├── stm32f4xx_ll_cortex.h
│   │   │   │       │   ├── stm32f4xx_ll_crc.h
│   │   │   │       │   ├── stm32f4xx_ll_dac.h
│   │   │   │       │   ├── stm32f4xx_ll_dma.h
│   │   │   │       │   ├── stm32f4xx_ll_dma2d.h
│   │   │   │       │   ├── stm32f4xx_ll_exti.h
│   │   │   │       │   ├── stm32f4xx_ll_fmc.h
│   │   │   │       │   ├── stm32f4xx_ll_fsmc.h
│   │   │   │       │   ├── stm32f4xx_ll_gpio.h
│   │   │   │       │   ├── stm32f4xx_ll_i2c.h
│   │   │   │       │   ├── stm32f4xx_ll_iwdg.h
│   │   │   │       │   ├── stm32f4xx_ll_lptim.h
│   │   │   │       │   ├── stm32f4xx_ll_pwr.h
│   │   │   │       │   ├── stm32f4xx_ll_rcc.h
│   │   │   │       │   ├── stm32f4xx_ll_rng.h
│   │   │   │       │   ├── stm32f4xx_ll_rtc.h
│   │   │   │       │   ├── stm32f4xx_ll_sdmmc.h
│   │   │   │       │   ├── stm32f4xx_ll_spi.h
│   │   │   │       │   ├── stm32f4xx_ll_system.h
│   │   │   │       │   ├── stm32f4xx_ll_tim.h
│   │   │   │       │   ├── stm32f4xx_ll_usart.h
│   │   │   │       │   ├── stm32f4xx_ll_usb.h
│   │   │   │       │   ├── stm32f4xx_ll_utils.h
│   │   │   │       │   └── stm32f4xx_ll_wwdg.h
│   │   │   │       ├── Release_Notes.html
│   │   │   │       └── Src
│   │   │   │           ├── Legacy
│   │   │   │           │   └── stm32f4xx_hal_can.c
│   │   │   │           ├── stm32f4xx_hal.c
│   │   │   │           ├── stm32f4xx_hal_adc.c
│   │   │   │           ├── stm32f4xx_hal_adc_ex.c
│   │   │   │           ├── stm32f4xx_hal_can.c
│   │   │   │           ├── stm32f4xx_hal_cec.c
│   │   │   │           ├── stm32f4xx_hal_cortex.c
│   │   │   │           ├── stm32f4xx_hal_crc.c
│   │   │   │           ├── stm32f4xx_hal_cryp.c
│   │   │   │           ├── stm32f4xx_hal_cryp_ex.c
│   │   │   │           ├── stm32f4xx_hal_dac.c
│   │   │   │           ├── stm32f4xx_hal_dac_ex.c
│   │   │   │           ├── stm32f4xx_hal_dcmi.c
│   │   │   │           ├── stm32f4xx_hal_dcmi_ex.c
│   │   │   │           ├── stm32f4xx_hal_dfsdm.c
│   │   │   │           ├── stm32f4xx_hal_dma.c
│   │   │   │           ├── stm32f4xx_hal_dma2d.c
│   │   │   │           ├── stm32f4xx_hal_dma_ex.c
│   │   │   │           ├── stm32f4xx_hal_dsi.c
│   │   │   │           ├── stm32f4xx_hal_eth.c
│   │   │   │           ├── stm32f4xx_hal_flash.c
│   │   │   │           ├── stm32f4xx_hal_flash_ex.c
│   │   │   │           ├── stm32f4xx_hal_flash_ramfunc.c
│   │   │   │           ├── stm32f4xx_hal_fmpi2c.c
│   │   │   │           ├── stm32f4xx_hal_fmpi2c_ex.c
│   │   │   │           ├── stm32f4xx_hal_gpio.c
│   │   │   │           ├── stm32f4xx_hal_hash.c
│   │   │   │           ├── stm32f4xx_hal_hash_ex.c
│   │   │   │           ├── stm32f4xx_hal_hcd.c
│   │   │   │           ├── stm32f4xx_hal_i2c.c
│   │   │   │           ├── stm32f4xx_hal_i2c_ex.c
│   │   │   │           ├── stm32f4xx_hal_i2s.c
│   │   │   │           ├── stm32f4xx_hal_i2s_ex.c
│   │   │   │           ├── stm32f4xx_hal_irda.c
│   │   │   │           ├── stm32f4xx_hal_iwdg.c
│   │   │   │           ├── stm32f4xx_hal_lptim.c
│   │   │   │           ├── stm32f4xx_hal_ltdc.c
│   │   │   │           ├── stm32f4xx_hal_ltdc_ex.c
│   │   │   │           ├── stm32f4xx_hal_mmc.c
│   │   │   │           ├── stm32f4xx_hal_msp_template.c
│   │   │   │           ├── stm32f4xx_hal_nand.c
│   │   │   │           ├── stm32f4xx_hal_nor.c
│   │   │   │           ├── stm32f4xx_hal_pccard.c
│   │   │   │           ├── stm32f4xx_hal_pcd.c
│   │   │   │           ├── stm32f4xx_hal_pcd_ex.c
│   │   │   │           ├── stm32f4xx_hal_pwr.c
│   │   │   │           ├── stm32f4xx_hal_pwr_ex.c
│   │   │   │           ├── stm32f4xx_hal_qspi.c
│   │   │   │           ├── stm32f4xx_hal_rcc.c
│   │   │   │           ├── stm32f4xx_hal_rcc_ex.c
│   │   │   │           ├── stm32f4xx_hal_rng.c
│   │   │   │           ├── stm32f4xx_hal_rtc.c
│   │   │   │           ├── stm32f4xx_hal_rtc_ex.c
│   │   │   │           ├── stm32f4xx_hal_sai.c
│   │   │   │           ├── stm32f4xx_hal_sai_ex.c
│   │   │   │           ├── stm32f4xx_hal_sd.c
│   │   │   │           ├── stm32f4xx_hal_sdram.c
│   │   │   │           ├── stm32f4xx_hal_smartcard.c
│   │   │   │           ├── stm32f4xx_hal_spdifrx.c
│   │   │   │           ├── stm32f4xx_hal_spi.c
│   │   │   │           ├── stm32f4xx_hal_sram.c
│   │   │   │           ├── stm32f4xx_hal_tim.c
│   │   │   │           ├── stm32f4xx_hal_tim_ex.c
│   │   │   │           ├── stm32f4xx_hal_timebase_rtc_alarm_template.c
│   │   │   │           ├── stm32f4xx_hal_timebase_rtc_wakeup_template.c
│   │   │   │           ├── stm32f4xx_hal_timebase_tim_template.c
│   │   │   │           ├── stm32f4xx_hal_uart.c
│   │   │   │           ├── stm32f4xx_hal_usart.c
│   │   │   │           ├── stm32f4xx_hal_wwdg.c
│   │   │   │           ├── stm32f4xx_ll_adc.c
│   │   │   │           ├── stm32f4xx_ll_crc.c
│   │   │   │           ├── stm32f4xx_ll_dac.c
│   │   │   │           ├── stm32f4xx_ll_dma.c
│   │   │   │           ├── stm32f4xx_ll_dma2d.c
│   │   │   │           ├── stm32f4xx_ll_exti.c
│   │   │   │           ├── stm32f4xx_ll_fmc.c
│   │   │   │           ├── stm32f4xx_ll_fsmc.c
│   │   │   │           ├── stm32f4xx_ll_gpio.c
│   │   │   │           ├── stm32f4xx_ll_i2c.c
│   │   │   │           ├── stm32f4xx_ll_lptim.c
│   │   │   │           ├── stm32f4xx_ll_pwr.c
│   │   │   │           ├── stm32f4xx_ll_rcc.c
│   │   │   │           ├── stm32f4xx_ll_rng.c
│   │   │   │           ├── stm32f4xx_ll_rtc.c
│   │   │   │           ├── stm32f4xx_ll_sdmmc.c
│   │   │   │           ├── stm32f4xx_ll_spi.c
│   │   │   │           ├── stm32f4xx_ll_tim.c
│   │   │   │           ├── stm32f4xx_ll_usart.c
│   │   │   │           ├── stm32f4xx_ll_usb.c
│   │   │   │           └── stm32f4xx_ll_utils.c
│   │   │   ├── Program
│   │   │   │   ├── algorithms
│   │   │   │   │   ├── mathUnit.c
│   │   │   │   │   └── mathUnit.h
│   │   │   │   ├── boardConfig.h
│   │   │   │   ├── drivers
│   │   │   │   │   ├── stm32f4_delay.c
│   │   │   │   │   ├── stm32f4_delay.h
│   │   │   │   │   ├── stm32f4_msp.c
│   │   │   │   │   ├── stm32f4_system.h
│   │   │   │   │   ├── stm32f4_tim_pwm.c
│   │   │   │   │   └── stm32f4_tim_pwm.h
│   │   │   │   ├── main.c
│   │   │   │   ├── stm32f4xx_bsp.c
│   │   │   │   ├── stm32f4xx_bsp.h
│   │   │   │   ├── stm32f4xx_hal_conf.h
│   │   │   │   └── stm32f4xx_it.c
│   │   │   └── Project
│   │   │       ├── ClearFile.bat
│   │   │       ├── DebugConfig
│   │   │       │   └── STM32F411C_STM32F411CEUx.dbgconf
│   │   │       ├── JLinkSettings.ini
│   │   │       ├── ProjSTM32.uvguix.Hom
│   │   │       ├── ProjSTM32.uvoptx
│   │   │       ├── ProjSTM32.uvprojx
│   │   │       └── RTE
│   │   │           └── _STM32F411C
│   │   │               └── RTE_Components.h
│   │   └── STM_Peripheral_UART
│   │       ├── Libraries
│   │       │   ├── CMSIS
│   │       │   │   ├── CMSIS_END_USER_LICENCE_AGREEMENT.pdf
│   │       │   │   ├── DSP_Lib
│   │       │   │   │   └── license.txt
│   │       │   │   ├── Device
│   │       │   │   │   ├── Release_Notes.html
│   │       │   │   │   ├── startup_stm32f411xe.s
│   │       │   │   │   ├── stm32f411xe.h
│   │       │   │   │   ├── stm32f4xx.h
│   │       │   │   │   ├── system_stm32f4xx.c
│   │       │   │   │   └── system_stm32f4xx.h
│   │       │   │   └── Include
│   │       │   │       ├── arm_common_tables.h
│   │       │   │       ├── arm_const_structs.h
│   │       │   │       ├── arm_math.h
│   │       │   │       ├── cmsis_armcc.h
│   │       │   │       ├── cmsis_armcc_V6.h
│   │       │   │       ├── cmsis_gcc.h
│   │       │   │       ├── core_cm4.h
│   │       │   │       ├── core_cmFunc.h
│   │       │   │       ├── core_cmInstr.h
│   │       │   │       ├── core_cmSimd.h
│   │       │   │       ├── core_sc000.h
│   │       │   │       └── core_sc300.h
│   │       │   └── STM32F4xx_HAL_Driver
│   │       │       ├── Inc
│   │       │       │   ├── Legacy
│   │       │       │   │   ├── stm32_hal_legacy.h
│   │       │       │   │   └── stm32f4xx_hal_can_legacy.h
│   │       │       │   ├── stm32_assert_template.h
│   │       │       │   ├── stm32f4xx_hal.h
│   │       │       │   ├── stm32f4xx_hal_adc.h
│   │       │       │   ├── stm32f4xx_hal_adc_ex.h
│   │       │       │   ├── stm32f4xx_hal_can.h
│   │       │       │   ├── stm32f4xx_hal_cec.h
│   │       │       │   ├── stm32f4xx_hal_conf_template.h
│   │       │       │   ├── stm32f4xx_hal_cortex.h
│   │       │       │   ├── stm32f4xx_hal_crc.h
│   │       │       │   ├── stm32f4xx_hal_cryp.h
│   │       │       │   ├── stm32f4xx_hal_cryp_ex.h
│   │       │       │   ├── stm32f4xx_hal_dac.h
│   │       │       │   ├── stm32f4xx_hal_dac_ex.h
│   │       │       │   ├── stm32f4xx_hal_dcmi.h
│   │       │       │   ├── stm32f4xx_hal_dcmi_ex.h
│   │       │       │   ├── stm32f4xx_hal_def.h
│   │       │       │   ├── stm32f4xx_hal_dfsdm.h
│   │       │       │   ├── stm32f4xx_hal_dma.h
│   │       │       │   ├── stm32f4xx_hal_dma2d.h
│   │       │       │   ├── stm32f4xx_hal_dma_ex.h
│   │       │       │   ├── stm32f4xx_hal_dsi.h
│   │       │       │   ├── stm32f4xx_hal_eth.h
│   │       │       │   ├── stm32f4xx_hal_flash.h
│   │       │       │   ├── stm32f4xx_hal_flash_ex.h
│   │       │       │   ├── stm32f4xx_hal_flash_ramfunc.h
│   │       │       │   ├── stm32f4xx_hal_fmpi2c.h
│   │       │       │   ├── stm32f4xx_hal_fmpi2c_ex.h
│   │       │       │   ├── stm32f4xx_hal_gpio.h
│   │       │       │   ├── stm32f4xx_hal_gpio_ex.h
│   │       │       │   ├── stm32f4xx_hal_hash.h
│   │       │       │   ├── stm32f4xx_hal_hash_ex.h
│   │       │       │   ├── stm32f4xx_hal_hcd.h
│   │       │       │   ├── stm32f4xx_hal_i2c.h
│   │       │       │   ├── stm32f4xx_hal_i2c_ex.h
│   │       │       │   ├── stm32f4xx_hal_i2s.h
│   │       │       │   ├── stm32f4xx_hal_i2s_ex.h
│   │       │       │   ├── stm32f4xx_hal_irda.h
│   │       │       │   ├── stm32f4xx_hal_iwdg.h
│   │       │       │   ├── stm32f4xx_hal_lptim.h
│   │       │       │   ├── stm32f4xx_hal_ltdc.h
│   │       │       │   ├── stm32f4xx_hal_ltdc_ex.h
│   │       │       │   ├── stm32f4xx_hal_mmc.h
│   │       │       │   ├── stm32f4xx_hal_nand.h
│   │       │       │   ├── stm32f4xx_hal_nor.h
│   │       │       │   ├── stm32f4xx_hal_pccard.h
│   │       │       │   ├── stm32f4xx_hal_pcd.h
│   │       │       │   ├── stm32f4xx_hal_pcd_ex.h
│   │       │       │   ├── stm32f4xx_hal_pwr.h
│   │       │       │   ├── stm32f4xx_hal_pwr_ex.h
│   │       │       │   ├── stm32f4xx_hal_qspi.h
│   │       │       │   ├── stm32f4xx_hal_rcc.h
│   │       │       │   ├── stm32f4xx_hal_rcc_ex.h
│   │       │       │   ├── stm32f4xx_hal_rng.h
│   │       │       │   ├── stm32f4xx_hal_rtc.h
│   │       │       │   ├── stm32f4xx_hal_rtc_ex.h
│   │       │       │   ├── stm32f4xx_hal_sai.h
│   │       │       │   ├── stm32f4xx_hal_sai_ex.h
│   │       │       │   ├── stm32f4xx_hal_sd.h
│   │       │       │   ├── stm32f4xx_hal_sdram.h
│   │       │       │   ├── stm32f4xx_hal_smartcard.h
│   │       │       │   ├── stm32f4xx_hal_spdifrx.h
│   │       │       │   ├── stm32f4xx_hal_spi.h
│   │       │       │   ├── stm32f4xx_hal_sram.h
│   │       │       │   ├── stm32f4xx_hal_tim.h
│   │       │       │   ├── stm32f4xx_hal_tim_ex.h
│   │       │       │   ├── stm32f4xx_hal_uart.h
│   │       │       │   ├── stm32f4xx_hal_usart.h
│   │       │       │   ├── stm32f4xx_hal_wwdg.h
│   │       │       │   ├── stm32f4xx_ll_adc.h
│   │       │       │   ├── stm32f4xx_ll_bus.h
│   │       │       │   ├── stm32f4xx_ll_cortex.h
│   │       │       │   ├── stm32f4xx_ll_crc.h
│   │       │       │   ├── stm32f4xx_ll_dac.h
│   │       │       │   ├── stm32f4xx_ll_dma.h
│   │       │       │   ├── stm32f4xx_ll_dma2d.h
│   │       │       │   ├── stm32f4xx_ll_exti.h
│   │       │       │   ├── stm32f4xx_ll_fmc.h
│   │       │       │   ├── stm32f4xx_ll_fsmc.h
│   │       │       │   ├── stm32f4xx_ll_gpio.h
│   │       │       │   ├── stm32f4xx_ll_i2c.h
│   │       │       │   ├── stm32f4xx_ll_iwdg.h
│   │       │       │   ├── stm32f4xx_ll_lptim.h
│   │       │       │   ├── stm32f4xx_ll_pwr.h
│   │       │       │   ├── stm32f4xx_ll_rcc.h
│   │       │       │   ├── stm32f4xx_ll_rng.h
│   │       │       │   ├── stm32f4xx_ll_rtc.h
│   │       │       │   ├── stm32f4xx_ll_sdmmc.h
│   │       │       │   ├── stm32f4xx_ll_spi.h
│   │       │       │   ├── stm32f4xx_ll_system.h
│   │       │       │   ├── stm32f4xx_ll_tim.h
│   │       │       │   ├── stm32f4xx_ll_usart.h
│   │       │       │   ├── stm32f4xx_ll_usb.h
│   │       │       │   ├── stm32f4xx_ll_utils.h
│   │       │       │   └── stm32f4xx_ll_wwdg.h
│   │       │       ├── Release_Notes.html
│   │       │       └── Src
│   │       │           ├── Legacy
│   │       │           │   └── stm32f4xx_hal_can.c
│   │       │           ├── stm32f4xx_hal.c
│   │       │           ├── stm32f4xx_hal_adc.c
│   │       │           ├── stm32f4xx_hal_adc_ex.c
│   │       │           ├── stm32f4xx_hal_can.c
│   │       │           ├── stm32f4xx_hal_cec.c
│   │       │           ├── stm32f4xx_hal_cortex.c
│   │       │           ├── stm32f4xx_hal_crc.c
│   │       │           ├── stm32f4xx_hal_cryp.c
│   │       │           ├── stm32f4xx_hal_cryp_ex.c
│   │       │           ├── stm32f4xx_hal_dac.c
│   │       │           ├── stm32f4xx_hal_dac_ex.c
│   │       │           ├── stm32f4xx_hal_dcmi.c
│   │       │           ├── stm32f4xx_hal_dcmi_ex.c
│   │       │           ├── stm32f4xx_hal_dfsdm.c
│   │       │           ├── stm32f4xx_hal_dma.c
│   │       │           ├── stm32f4xx_hal_dma2d.c
│   │       │           ├── stm32f4xx_hal_dma_ex.c
│   │       │           ├── stm32f4xx_hal_dsi.c
│   │       │           ├── stm32f4xx_hal_eth.c
│   │       │           ├── stm32f4xx_hal_flash.c
│   │       │           ├── stm32f4xx_hal_flash_ex.c
│   │       │           ├── stm32f4xx_hal_flash_ramfunc.c
│   │       │           ├── stm32f4xx_hal_fmpi2c.c
│   │       │           ├── stm32f4xx_hal_fmpi2c_ex.c
│   │       │           ├── stm32f4xx_hal_gpio.c
│   │       │           ├── stm32f4xx_hal_hash.c
│   │       │           ├── stm32f4xx_hal_hash_ex.c
│   │       │           ├── stm32f4xx_hal_hcd.c
│   │       │           ├── stm32f4xx_hal_i2c.c
│   │       │           ├── stm32f4xx_hal_i2c_ex.c
│   │       │           ├── stm32f4xx_hal_i2s.c
│   │       │           ├── stm32f4xx_hal_i2s_ex.c
│   │       │           ├── stm32f4xx_hal_irda.c
│   │       │           ├── stm32f4xx_hal_iwdg.c
│   │       │           ├── stm32f4xx_hal_lptim.c
│   │       │           ├── stm32f4xx_hal_ltdc.c
│   │       │           ├── stm32f4xx_hal_ltdc_ex.c
│   │       │           ├── stm32f4xx_hal_mmc.c
│   │       │           ├── stm32f4xx_hal_msp_template.c
│   │       │           ├── stm32f4xx_hal_nand.c
│   │       │           ├── stm32f4xx_hal_nor.c
│   │       │           ├── stm32f4xx_hal_pccard.c
│   │       │           ├── stm32f4xx_hal_pcd.c
│   │       │           ├── stm32f4xx_hal_pcd_ex.c
│   │       │           ├── stm32f4xx_hal_pwr.c
│   │       │           ├── stm32f4xx_hal_pwr_ex.c
│   │       │           ├── stm32f4xx_hal_qspi.c
│   │       │           ├── stm32f4xx_hal_rcc.c
│   │       │           ├── stm32f4xx_hal_rcc_ex.c
│   │       │           ├── stm32f4xx_hal_rng.c
│   │       │           ├── stm32f4xx_hal_rtc.c
│   │       │           ├── stm32f4xx_hal_rtc_ex.c
│   │       │           ├── stm32f4xx_hal_sai.c
│   │       │           ├── stm32f4xx_hal_sai_ex.c
│   │       │           ├── stm32f4xx_hal_sd.c
│   │       │           ├── stm32f4xx_hal_sdram.c
│   │       │           ├── stm32f4xx_hal_smartcard.c
│   │       │           ├── stm32f4xx_hal_spdifrx.c
│   │       │           ├── stm32f4xx_hal_spi.c
│   │       │           ├── stm32f4xx_hal_sram.c
│   │       │           ├── stm32f4xx_hal_tim.c
│   │       │           ├── stm32f4xx_hal_tim_ex.c
│   │       │           ├── stm32f4xx_hal_timebase_rtc_alarm_template.c
│   │       │           ├── stm32f4xx_hal_timebase_rtc_wakeup_template.c
│   │       │           ├── stm32f4xx_hal_timebase_tim_template.c
│   │       │           ├── stm32f4xx_hal_uart.c
│   │       │           ├── stm32f4xx_hal_usart.c
│   │       │           ├── stm32f4xx_hal_wwdg.c
│   │       │           ├── stm32f4xx_ll_adc.c
│   │       │           ├── stm32f4xx_ll_crc.c
│   │       │           ├── stm32f4xx_ll_dac.c
│   │       │           ├── stm32f4xx_ll_dma.c
│   │       │           ├── stm32f4xx_ll_dma2d.c
│   │       │           ├── stm32f4xx_ll_exti.c
│   │       │           ├── stm32f4xx_ll_fmc.c
│   │       │           ├── stm32f4xx_ll_fsmc.c
│   │       │           ├── stm32f4xx_ll_gpio.c
│   │       │           ├── stm32f4xx_ll_i2c.c
│   │       │           ├── stm32f4xx_ll_lptim.c
│   │       │           ├── stm32f4xx_ll_pwr.c
│   │       │           ├── stm32f4xx_ll_rcc.c
│   │       │           ├── stm32f4xx_ll_rng.c
│   │       │           ├── stm32f4xx_ll_rtc.c
│   │       │           ├── stm32f4xx_ll_sdmmc.c
│   │       │           ├── stm32f4xx_ll_spi.c
│   │       │           ├── stm32f4xx_ll_tim.c
│   │       │           ├── stm32f4xx_ll_usart.c
│   │       │           ├── stm32f4xx_ll_usb.c
│   │       │           └── stm32f4xx_ll_utils.c
│   │       ├── Program
│   │       │   ├── algorithms
│   │       │   │   ├── mathUnit.c
│   │       │   │   └── mathUnit.h
│   │       │   ├── boardConfig.h
│   │       │   ├── drivers
│   │       │   │   ├── stm32f4_delay.c
│   │       │   │   ├── stm32f4_delay.h
│   │       │   │   ├── stm32f4_msp.c
│   │       │   │   ├── stm32f4_system.h
│   │       │   │   ├── stm32f4_tim.c
│   │       │   │   ├── stm32f4_tim.h
│   │       │   │   ├── stm32f4_uart.c
│   │       │   │   └── stm32f4_uart.h
│   │       │   ├── main.c
│   │       │   ├── modules
│   │       │   │   ├── kSerial.c
│   │       │   │   ├── kSerial.h
│   │       │   │   ├── serial.c
│   │       │   │   └── serial.h
│   │       │   ├── stm32f4xx_bsp.c
│   │       │   ├── stm32f4xx_bsp.h
│   │       │   ├── stm32f4xx_hal_conf.h
│   │       │   └── stm32f4xx_it.c
│   │       ├── Project
│   │       │   ├── ClearFile.bat
│   │       │   ├── DebugConfig
│   │       │   │   └── STM32F411C_STM32F411CEUx.dbgconf
│   │       │   ├── JLinkSettings.ini
│   │       │   ├── ProjSTM32.uvguix.Hom
│   │       │   ├── ProjSTM32.uvoptx
│   │       │   ├── ProjSTM32.uvprojx
│   │       │   └── RTE
│   │       │       └── _STM32F411C
│   │       │           └── RTE_Components.h
│   │       ├── kOscilloscope.m
│   │       ├── kSerial.m
│   │       ├── kSerialOscilloscope.m
│   │       ├── serialOscilloscope.m
│   │       └── serialPacket.m
│   └── hardware
│       ├── SmartIMU.BomDoc
│       ├── SmartIMU.OutJob
│       ├── SmartIMU.PcbDoc
│       ├── SmartIMU.PrjPCB
│       ├── [01] COVER PAGE.SchDoc
│       ├── [02] BLOCK DIAGRAM.SchDoc
│       ├── [03] POWER.SchDoc
│       ├── [04] MICROCONTROLLER.SchDoc
│       ├── [05] RADIO.SchDoc
│       ├── [06] INERTIAL SENSOR.SchDoc
│       └── [07] EXPANSION.SchDoc
└── 好例子网_SmartIMU-master.zip

487 directories, 4684 files


标签: IMU kf

实例下载地址

IMU实例

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警