实例介绍
Da14580官方开发包SDK5.0.3
【实例截图】
【核心代码】
f96f0778-5ef3-46fb-b153-b1cb90910045
└── DA1458x_SDK
└── 5.0.3
├── binaries
│ ├── da1458x
│ │ └── prod_test
│ │ ├── prod_test_580.hex
│ │ ├── prod_test_581.hex
│ │ └── prod_test_583.hex
│ └── host
│ └── windows
│ ├── mkimage
│ │ └── mkimage.exe
│ ├── prod_test_cmds
│ │ └── prodtest.exe
│ ├── proximity
│ │ ├── monitor
│ │ │ ├── host_proxm_sdk_581.exe
│ │ │ └── host_proxm_sdk.exe
│ │ └── reporter
│ │ ├── host_proxr_sdk_581.exe
│ │ └── host_proxr_sdk.exe
│ ├── spota
│ │ └── initiator
│ │ ├── host_spotai_581.exe
│ │ └── host_spotai.exe
│ └── suota
│ └── initiator
│ ├── host_suotai_581.exe
│ └── host_suotai.exe
├── license.txt
├── projects
│ ├── host_apps
│ │ ├── da1458x
│ │ │ └── proximity
│ │ │ └── reporter
│ │ │ ├── da14580_config.h
│ │ │ ├── host_proxr.uvopt
│ │ │ ├── host_proxr.uvoptx
│ │ │ ├── host_proxr.uvproj
│ │ │ ├── host_proxr.uvprojx
│ │ │ ├── include
│ │ │ │ ├── app_button_led.h
│ │ │ │ ├── app.h
│ │ │ │ ├── app_task.h
│ │ │ │ ├── ble_msg.h
│ │ │ │ ├── gap_task.h
│ │ │ │ ├── peripherals.h
│ │ │ │ ├── prox_reporter_ext_581.h
│ │ │ │ ├── prox_reporter_ext.h
│ │ │ │ ├── queue.h
│ │ │ │ ├── spi_booter.h
│ │ │ │ ├── spi_hci_msg.h
│ │ │ │ ├── user_periph_setup.h
│ │ │ │ └── user_profiles_config.h
│ │ │ ├── src
│ │ │ │ ├── app_button_led.c
│ │ │ │ ├── app.c
│ │ │ │ ├── app_task.c
│ │ │ │ ├── ble_msg.c
│ │ │ │ ├── interrupts.c
│ │ │ │ ├── peripherals.c
│ │ │ │ ├── queue.c
│ │ │ │ ├── spi_booter.c
│ │ │ │ ├── spi_hci_msg.c
│ │ │ │ └── timer.c
│ │ │ ├── startup
│ │ │ │ ├── startup_CMSDK_CM0.s
│ │ │ │ └── system_CMSDK.c
│ │ │ └── sysram.ini
│ │ └── windows
│ │ ├── proximity
│ │ │ ├── monitor
│ │ │ │ ├── host_proxm_sdk
│ │ │ │ │ ├── host_proxm_sdk.vcxproj
│ │ │ │ │ ├── host_proxm_sdk.vcxproj.filters
│ │ │ │ │ └── host_proxm_sdk.vcxproj.user
│ │ │ │ ├── host_proxm_sdk_581
│ │ │ │ │ ├── host_proxm_sdk_581.vcxproj
│ │ │ │ │ ├── host_proxm_sdk_581.vcxproj.filters
│ │ │ │ │ └── host_proxm_sdk_581.vcxproj.user
│ │ │ │ ├── host_proxm.sln
│ │ │ │ ├── include
│ │ │ │ │ ├── app.h
│ │ │ │ │ ├── app_task.h
│ │ │ │ │ ├── ble_msg.h
│ │ │ │ │ ├── compiler.h
│ │ │ │ │ ├── console.h
│ │ │ │ │ ├── da14580_config.h
│ │ │ │ │ ├── da14581_config.h
│ │ │ │ │ ├── ll.h
│ │ │ │ │ ├── queue.h
│ │ │ │ │ ├── stdbool.h
│ │ │ │ │ ├── stdtypes.h
│ │ │ │ │ └── uart.h
│ │ │ │ └── src
│ │ │ │ ├── app.c
│ │ │ │ ├── app_task.c
│ │ │ │ ├── ble_msg.c
│ │ │ │ ├── console.c
│ │ │ │ ├── queue.c
│ │ │ │ └── uart.c
│ │ │ └── reporter
│ │ │ ├── host_proxr_sdk
│ │ │ │ ├── host_proxr_sdk.vcxproj
│ │ │ │ ├── host_proxr_sdk.vcxproj.filters
│ │ │ │ └── host_proxr_sdk.vcxproj.user
│ │ │ ├── host_proxr_sdk_581
│ │ │ │ ├── host_proxr_sdk_581.vcxproj
│ │ │ │ ├── host_proxr_sdk_581.vcxproj.filters
│ │ │ │ └── host_proxr_sdk_581.vcxproj.user
│ │ │ ├── host_proxr.sln
│ │ │ ├── include
│ │ │ │ ├── app.h
│ │ │ │ ├── app_spotar.h
│ │ │ │ ├── app_task.h
│ │ │ │ ├── ble_msg.h
│ │ │ │ ├── compiler.h
│ │ │ │ ├── console.h
│ │ │ │ ├── da14580_config.h
│ │ │ │ ├── da14581_config.h
│ │ │ │ ├── ll.h
│ │ │ │ ├── queue.h
│ │ │ │ ├── stdbool.h
│ │ │ │ ├── stdtypes.h
│ │ │ │ └── uart.h
│ │ │ └── src
│ │ │ ├── app.c
│ │ │ ├── app_spotar.c
│ │ │ ├── app_task.c
│ │ │ ├── ble_msg.c
│ │ │ ├── console.c
│ │ │ ├── queue.c
│ │ │ └── uart.c
│ │ ├── spota
│ │ │ └── initiator
│ │ │ ├── host_spotai
│ │ │ │ ├── host_spotai.vcxproj
│ │ │ │ ├── host_spotai.vcxproj.filters
│ │ │ │ └── host_spotai.vcxproj.user
│ │ │ ├── host_spotai_581
│ │ │ │ ├── host_spotai_581.vcxproj
│ │ │ │ ├── host_spotai_581.vcxproj.filters
│ │ │ │ └── host_spotai_581.vcxproj.user
│ │ │ ├── host_spotai.sln
│ │ │ ├── include
│ │ │ │ ├── app.h
│ │ │ │ ├── app_task.h
│ │ │ │ ├── ble_msg.h
│ │ │ │ ├── compiler.h
│ │ │ │ ├── da14580_config.h
│ │ │ │ ├── da14581_config.h
│ │ │ │ ├── ll.h
│ │ │ │ ├── queue.h
│ │ │ │ ├── stdbool.h
│ │ │ │ ├── stdtypes.h
│ │ │ │ ├── uart.h
│ │ │ │ └── user_profiles_config.h
│ │ │ └── src
│ │ │ ├── app.c
│ │ │ ├── app_task.c
│ │ │ ├── ble_msg.c
│ │ │ ├── queue.c
│ │ │ └── uart.c
│ │ └── suota
│ │ └── initiator
│ │ ├── host_suotai
│ │ │ ├── host_suotai.vcxproj
│ │ │ ├── host_suotai.vcxproj.filters
│ │ │ └── host_suotai.vcxproj.user
│ │ ├── host_suotai_581
│ │ │ ├── host_suotai_581.vcxproj
│ │ │ ├── host_suotai_581.vcxproj.filters
│ │ │ └── host_suotai_581.vcxproj.user
│ │ ├── host_suotai.sln
│ │ ├── include
│ │ │ ├── app.h
│ │ │ ├── app_task.h
│ │ │ ├── ble_msg.h
│ │ │ ├── compiler.h
│ │ │ ├── da14580_config.h
│ │ │ ├── da14581_config.h
│ │ │ ├── ll.h
│ │ │ ├── queue.h
│ │ │ ├── stdbool.h
│ │ │ ├── stdtypes.h
│ │ │ ├── uart.h
│ │ │ └── user_profiles_config.h
│ │ └── src
│ │ ├── app.c
│ │ ├── app_task.c
│ │ ├── ble_msg.c
│ │ ├── queue.c
│ │ └── uart.c
│ └── target_apps
│ ├── ble_examples
│ │ ├── ble_app_barebone
│ │ │ ├── Keil_4
│ │ │ │ ├── ble_app_barebone.uvopt
│ │ │ │ ├── ble_app_barebone.uvproj
│ │ │ │ └── unused.txt
│ │ │ ├── Keil_5
│ │ │ │ ├── ble_app_barebone.uvoptx
│ │ │ │ ├── ble_app_barebone.uvprojx
│ │ │ │ └── unused.txt
│ │ │ └── src
│ │ │ ├── config
│ │ │ │ ├── da1458x_config_advanced.h
│ │ │ │ ├── da1458x_config_basic.h
│ │ │ │ ├── user_callback_config.h
│ │ │ │ ├── user_config.h
│ │ │ │ ├── user_config_sw_ver.h
│ │ │ │ ├── user_modules_config.h
│ │ │ │ ├── user_periph_setup.h
│ │ │ │ └── user_profiles_config.h
│ │ │ ├── platform
│ │ │ │ └── user_periph_setup.c
│ │ │ ├── user_barebone.c
│ │ │ └── user_barebone.h
│ │ ├── ble_app_peripheral
│ │ │ ├── Keil_4
│ │ │ │ ├── ble_app_peripheral.uvopt
│ │ │ │ ├── ble_app_peripheral.uvproj
│ │ │ │ └── unused.txt
│ │ │ ├── Keil_5
│ │ │ │ ├── ble_app_peripheral.uvoptx
│ │ │ │ ├── ble_app_peripheral.uvprojx
│ │ │ │ └── unused.txt
│ │ │ └── src
│ │ │ ├── config
│ │ │ │ ├── da1458x_config_advanced.h
│ │ │ │ ├── da1458x_config_basic.h
│ │ │ │ ├── user_callback_config.h
│ │ │ │ ├── user_config.h
│ │ │ │ ├── user_config_sw_ver.h
│ │ │ │ ├── user_custs_config.h
│ │ │ │ ├── user_modules_config.h
│ │ │ │ ├── user_periph_setup.h
│ │ │ │ └── user_profiles_config.h
│ │ │ ├── platform
│ │ │ │ └── user_periph_setup.c
│ │ │ ├── user_custs1_impl.c
│ │ │ ├── user_custs1_impl.h
│ │ │ ├── user_peripheral.c
│ │ │ └── user_peripheral.h
│ │ ├── ble_app_profile
│ │ │ ├── Keil_4
│ │ │ │ ├── ble_app_profile.uvopt
│ │ │ │ ├── ble_app_profile.uvproj
│ │ │ │ └── unused.txt
│ │ │ ├── Keil_5
│ │ │ │ ├── ble_app_profile.uvoptx
│ │ │ │ ├── ble_app_profile.uvprojx
│ │ │ │ └── unused.txt
│ │ │ └── src
│ │ │ ├── config
│ │ │ │ ├── da1458x_config_advanced.h
│ │ │ │ ├── da1458x_config_basic.h
│ │ │ │ ├── user_callback_config.h
│ │ │ │ ├── user_config.h
│ │ │ │ ├── user_config_sw_ver.h
│ │ │ │ ├── user_custs_config.h
│ │ │ │ ├── user_modules_config.h
│ │ │ │ ├── user_periph_setup.h
│ │ │ │ └── user_profiles_config.h
│ │ │ ├── platform
│ │ │ │ └── user_periph_setup.c
│ │ │ ├── user_profile.c
│ │ │ └── user_profile.h
│ │ ├── prox_monitor_ext
│ │ │ ├── Keil_4
│ │ │ │ ├── prox_monitor_ext.uvopt
│ │ │ │ ├── prox_monitor_ext.uvproj
│ │ │ │ └── unused.txt
│ │ │ ├── Keil_5
│ │ │ │ ├── prox_monitor_ext.uvoptx
│ │ │ │ ├── prox_monitor_ext.uvprojx
│ │ │ │ └── unused.txt
│ │ │ └── src
│ │ │ ├── config
│ │ │ │ ├── da1458x_config_advanced.h
│ │ │ │ ├── da1458x_config_basic.h
│ │ │ │ ├── user_callback_config.h
│ │ │ │ ├── user_config.h
│ │ │ │ ├── user_periph_setup.h
│ │ │ │ └── user_profiles_config.h
│ │ │ ├── platform
│ │ │ │ └── user_periph_setup.c
│ │ │ ├── user_proxm.c
│ │ │ └── user_proxm.h
│ │ ├── prox_reporter
│ │ │ ├── Keil_4
│ │ │ │ ├── prox_reporter.uvopt
│ │ │ │ ├── prox_reporter.uvproj
│ │ │ │ └── unused.txt
│ │ │ ├── Keil_5
│ │ │ │ ├── prox_reporter.uvoptx
│ │ │ │ ├── prox_reporter.uvprojx
│ │ │ │ └── unused.txt
│ │ │ └── src
│ │ │ ├── config
│ │ │ │ ├── da1458x_config_advanced.h
│ │ │ │ ├── da1458x_config_basic.h
│ │ │ │ ├── user_callback_config.h
│ │ │ │ ├── user_config.h
│ │ │ │ ├── user_config_sw_ver.h
│ │ │ │ ├── user_modules_config.h
│ │ │ │ ├── user_periph_setup.h
│ │ │ │ └── user_profiles_config.h
│ │ │ ├── platform
│ │ │ │ └── user_periph_setup.c
│ │ │ ├── user_proxr.c
│ │ │ └── user_proxr.h
│ │ ├── prox_reporter_ext
│ │ │ ├── Keil_4
│ │ │ │ ├── prox_reporter_ext.uvopt
│ │ │ │ ├── prox_reporter_ext.uvproj
│ │ │ │ └── unused.txt
│ │ │ ├── Keil_5
│ │ │ │ ├── prox_reporter_ext.uvoptx
│ │ │ │ ├── prox_reporter_ext.uvprojx
│ │ │ │ └── unused.txt
│ │ │ └── src
│ │ │ ├── config
│ │ │ │ ├── da1458x_config_advanced.h
│ │ │ │ ├── da1458x_config_basic.h
│ │ │ │ ├── user_callback_config.h
│ │ │ │ ├── user_config.h
│ │ │ │ ├── user_periph_setup.h
│ │ │ │ └── user_profiles_config.h
│ │ │ ├── platform
│ │ │ │ └── user_periph_setup.c
│ │ │ ├── user_proxr_ext.c
│ │ │ └── user_proxr_ext.h
│ │ └── prox_reporter_ext_spi
│ │ ├── Keil_4
│ │ │ ├── prox_reporter_ext_spi.uvopt
│ │ │ ├── prox_reporter_ext_spi.uvproj
│ │ │ └── unused.txt
│ │ ├── Keil_5
│ │ │ ├── prox_reporter_ext_spi.uvoptx
│ │ │ ├── prox_reporter_ext_spi.uvprojx
│ │ │ └── unused.txt
│ │ └── src
│ │ ├── arch_hci_spi.c
│ │ ├── config
│ │ │ ├── da1458x_config_advanced.h
│ │ │ ├── da1458x_config_basic.h
│ │ │ ├── user_callback_config.h
│ │ │ ├── user_config.h
│ │ │ ├── user_periph_setup.h
│ │ │ └── user_profiles_config.h
│ │ ├── platform
│ │ │ └── user_periph_setup.c
│ │ ├── user_proxr_ext_spi.c
│ │ └── user_proxr_ext_spi.h
│ ├── peripheral_examples
│ │ ├── adc
│ │ │ └── batt_lvl
│ │ │ ├── include
│ │ │ │ └── user_periph_setup.h
│ │ │ ├── Keil_4
│ │ │ │ ├── batt_lvl.uvopt
│ │ │ │ └── batt_lvl.uvproj
│ │ │ ├── Keil_5
│ │ │ │ ├── batt_lvl.uvoptx
│ │ │ │ └── batt_lvl.uvprojx
│ │ │ └── src
│ │ │ ├── main.c
│ │ │ └── user_periph_setup.c
│ │ ├── blinky
│ │ │ ├── include
│ │ │ │ └── user_periph_setup.h
│ │ │ ├── Keil_4
│ │ │ │ ├── blinky.uvopt
│ │ │ │ └── blinky.uvproj
│ │ │ ├── Keil_5
│ │ │ │ ├── blinky.uvoptx
│ │ │ │ └── blinky.uvprojx
│ │ │ └── src
│ │ │ ├── main.c
│ │ │ └── user_periph_setup.c
│ │ ├── i2c
│ │ │ └── i2c_eeprom
│ │ │ ├── include
│ │ │ │ └── user_periph_setup.h
│ │ │ ├── Keil_4
│ │ │ │ ├── i2c_eeprom.uvopt
│ │ │ │ └── i2c_eeprom.uvproj
│ │ │ ├── Keil_5
│ │ │ │ ├── i2c_eeprom.uvoptx
│ │ │ │ └── i2c_eeprom.uvprojx
│ │ │ └── src
│ │ │ ├── main.c
│ │ │ └── user_periph_setup.c
│ │ ├── quadrature_decoder
│ │ │ ├── include
│ │ │ │ └── user_periph_setup.h
│ │ │ ├── Keil_4
│ │ │ │ ├── quadrature_decoder.uvopt
│ │ │ │ └── quadrature_decoder.uvproj
│ │ │ ├── Keil_5
│ │ │ │ ├── quadrature_decoder.uvoptx
│ │ │ │ └── quadrature_decoder.uvprojx
│ │ │ └── src
│ │ │ ├── main.c
│ │ │ └── user_periph_setup.c
│ │ ├── shared
│ │ │ ├── common_uart
│ │ │ │ ├── common_uart.c
│ │ │ │ └── common_uart.h
│ │ │ ├── peripheral_examples.sct
│ │ │ ├── startup
│ │ │ │ ├── boot_vectors.s
│ │ │ │ ├── per_ex_hard_fault.c
│ │ │ │ ├── startup_CMSDK_CM0.s
│ │ │ │ ├── system_ARMCM0.c
│ │ │ │ └── system_CMSDK.c
│ │ │ └── sysram.ini
│ │ ├── spi
│ │ │ └── spi_flash
│ │ │ ├── include
│ │ │ │ └── user_periph_setup.h
│ │ │ ├── Keil_4
│ │ │ │ ├── spi_flash.uvopt
│ │ │ │ └── spi_flash.uvproj
│ │ │ ├── Keil_5
│ │ │ │ ├── spi_flash.uvoptx
│ │ │ │ └── spi_flash.uvprojx
│ │ │ └── src
│ │ │ ├── main.c
│ │ │ └── user_periph_setup.c
│ │ ├── systick
│ │ │ ├── include
│ │ │ │ └── user_periph_setup.h
│ │ │ ├── Keil_4
│ │ │ │ ├── systick.uvopt
│ │ │ │ └── systick.uvproj
│ │ │ ├── Keil_5
│ │ │ │ ├── systick.uvoptx
│ │ │ │ └── systick.uvprojx
│ │ │ └── src
│ │ │ ├── main.c
│ │ │ └── user_periph_setup.c
│ │ ├── timer0
│ │ │ ├── timer0_general
│ │ │ │ ├── include
│ │ │ │ │ └── user_periph_setup.h
│ │ │ │ ├── Keil_4
│ │ │ │ │ ├── timer0_general.uvopt
│ │ │ │ │ └── timer0_general.uvproj
│ │ │ │ ├── Keil_5
│ │ │ │ │ ├── timer0_general.uvoptx
│ │ │ │ │ └── timer0_general.uvprojx
│ │ │ │ └── src
│ │ │ │ ├── main.c
│ │ │ │ └── user_periph_setup.c
│ │ │ └── timer0_pwm
│ │ │ ├── include
│ │ │ │ └── user_periph_setup.h
│ │ │ ├── Keil_4
│ │ │ │ ├── timer0_pwm.uvopt
│ │ │ │ └── timer0_pwm.uvproj
│ │ │ ├── Keil_5
│ │ │ │ ├── timer0_pwm.uvoptx
│ │ │ │ └── timer0_pwm.uvprojx
│ │ │ └── src
│ │ │ ├── main.c
│ │ │ └── user_periph_setup.c
│ │ ├── timer2
│ │ │ └── timer2_pwm
│ │ │ ├── include
│ │ │ │ └── user_periph_setup.h
│ │ │ ├── Keil_4
│ │ │ │ ├── timer2_pwm.uvopt
│ │ │ │ └── timer2_pwm.uvproj
│ │ │ ├── Keil_5
│ │ │ │ ├── timer2_pwm.uvoptx
│ │ │ │ └── timer2_pwm.uvprojx
│ │ │ └── src
│ │ │ ├── main.c
│ │ │ └── user_periph_setup.c
│ │ ├── uart
│ │ │ ├── include
│ │ │ │ └── user_periph_setup.h
│ │ │ ├── Keil_4
│ │ │ │ ├── uart.uvopt
│ │ │ │ └── uart.uvproj
│ │ │ ├── Keil_5
│ │ │ │ ├── uart.uvoptx
│ │ │ │ └── uart.uvprojx
│ │ │ └── src
│ │ │ ├── main.c
│ │ │ └── user_periph_setup.c
│ │ └── uart2_async
│ │ ├── include
│ │ │ ├── ring_buffer.h
│ │ │ ├── uart2_print_string.h
│ │ │ └── user_periph_setup.h
│ │ ├── Keil_4
│ │ │ ├── uart2_async.uvopt
│ │ │ └── uart2_async.uvproj
│ │ ├── Keil_5
│ │ │ ├── uart2_async.uvoptx
│ │ │ └── uart2_async.uvprojx
│ │ └── src
│ │ ├── main.c
│ │ ├── ring_buffer.c
│ │ ├── uart2_loopback_test.c
│ │ ├── uart2_print_string.c
│ │ ├── uart2_read_test.c
│ │ ├── uart2_write_test.c
│ │ └── user_periph_setup.c
│ ├── prod_test
│ │ └── prod_test
│ │ ├── hex2bin.exe
│ │ ├── Keil_4
│ │ │ ├── prod_test.uvopt
│ │ │ └── prod_test.uvproj
│ │ ├── Keil_5
│ │ │ ├── prod_test.uvoptx
│ │ │ └── prod_test.uvprojx
│ │ └── src
│ │ ├── app_audio439.c
│ │ ├── app_audio439.h
│ │ ├── app_audio_codec.c
│ │ ├── app_audio_codec.h
│ │ ├── audio_task.c
│ │ ├── audio_task.h
│ │ ├── audio_test.c
│ │ ├── audio_test.h
│ │ ├── config
│ │ │ ├── da1458x_config_advanced.h
│ │ │ ├── da1458x_config_basic.h
│ │ │ ├── user_callback_config.h
│ │ │ ├── user_config.h
│ │ │ └── user_profiles_config.h
│ │ ├── customer_prod.c
│ │ ├── customer_prod.h
│ │ ├── custom_gtl_eif.c
│ │ ├── custom_gtl_hci.c
│ │ ├── custom_lld.c
│ │ ├── custom_lld_data.c
│ │ ├── custom_lld_evt.c
│ │ ├── pulse.s
│ │ ├── rdtest_api.c
│ │ ├── rdtest_api.h
│ │ ├── rdtest_lowlevel.c
│ │ ├── rdtest_lowlevel.h
│ │ ├── rdtest_support.c
│ │ ├── rdtest_support.h
│ │ ├── system
│ │ │ ├── app_audio439_config.h
│ │ │ ├── mainloop_callbacks.c
│ │ │ ├── mainloop_callbacks.h
│ │ │ ├── user_periph_setup.c
│ │ │ └── user_periph_setup.h
│ │ └── xtal_cal.c
│ └── template
│ ├── empty_peripheral_template
│ │ ├── Keil_4
│ │ │ ├── empty_peripheral_template.uvopt
│ │ │ ├── empty_peripheral_template.uvproj
│ │ │ └── unused.txt
│ │ ├── Keil_5
│ │ │ ├── empty_peripheral_template.uvoptx
│ │ │ ├── empty_peripheral_template.uvprojx
│ │ │ └── unused.txt
│ │ └── src
│ │ ├── config
│ │ │ ├── da1458x_config_advanced.h
│ │ │ ├── da1458x_config_basic.h
│ │ │ ├── user_callback_config.h
│ │ │ ├── user_config.h
│ │ │ ├── user_config_sw_ver.h
│ │ │ ├── user_custs_config.h
│ │ │ ├── user_modules_config.h
│ │ │ ├── user_periph_setup.h
│ │ │ └── user_profiles_config.h
│ │ ├── platform
│ │ │ └── user_periph_setup.c
│ │ ├── user_empty_peripheral_template.c
│ │ └── user_empty_peripheral_template.h
│ └── empty_template_ext
│ ├── Keil_4
│ │ ├── empty_template_ext.uvopt
│ │ ├── empty_template_ext.uvproj
│ │ └── unused.txt
│ ├── Keil_5
│ │ ├── empty_template_ext.uvoptx
│ │ ├── empty_template_ext.uvprojx
│ │ └── unused.txt
│ └── src
│ ├── config
│ │ ├── da1458x_config_advanced.h
│ │ ├── da1458x_config_basic.h
│ │ ├── user_callback_config.h
│ │ ├── user_config.h
│ │ ├── user_config_sw_ver.h
│ │ ├── user_custs_config.h
│ │ ├── user_periph_setup.h
│ │ └── user_profiles_config.h
│ ├── platform
│ │ └── user_periph_setup.c
│ ├── user_empty_template_ext.c
│ └── user_empty_template_ext.h
├── sdk
│ ├── app_modules
│ │ ├── api
│ │ │ ├── app_adv_data.h
│ │ │ ├── app_api.h
│ │ │ ├── app_callback.h
│ │ │ ├── app_default_handlers.h
│ │ │ ├── app_easy_gap.h
│ │ │ ├── app_easy_msg_utils.h
│ │ │ ├── app_easy_security.h
│ │ │ ├── app_easy_timer.h
│ │ │ ├── app_entry_point.h
│ │ │ ├── app.h
│ │ │ ├── app_mid.h
│ │ │ ├── app_msg_utils.h
│ │ │ ├── app_prf_perm_types.h
│ │ │ ├── app_prf_types.h
│ │ │ ├── app_security.h
│ │ │ ├── app_security_task.h
│ │ │ ├── app_task.h
│ │ │ └── app_user_config.h
│ │ └── src
│ │ ├── app_bass
│ │ │ ├── app_bass.c
│ │ │ ├── app_bass.h
│ │ │ ├── app_bass_task.c
│ │ │ └── app_bass_task.h
│ │ ├── app_common
│ │ │ ├── app.c
│ │ │ ├── app_msg_utils.c
│ │ │ └── app_task.c
│ │ ├── app_custs
│ │ │ ├── app_customs.c
│ │ │ ├── app_customs_common.c
│ │ │ ├── app_customs.h
│ │ │ ├── app_customs_task.c
│ │ │ └── app_customs_task.h
│ │ ├── app_default_hnd
│ │ │ └── app_default_handlers.c
│ │ ├── app_diss
│ │ │ ├── app_diss.c
│ │ │ ├── app_diss.h
│ │ │ ├── app_diss_task.c
│ │ │ └── app_diss_task.h
│ │ ├── app_easy
│ │ │ ├── app_easy_msg_utils.c
│ │ │ ├── app_easy_security.c
│ │ │ └── app_easy_timer.c
│ │ ├── app_entry
│ │ │ └── app_entry_point.c
│ │ ├── app_findme
│ │ │ ├── app_findme.c
│ │ │ ├── app_findme.h
│ │ │ ├── app_findme_task.c
│ │ │ └── app_findme_task.h
│ │ ├── app_proxr
│ │ │ ├── app_proxr.c
│ │ │ ├── app_proxr.h
│ │ │ ├── app_proxr_task.c
│ │ │ └── app_proxr_task.h
│ │ ├── app_sec
│ │ │ ├── app_security.c
│ │ │ └── app_security_task.c
│ │ └── app_spotar
│ │ ├── app_spotar.c
│ │ ├── app_spotar.h
│ │ ├── app_spotar_task.c
│ │ └── app_spotar_task.h
│ ├── ble_stack
│ │ ├── controller
│ │ │ ├── em
│ │ │ │ ├── em_map_ble.h
│ │ │ │ └── em_map_ble_user.h
│ │ │ ├── llc
│ │ │ │ ├── llc_cntl.h
│ │ │ │ ├── llc_data.h
│ │ │ │ ├── llc.h
│ │ │ │ ├── llc_task.h
│ │ │ │ └── llc_util.h
│ │ │ ├── lld
│ │ │ │ ├── lld_data.h
│ │ │ │ ├── lld_evt.h
│ │ │ │ ├── lld.h
│ │ │ │ ├── lld_sleep.h
│ │ │ │ ├── lld_util.h
│ │ │ │ └── lld_wlcoex.h
│ │ │ └── llm
│ │ │ ├── llm.h
│ │ │ ├── llm_task.h
│ │ │ └── llm_util.h
│ │ ├── hcic
│ │ │ ├── hcic_eif.h
│ │ │ ├── hcic.h
│ │ │ ├── hcic_msg.h
│ │ │ └── hcic_task.h
│ │ ├── hcih
│ │ │ ├── hcih_eif.h
│ │ │ ├── hcih.h
│ │ │ ├── hcih_msg.h
│ │ │ └── hcih_task.h
│ │ ├── host
│ │ │ ├── att
│ │ │ │ ├── attc
│ │ │ │ │ ├── attc.h
│ │ │ │ │ └── attc_task.h
│ │ │ │ ├── att.h
│ │ │ │ ├── attm
│ │ │ │ │ ├── attm_cfg.h
│ │ │ │ │ ├── attm_db_128.c
│ │ │ │ │ ├── attm_db_128.h
│ │ │ │ │ ├── attm_db.h
│ │ │ │ │ ├── attm.h
│ │ │ │ │ ├── attm_task.h
│ │ │ │ │ └── attm_util.h
│ │ │ │ └── atts
│ │ │ │ ├── atts.h
│ │ │ │ ├── atts_task.h
│ │ │ │ └── atts_util.h
│ │ │ ├── gap
│ │ │ │ ├── gapc
│ │ │ │ │ ├── gapc.h
│ │ │ │ │ └── gapc_task.h
│ │ │ │ ├── gap_cfg.h
│ │ │ │ ├── gap.h
│ │ │ │ ├── gapm
│ │ │ │ │ ├── gapm.c
│ │ │ │ │ ├── gapm.h
│ │ │ │ │ ├── gapm_task.h
│ │ │ │ │ └── gapm_util.h
│ │ │ │ └── gap_version.h
│ │ │ ├── gatt
│ │ │ │ ├── gattc
│ │ │ │ │ ├── gattc.h
│ │ │ │ │ └── gattc_task.h
│ │ │ │ ├── gatt.h
│ │ │ │ └── gattm
│ │ │ │ ├── gattm.h
│ │ │ │ └── gattm_task.h
│ │ │ ├── l2c
│ │ │ │ ├── l2cc
│ │ │ │ │ ├── l2cc.h
│ │ │ │ │ ├── l2cc_pdu.h
│ │ │ │ │ └── l2cc_task.h
│ │ │ │ └── l2cm
│ │ │ │ ├── l2cm.h
│ │ │ │ ├── l2cm_task.h
│ │ │ │ └── l2cm_util.h
│ │ │ └── smp
│ │ │ ├── smpc
│ │ │ │ ├── smpc.h
│ │ │ │ ├── smpc_task.h
│ │ │ │ └── smpc_util.h
│ │ │ ├── smp_common.h
│ │ │ └── smpm
│ │ │ ├── smpm.h
│ │ │ └── smpm_task.h
│ │ ├── profiles
│ │ │ ├── accel
│ │ │ │ ├── accel.c
│ │ │ │ ├── accel.h
│ │ │ │ ├── accel_task.c
│ │ │ │ └── accel_task.h
│ │ │ ├── adc_notify
│ │ │ │ ├── adc_notify.c
│ │ │ │ ├── adc_notify.h
│ │ │ │ ├── adc_notify_task.c
│ │ │ │ └── adc_notify_task.h
│ │ │ ├── anc
│ │ │ │ ├── ancc
│ │ │ │ │ ├── ancc.c
│ │ │ │ │ ├── ancc.h
│ │ │ │ │ ├── ancc_task.c
│ │ │ │ │ └── ancc_task.h
│ │ │ │ └── anc_common.h
│ │ │ ├── anp
│ │ │ │ ├── anpc
│ │ │ │ │ ├── anpc.c
│ │ │ │ │ ├── anpc.h
│ │ │ │ │ ├── anpc_task.c
│ │ │ │ │ └── anpc_task.h
│ │ │ │ ├── anp_common.h
│ │ │ │ └── anps
│ │ │ │ ├── anps.c
│ │ │ │ ├── anps.h
│ │ │ │ ├── anps_task.c
│ │ │ │ └── anps_task.h
│ │ │ ├── bas
│ │ │ │ ├── basc
│ │ │ │ │ ├── basc.c
│ │ │ │ │ ├── basc.h
│ │ │ │ │ ├── basc_task.c
│ │ │ │ │ └── basc_task.h
│ │ │ │ └── bass
│ │ │ │ ├── bass.c
│ │ │ │ ├── bass.h
│ │ │ │ ├── bass_task.c
│ │ │ │ └── bass_task.h
│ │ │ ├── blp
│ │ │ │ ├── blpc
│ │ │ │ │ ├── blpc.c
│ │ │ │ │ ├── blpc.h
│ │ │ │ │ ├── blpc_task.c
│ │ │ │ │ └── blpc_task.h
│ │ │ │ ├── blp_common.h
│ │ │ │ └── blps
│ │ │ │ ├── blps.c
│ │ │ │ ├── blps.h
│ │ │ │ ├── blps_task.c
│ │ │ │ └── blps_task.h
│ │ │ ├── cpp
│ │ │ │ ├── cppc
│ │ │ │ │ ├── cppc.c
│ │ │ │ │ ├── cppc.h
│ │ │ │ │ ├── cppc_task.c
│ │ │ │ │ └── cppc_task.h
│ │ │ │ ├── cpp_common.h
│ │ │ │ └── cpps
│ │ │ │ ├── cpps.c
│ │ │ │ ├── cpps.h
│ │ │ │ ├── cpps_task.c
│ │ │ │ └── cpps_task.h
│ │ │ ├── cscp
│ │ │ │ ├── cscpc
│ │ │ │ │ ├── cscpc.c
│ │ │ │ │ ├── cscpc.h
│ │ │ │ │ ├── cscpc_task.c
│ │ │ │ │ └── cscpc_task.h
│ │ │ │ ├── cscp_common.h
│ │ │ │ └── cscps
│ │ │ │ ├── cscps.c
│ │ │ │ ├── cscps.h
│ │ │ │ ├── cscps_task.c
│ │ │ │ └── cscps_task.h
│ │ │ ├── custom
│ │ │ │ ├── custom_common.c
│ │ │ │ ├── custom_common.h
│ │ │ │ └── custs
│ │ │ │ ├── custs1.c
│ │ │ │ ├── custs1.h
│ │ │ │ ├── custs1_task.c
│ │ │ │ ├── custs1_task.h
│ │ │ │ ├── custs2.c
│ │ │ │ ├── custs2.h
│ │ │ │ ├── custs2_task.c
│ │ │ │ └── custs2_task.h
│ │ │ ├── device_config
│ │ │ │ ├── device_config.c
│ │ │ │ ├── device_config.h
│ │ │ │ ├── device_config_task.c
│ │ │ │ └── device_config_task.h
│ │ │ ├── dis
│ │ │ │ ├── disc
│ │ │ │ │ ├── disc.c
│ │ │ │ │ ├── disc.h
│ │ │ │ │ ├── disc_task.c
│ │ │ │ │ └── disc_task.h
│ │ │ │ └── diss
│ │ │ │ ├── diss.c
│ │ │ │ ├── diss.h
│ │ │ │ ├── diss_task.c
│ │ │ │ └── diss_task.h
│ │ │ ├── find
│ │ │ │ ├── findl
│ │ │ │ │ ├── findl.c
│ │ │ │ │ ├── findl.h
│ │ │ │ │ ├── findl_task.c
│ │ │ │ │ └── findl_task.h
│ │ │ │ └── findt
│ │ │ │ ├── findt.c
│ │ │ │ ├── findt.h
│ │ │ │ ├── findt_task.c
│ │ │ │ └── findt_task.h
│ │ │ ├── glp
│ │ │ │ ├── glpc
│ │ │ │ │ ├── glpc.c
│ │ │ │ │ ├── glpc.h
│ │ │ │ │ ├── glpc_task.c
│ │ │ │ │ └── glpc_task.h
│ │ │ │ ├── glp_common.h
│ │ │ │ └── glps
│ │ │ │ ├── glps.c
│ │ │ │ ├── glps.h
│ │ │ │ ├── glps_task.c
│ │ │ │ └── glps_task.h
│ │ │ ├── hogp
│ │ │ │ ├── hogpbh
│ │ │ │ │ ├── hogpbh.c
│ │ │ │ │ ├── hogpbh.h
│ │ │ │ │ ├── hogpbh_task.c
│ │ │ │ │ └── hogpbh_task.h
│ │ │ │ ├── hogp_common.h
│ │ │ │ ├── hogpd
│ │ │ │ │ ├── hogpd.c
│ │ │ │ │ ├── hogpd.h
│ │ │ │ │ ├── hogpd_task.c
│ │ │ │ │ └── hogpd_task.h
│ │ │ │ └── hogprh
│ │ │ │ ├── hogprh.c
│ │ │ │ ├── hogprh.h
│ │ │ │ ├── hogprh_task.c
│ │ │ │ └── hogprh_task.h
│ │ │ ├── hrp
│ │ │ │ ├── hrpc
│ │ │ │ │ ├── hrpc.c
│ │ │ │ │ ├── hrpc.h
│ │ │ │ │ ├── hrpc_task.c
│ │ │ │ │ └── hrpc_task.h
│ │ │ │ ├── hrp_common.h
│ │ │ │ └── hrps
│ │ │ │ ├── hrps.c
│ │ │ │ ├── hrps.h
│ │ │ │ ├── hrps_task.c
│ │ │ │ └── hrps_task.h
│ │ │ ├── htp
│ │ │ │ ├── htpc
│ │ │ │ │ ├── htpc.c
│ │ │ │ │ ├── htpc.h
│ │ │ │ │ ├── htpc_task.c
│ │ │ │ │ └── htpc_task.h
│ │ │ │ ├── htp_common.h
│ │ │ │ └── htpt
│ │ │ │ ├── htpt.c
│ │ │ │ ├── htpt.h
│ │ │ │ ├── htpt_task.c
│ │ │ │ └── htpt_task.h
│ │ │ ├── lan
│ │ │ │ ├── lanc
│ │ │ │ │ ├── lanc.c
│ │ │ │ │ ├── lanc.h
│ │ │ │ │ ├── lanc_task.c
│ │ │ │ │ └── lanc_task.h
│ │ │ │ ├── lan_common.h
│ │ │ │ └── lans
│ │ │ │ ├── lans.c
│ │ │ │ ├── lans.h
│ │ │ │ ├── lans_task.c
│ │ │ │ └── lans_task.h
│ │ │ ├── pasp
│ │ │ │ ├── paspc
│ │ │ │ │ ├── paspc.c
│ │ │ │ │ ├── paspc.h
│ │ │ │ │ ├── paspc_task.c
│ │ │ │ │ └── paspc_task.h
│ │ │ │ ├── pasp_common.h
│ │ │ │ └── pasps
│ │ │ │ ├── pasps.c
│ │ │ │ ├── pasps.h
│ │ │ │ ├── pasps_task.c
│ │ │ │ └── pasps_task.h
│ │ │ ├── prf_types.h
│ │ │ ├── prf_utils_128.c
│ │ │ ├── prf_utils_128.h
│ │ │ ├── prf_utils.c
│ │ │ ├── prf_utils.h
│ │ │ ├── prox
│ │ │ │ ├── proxm
│ │ │ │ │ ├── proxm.c
│ │ │ │ │ ├── proxm.h
│ │ │ │ │ ├── proxm_task.c
│ │ │ │ │ └── proxm_task.h
│ │ │ │ └── proxr
│ │ │ │ ├── proxr.c
│ │ │ │ ├── proxr.h
│ │ │ │ ├── proxr_task.c
│ │ │ │ └── proxr_task.h
│ │ │ ├── rscp
│ │ │ │ ├── rscpc
│ │ │ │ │ ├── rscpc.c
│ │ │ │ │ ├── rscpc.h
│ │ │ │ │ ├── rscpc_task.c
│ │ │ │ │ └── rscpc_task.h
│ │ │ │ ├── rscp_common.h
│ │ │ │ └── rscps
│ │ │ │ ├── rscps.c
│ │ │ │ ├── rscps.h
│ │ │ │ ├── rscps_task.c
│ │ │ │ └── rscps_task.h
│ │ │ ├── sample128
│ │ │ │ ├── sample128.c
│ │ │ │ ├── sample128.h
│ │ │ │ ├── sample128_task.c
│ │ │ │ └── sample128_task.h
│ │ │ ├── scpp
│ │ │ │ ├── scppc
│ │ │ │ │ ├── scppc.c
│ │ │ │ │ ├── scppc.h
│ │ │ │ │ ├── scppc_task.c
│ │ │ │ │ └── scppc_task.h
│ │ │ │ ├── scpp_common.h
│ │ │ │ └── scpps
│ │ │ │ ├── scpps.c
│ │ │ │ ├── scpps.h
│ │ │ │ ├── scpps_task.c
│ │ │ │ └── scpps_task.h
│ │ │ ├── spota
│ │ │ │ └── spotar
│ │ │ │ ├── spotar.c
│ │ │ │ ├── spotar.h
│ │ │ │ ├── spotar_task.c
│ │ │ │ └── spotar_task.h
│ │ │ ├── sps
│ │ │ │ ├── sps_client
│ │ │ │ │ ├── sps_client.c
│ │ │ │ │ ├── sps_client.h
│ │ │ │ │ ├── sps_client_task.c
│ │ │ │ │ └── sps_client_task.h
│ │ │ │ └── sps_server
│ │ │ │ ├── sps_server.c
│ │ │ │ ├── sps_server.h
│ │ │ │ ├── sps_server_task.c
│ │ │ │ └── sps_server_task.h
│ │ │ ├── streamdata
│ │ │ │ ├── streamdatad
│ │ │ │ │ ├── streamdatad.c
│ │ │ │ │ ├── streamdatad.h
│ │ │ │ │ ├── streamdatad_task.c
│ │ │ │ │ └── streamdatad_task.h
│ │ │ │ └── streamdatah
│ │ │ │ ├── streamdatah.c
│ │ │ │ ├── streamdatah.h
│ │ │ │ ├── streamdatah_task.c
│ │ │ │ └── streamdatah_task.h
│ │ │ ├── tip
│ │ │ │ ├── tipc
│ │ │ │ │ ├── tipc.c
│ │ │ │ │ ├── tipc.h
│ │ │ │ │ ├── tipc_task.c
│ │ │ │ │ └── tipc_task.h
│ │ │ │ ├── tip_common.h
│ │ │ │ └── tips
│ │ │ │ ├── tips.c
│ │ │ │ ├── tips.h
│ │ │ │ ├── tips_task.c
│ │ │ │ └── tips_task.h
│ │ │ ├── uds
│ │ │ │ ├── uds_common.h
│ │ │ │ └── udss
│ │ │ │ ├── udss.c
│ │ │ │ ├── udss.h
│ │ │ │ ├── udss_task.c
│ │ │ │ └── udss_task.h
│ │ │ ├── wpt
│ │ │ │ ├── wptc
│ │ │ │ │ ├── wptc.c
│ │ │ │ │ ├── wptc.h
│ │ │ │ │ ├── wptc_task.c
│ │ │ │ │ └── wptc_task.h
│ │ │ │ ├── wpt_common.h
│ │ │ │ └── wpts
│ │ │ │ ├── wpts.c
│ │ │ │ ├── wpts.h
│ │ │ │ ├── wpts_task.c
│ │ │ │ └── wpts_task.h
│ │ │ └── wss
│ │ │ └── wsss
│ │ │ ├── wsss.c
│ │ │ ├── wsss.h
│ │ │ ├── wsss_task.c
│ │ │ └── wsss_task.h
│ │ ├── rwble
│ │ │ ├── rwble.c
│ │ │ ├── rwble_config.h
│ │ │ └── rwble.h
│ │ └── rwble_hl
│ │ ├── rwble_hl_config.h
│ │ └── rwble_hl.h
│ ├── common_project_files
│ │ ├── da1458x_periph_setup.h
│ │ ├── da1458x_scatter_config.h
│ │ ├── da1458x_stack_config.h
│ │ ├── misc
│ │ │ ├── rom_symdef_581.txt
│ │ │ ├── rom_symdef_prodtest_581.txt
│ │ │ ├── rom_symdef_prodtest.txt
│ │ │ ├── rom_symdef.txt
│ │ │ └── sysram_case23.ini
│ │ └── scatterfiles
│ │ ├── scatterfile_common_581.sct
│ │ ├── scatterfile_common.sct
│ │ ├── scatterfile_prodtest_580.sct
│ │ └── scatterfile_prodtest_581.sct
│ └── platform
│ ├── arch
│ │ ├── arch_api.h
│ │ ├── arch.h
│ │ ├── boot
│ │ │ └── rvds
│ │ │ ├── boot.h
│ │ │ ├── boot_vectors.s
│ │ │ └── system_ARMCM0.c
│ │ ├── compiler
│ │ │ └── rvds
│ │ │ └── compiler.h
│ │ ├── ll
│ │ │ └── rvds
│ │ │ └── ll.h
│ │ ├── main
│ │ │ ├── arch_hci_spi.c
│ │ │ ├── arch_main.c
│ │ │ ├── arch_patch.c
│ │ │ ├── arch_patch.h
│ │ │ ├── arch_sleep.c
│ │ │ ├── arch_system.c
│ │ │ ├── arch_system.h
│ │ │ ├── arch_wdg.h
│ │ │ ├── hardfault_handler.c
│ │ │ ├── jump_table.c
│ │ │ └── nmi_handler.c
│ │ ├── plf.h
│ │ └── system_settings.h
│ ├── core_modules
│ │ ├── arch_console
│ │ │ ├── arch_console.c
│ │ │ └── arch_console.h
│ │ ├── common
│ │ │ └── api
│ │ │ ├── co_bt.h
│ │ │ ├── co_buf.h
│ │ │ ├── co_endian.h
│ │ │ ├── co_error.h
│ │ │ ├── co_list.h
│ │ │ ├── co_math.h
│ │ │ ├── co_utils.h
│ │ │ └── co_version.h
│ │ ├── crypto
│ │ │ ├── aes_api.c
│ │ │ ├── aes_api.h
│ │ │ ├── aes.c
│ │ │ ├── aes.h
│ │ │ ├── aes_locl.h
│ │ │ ├── aes_task.c
│ │ │ ├── aes_task.h
│ │ │ ├── os_int.h
│ │ │ ├── os_port.h
│ │ │ ├── sw_aes.c
│ │ │ └── sw_aes.h
│ │ ├── dbg
│ │ │ └── api
│ │ │ ├── dbg.h
│ │ │ ├── dbg_swdiag.h
│ │ │ ├── dbg_task.h
│ │ │ └── dbg_tester.h
│ │ ├── gtl
│ │ │ ├── api
│ │ │ │ ├── gtl.h
│ │ │ │ └── gtl_task.h
│ │ │ └── src
│ │ │ ├── gtl_eif.h
│ │ │ ├── gtl_env.h
│ │ │ └── gtl_hci.h
│ │ ├── ke
│ │ │ ├── api
│ │ │ │ ├── ke_config.h
│ │ │ │ ├── ke_event.h
│ │ │ │ ├── ke.h
│ │ │ │ ├── ke_mem.h
│ │ │ │ ├── ke_msg.h
│ │ │ │ ├── ke_task.h
│ │ │ │ └── ke_timer.h
│ │ │ └── src
│ │ │ ├── ke_env.h
│ │ │ └── ke_queue.h
│ │ ├── nvds
│ │ │ ├── api
│ │ │ │ └── nvds.h
│ │ │ └── src
│ │ │ └── nvds.c
│ │ ├── rf
│ │ │ ├── api
│ │ │ │ ├── pll_vcocal_lut.h
│ │ │ │ ├── reg_ripple.h
│ │ │ │ ├── rf_580.h
│ │ │ │ └── rf.h
│ │ │ └── src
│ │ │ └── rf_580.c
│ │ ├── rwip
│ │ │ ├── api
│ │ │ │ ├── rwip_config.h
│ │ │ │ └── rwip.h
│ │ │ └── src
│ │ │ └── rwip.c
│ │ └── wlan_coex
│ │ ├── wlan_coex.c
│ │ └── wlan_coex.h
│ ├── driver
│ │ ├── accel
│ │ │ ├── lis3dh_driver.c
│ │ │ └── lis3dh_driver.h
│ │ ├── adc
│ │ │ ├── adc.c
│ │ │ └── adc.h
│ │ ├── battery
│ │ │ ├── battery.c
│ │ │ └── battery.h
│ │ ├── coex
│ │ │ ├── drcoexgenevtreg.h
│ │ │ └── drcoexgen.h
│ │ ├── emi
│ │ │ └── emi.h
│ │ ├── gpio
│ │ │ ├── gpio.c
│ │ │ └── gpio.h
│ │ ├── i2c_eeprom
│ │ │ ├── i2c_eeprom.c
│ │ │ └── i2c_eeprom.h
│ │ ├── intc
│ │ │ └── intc.h
│ │ ├── led
│ │ │ └── led.h
│ │ ├── pwm
│ │ │ ├── pwm.c
│ │ │ └── pwm.h
│ │ ├── rc5
│ │ │ ├── rc5.c
│ │ │ └── rc5.h
│ │ ├── reg
│ │ │ └── reg_access.h
│ │ ├── sensor
│ │ │ ├── dht11.c
│ │ │ └── dht11.h
│ │ ├── spi
│ │ │ ├── spi_3wire.c
│ │ │ ├── spi_3wire.h
│ │ │ ├── spi.c
│ │ │ └── spi.h
│ │ ├── spi_439
│ │ │ ├── spi_439.c
│ │ │ └── spi_439.h
│ │ ├── spi_flash
│ │ │ ├── spi_flash.c
│ │ │ └── spi_flash.h
│ │ ├── spi_hci
│ │ │ ├── reg_spi.h
│ │ │ ├── spi_hci.c
│ │ │ └── spi_hci.h
│ │ ├── syscntl
│ │ │ ├── syscntl.c
│ │ │ └── syscntl.h
│ │ ├── systick
│ │ │ ├── systick.c
│ │ │ └── systick.h
│ │ ├── trng
│ │ │ ├── trng.c
│ │ │ └── trng.h
│ │ ├── uart
│ │ │ ├── reg_uart.h
│ │ │ ├── uart2.c
│ │ │ ├── uart.c
│ │ │ ├── uart_ext_wkup.c
│ │ │ ├── uart.h
│ │ │ └── uart_init.c
│ │ └── wkupct_quadec
│ │ ├── wkupct_quadec.c
│ │ └── wkupct_quadec.h
│ ├── include
│ │ ├── ARMCM0.h
│ │ ├── ble_580_sw_version.h
│ │ ├── CMSDK_CM0.h
│ │ ├── core_cm0.h
│ │ ├── core_cmFunc.h
│ │ ├── core_cmInstr.h
│ │ ├── datasheet_es1.h
│ │ ├── datasheet_es3.h
│ │ ├── datasheet.h
│ │ ├── datasheet_old.h
│ │ ├── global_io.h
│ │ ├── _reg_auxio.h
│ │ ├── reg_auxio.h
│ │ ├── _reg_blecore.h
│ │ ├── reg_blecore.h
│ │ ├── _reg_ble_em_cs.h
│ │ ├── reg_ble_em_cs.h
│ │ ├── _reg_ble_em_et.h
│ │ ├── reg_ble_em_et.h
│ │ ├── _reg_ble_em_rx.h
│ │ ├── reg_ble_em_rx.h
│ │ ├── _reg_ble_em_txe.h
│ │ ├── reg_ble_em_txe.h
│ │ ├── _reg_ble_em_tx.h
│ │ ├── reg_ble_em_tx.h
│ │ ├── _reg_ble_em_wpb.h
│ │ ├── reg_ble_em_wpb.h
│ │ ├── _reg_ble_em_wpv.h
│ │ ├── reg_ble_em_wpv.h
│ │ ├── _reg_clkrst.h
│ │ ├── reg_clkrst.h
│ │ ├── _reg_emi0.h
│ │ ├── reg_emi0.h
│ │ ├── _reg_emi1.h
│ │ ├── reg_emi1.h
│ │ ├── _reg_intc.h
│ │ ├── reg_intc.h
│ │ ├── _reg_modem.h
│ │ ├── reg_modem.h
│ │ ├── _reg_remap.h
│ │ ├── reg_remap.h
│ │ ├── _reg_ripple.h
│ │ ├── _reg_timer.h
│ │ ├── _reg_uart.h
│ │ ├── system_ARMCM0.h
│ │ └── system_CMSDK.h
│ └── patch_code
│ ├── DA14580
│ │ └── obj
│ │ ├── atts_task.obj
│ │ ├── ch_map.obj
│ │ ├── gapm_util.obj
│ │ ├── ke_mem.obj
│ │ ├── ke_task.obj
│ │ ├── llc.obj
│ │ ├── smpc.obj
│ │ └── smpc_task.obj
│ └── DA14581
│ └── obj
│ ├── atts_util.obj
│ ├── lld.obj
│ ├── llm_task.obj
│ └── smpc_task.obj
└── utilities
├── flash_programmer
│ ├── hex2bin.exe
│ ├── include
│ │ ├── gpio_periph_setup.h
│ │ ├── otpc.h
│ │ ├── peripherals.h
│ │ ├── programmer.h
│ │ ├── uart.h
│ │ ├── user_periph_setup.h
│ │ └── version.h
│ ├── programmer.uvopt
│ ├── programmer.uvoptx
│ ├── programmer.uvproj
│ ├── programmer.uvprojx
│ ├── src
│ │ ├── crc32.c
│ │ ├── otpc.c
│ │ ├── peripherals.c
│ │ ├── programmer.c
│ │ └── uart.c
│ └── startup
│ ├── bootloader.sct
│ ├── startup_CMSDK_CM0.s
│ ├── sysram.ini
│ └── system_CMSDK.c
├── mkimage
│ ├── gcc
│ │ └── Makefile
│ ├── image.h
│ ├── mkimage.c
│ ├── msvc
│ │ ├── mkimage
│ │ │ ├── mkimage.vcxproj
│ │ │ └── mkimage.vcxproj.filters
│ │ └── msvc.sln
│ ├── os_int.h
│ ├── os_port.h
│ ├── sw_aes.c
│ └── sw_aes.h
├── prod_test
│ └── prod_test_cmds
│ ├── prodtest
│ │ ├── commands.c
│ │ ├── commands.h
│ │ ├── getopt.c
│ │ ├── getopt.h
│ │ ├── host_hci.c
│ │ ├── host_hci.h
│ │ ├── main.c
│ │ ├── prodtest.vcxproj
│ │ ├── prodtest.vcxproj.filters
│ │ ├── prodtest.vcxproj.user
│ │ ├── queue.c
│ │ ├── queue.h
│ │ ├── stdbool.h
│ │ ├── uart.c
│ │ └── uart.h
│ └── prodtest.sln
├── secondary_bootloader
│ ├── includes
│ │ ├── bootloader.h
│ │ ├── os_int.h
│ │ ├── os_port.h
│ │ ├── spi_commands.h
│ │ ├── sw_aes.h
│ │ ├── timer.h
│ │ ├── uart_booter.h
│ │ ├── uart.h
│ │ └── user_periph_setup.h
│ ├── secondary_bootloader.uvopt
│ ├── secondary_bootloader.uvoptx
│ ├── secondary_bootloader.uvproj
│ ├── secondary_bootloader.uvprojx
│ ├── src
│ │ ├── bootloader.c
│ │ ├── crc16.c
│ │ ├── crc32.c
│ │ ├── main.c
│ │ ├── spi_commands.c
│ │ ├── sw_aes.c
│ │ ├── timer.c
│ │ ├── uart_booter.c
│ │ └── uart.c
│ └── startup
│ ├── bootloader.sct
│ ├── startup_CMSDK_CM0.s
│ ├── sysram.ini
│ └── system_CMSDK.c
└── uvproj2Makefile
├── 580.lds.S
├── common.mk
├── Makefile.tmpl
├── startup_ARMCM0.S
└── uvproj2Makefile
375 directories, 1043 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论