├── .DS_Store ├── .github └── workflows │ ├── build.yml │ └── ci.yml ├── .gitignore ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── CMakeCache.txt ├── CMakeLists.txt ├── Kconfig ├── LICENSE.md ├── README.md ├── app ├── .DS_Store ├── CMakeLists.txt ├── CMakePresets.json ├── Kconfig ├── Kconfig.sysbuild ├── VERSION ├── include │ └── hpi_user_profile.h ├── keys │ ├── generate_keys.txt │ ├── mcuboot_priv.pem │ ├── nsib_priv.pem │ └── root-ec-p256.pem ├── linker_arm_extxip.ld ├── overlay-release.conf ├── pm_static.yml ├── prj.conf ├── qspi_w25.ini ├── src │ ├── .DS_Store │ ├── algos.c │ ├── algos.h │ ├── archived │ │ ├── max32664_msbl.msbl │ │ ├── max32664d_msbl.c │ │ └── scr_ecg_plot_arch.txt │ ├── battery_module.c │ ├── battery_module.h │ ├── battery_profile_200.inc │ ├── ble_module.c │ ├── ble_module.h │ ├── cmd_module.c │ ├── cmd_module.h │ ├── data_module.c │ ├── day_stats_module.c │ ├── day_stats_module.h │ ├── fs_module.c │ ├── fs_module.h │ ├── hpi_common_settings.h │ ├── hpi_common_types.h │ ├── hpi_settings_store.c │ ├── hpi_settings_store.h │ ├── hpi_sys.h │ ├── hpi_sys_module.c │ ├── hpi_user_settings_api.c │ ├── hpi_user_settings_api.h │ ├── hpi_zbus_channels.c │ ├── hw_helpers.c │ ├── hw_helpers.h │ ├── hw_module.c │ ├── hw_module.h │ ├── log_module.c │ ├── log_module.h │ ├── main.c │ ├── max32664_updater │ │ ├── .DS_Store │ │ ├── Kconfig │ │ ├── LICENSE │ │ ├── max32664_updater.c │ │ ├── max32664_updater.h │ │ ├── max32664d_bl.c │ │ └── msbl │ │ │ ├── .DS_Store │ │ │ ├── max32664c_30_13_31.msbl │ │ │ └── max32664d_40_6_0.msbl │ ├── sm │ │ ├── smf_display.c │ │ ├── smf_ecg.h │ │ ├── smf_ecg_bioz.c │ │ ├── smf_ecg_bioz.h │ │ ├── smf_ppg_finger.c │ │ └── smf_ppg_wrist.c │ ├── trends.c │ ├── trends.h │ └── ui │ │ ├── .DS_Store │ │ ├── components │ │ ├── ui_comp_hr_button.c │ │ ├── ui_comp_spo2_button.c │ │ └── ui_comp_steps_button.c │ │ ├── fonts │ │ ├── Orbitron-SemiBold.ttf │ │ ├── README.md │ │ ├── TrainOne-Regular.ttf │ │ ├── bungee_90.c │ │ ├── caveat_48.c │ │ ├── convert_fonts.sh │ │ ├── font_declarations.h │ │ ├── fredoka_22.c │ │ ├── fredoka_28.c │ │ ├── lvgl │ │ │ ├── inter_regular_12.c │ │ │ ├── inter_regular_14.c │ │ │ ├── inter_regular_16.c │ │ │ ├── inter_regular_24.c │ │ │ ├── inter_semibold_18.c │ │ │ ├── inter_semibold_24.c │ │ │ ├── inter_semibold_80_time.c │ │ │ ├── jetbrains_mono_regular_16.c │ │ │ └── jetbrains_mono_regular_24.c │ │ ├── orbitron_90px.c │ │ ├── oxanium_90.c │ │ ├── ttf │ │ │ ├── Inter-4.0.zip │ │ │ ├── Inter-Regular.ttf │ │ │ ├── Inter-SemiBold.ttf │ │ │ └── JetBrainsMono-Regular.ttf │ │ ├── ui_font_H1.c │ │ ├── ui_font_Number_big.c │ │ ├── ui_font_Number_extra.c │ │ ├── ui_font_Subtitle.c │ │ ├── ui_font_Title.c │ │ └── zen_nos_90.c │ │ ├── hp_ui_common.c │ │ ├── hpi_ppg_autoscale.c │ │ ├── images │ │ ├── .DS_Store │ │ ├── bck_heart_200.c │ │ ├── bck_heart_200.png │ │ ├── bck_heart_2_180.c │ │ ├── bck_heart_2_180.png │ │ ├── bck_heart_2_200.c │ │ ├── bp_100.c │ │ ├── bp_100.png │ │ ├── bp_70.c │ │ ├── bp_70.png │ │ ├── bp_80.c │ │ ├── bp_80.png │ │ ├── ecg_100.c │ │ ├── ecg_100.png │ │ ├── ecg_120.c │ │ ├── ecg_120.png │ │ ├── ecg_45.c │ │ ├── ecg_45.png │ │ ├── ecg_70.c │ │ ├── ecg_70.png │ │ ├── fix_headers.py │ │ ├── fix_headers.sh │ │ ├── icon_spo2_100.c │ │ ├── icon_spo2_100.png │ │ ├── icon_spo2_120.c │ │ ├── icon_spo2_120.png │ │ ├── icon_spo2_30x35.c │ │ ├── icon_spo2_30x35.png │ │ ├── img_bpt_finger_120.c │ │ ├── img_bpt_finger_120.png │ │ ├── img_bpt_finger_45.c │ │ ├── img_bpt_finger_45.png │ │ ├── img_bpt_finger_90.c │ │ ├── img_bpt_finger_90.png │ │ ├── img_calories_48.c │ │ ├── img_calories_48.png │ │ ├── img_calories_48px.c │ │ ├── img_calories_48px.png │ │ ├── img_clock_48px.c │ │ ├── img_clock_48px.png │ │ ├── img_complete_85.c │ │ ├── img_complete_85.png │ │ ├── img_convert.sh │ │ ├── img_failed_80.c │ │ ├── img_failed_80.png │ │ ├── img_heart_120.c │ │ ├── img_heart_120.png │ │ ├── img_heart_35.c │ │ ├── img_heart_35.png │ │ ├── img_heart_48px.c │ │ ├── img_heart_48px.png │ │ ├── img_heart_70.c │ │ ├── img_heart_70.png │ │ ├── img_spo2_hand.c │ │ ├── img_spo2_hand.png │ │ ├── img_steps_48.c │ │ ├── img_steps_48.png │ │ ├── img_steps_48px.c │ │ ├── img_steps_48px.png │ │ ├── img_temp_100.c │ │ ├── img_temp_100.png │ │ ├── img_temp_45.c │ │ ├── img_temp_45.png │ │ ├── img_timer_48.c │ │ ├── img_timer_48.png │ │ ├── img_wrist_45.c │ │ ├── img_wrist_45.png │ │ ├── low_batt_100.c │ │ ├── low_batt_100.png │ │ ├── pc_logo_round_120.c │ │ ├── pc_logo_round_120.png │ │ ├── pc_logo_text_200.c │ │ ├── pc_logo_text_200.png │ │ ├── pc_logo_text_250.c │ │ ├── pc_logo_text_250.png │ │ ├── pc_logo_text_300.c │ │ ├── pc_logo_text_300.png │ │ ├── pc_move_bg.jpg │ │ ├── pc_move_bg_200.c │ │ ├── pc_move_bg_200.png │ │ ├── timer_32.c │ │ └── timer_32.png │ │ ├── move_ui.h │ │ └── screens │ │ ├── scr_ble.c │ │ ├── scr_boot.c │ │ ├── scr_bpt.c │ │ ├── scr_bpt_arch.txt │ │ ├── scr_bpt_cal_complete.c │ │ ├── scr_bpt_cal_progress.c │ │ ├── scr_bpt_cal_required.c │ │ ├── scr_bpt_est_complete.c │ │ ├── scr_bpt_failed.c │ │ ├── scr_bpt_measure.c │ │ ├── scr_bpt_scr2.c │ │ ├── scr_bpt_scr3.c │ │ ├── scr_device_user_settings.c │ │ ├── scr_ecg.c │ │ ├── scr_ecg_complete.c │ │ ├── scr_ecg_scr2.c │ │ ├── scr_gsr.c │ │ ├── scr_gsr_complete.c │ │ ├── scr_gsr_plot.c │ │ ├── scr_home.c │ │ ├── scr_hr.c │ │ ├── scr_hr_trends.c │ │ ├── scr_hrv.c │ │ ├── scr_hrv_scatter.c │ │ ├── scr_low_battery.c │ │ ├── scr_progress.c │ │ ├── scr_pulldown.c │ │ ├── scr_raw_ppg.c │ │ ├── scr_splash.c │ │ ├── scr_spo2.c │ │ ├── scr_spo2_cancelled.c │ │ ├── scr_spo2_complete.c │ │ ├── scr_spo2_measure.c │ │ ├── scr_spo2_scr2.c │ │ ├── scr_spo2_select.c │ │ ├── scr_spo2_timeout.c │ │ ├── scr_spo2_trends.c │ │ ├── scr_steps.c │ │ ├── scr_temp.c │ │ └── scr_today.c ├── sysbuild.conf ├── sysbuild │ ├── .DS_Store │ ├── ipc_radio │ │ └── prj.conf │ └── mcuboot │ │ ├── app.overlay │ │ ├── boards │ │ ├── healthypi_move_nrf5340_cpuapp.overlay │ │ └── healthypi_move_nrf5340_cpuapp_minimal.conf │ │ └── prj.conf └── tests │ └── test_ppg_sm.c ├── boards ├── .DS_Store └── protocentral │ └── healthypi_move │ ├── Kconfig │ ├── Kconfig.defconfig │ ├── Kconfig.healthypi_move │ ├── board.cmake │ ├── board.yml │ ├── healthypi_move_nrf5340_cpuapp.dts │ ├── healthypi_move_nrf5340_cpuapp.yaml │ ├── healthypi_move_nrf5340_cpuapp_defconfig │ ├── healthypi_move_nrf5340_cpuapp_ns.dts │ ├── healthypi_move_nrf5340_cpuapp_ns.yaml │ ├── healthypi_move_nrf5340_cpuapp_ns_defconfig │ ├── healthypi_move_nrf5340_cpunet-pinctrl.dtsi │ ├── healthypi_move_nrf5340_cpunet.dts │ ├── healthypi_move_nrf5340_cpunet.yaml │ ├── healthypi_move_nrf5340_cpunet_defconfig │ ├── nrf5340_cpuapp_common-pinctrl.dtsi │ ├── nrf5340_cpuapp_common.dtsi │ ├── nrf5340_cpuapp_partition_conf.dtsi │ └── pre_dt_board.cmake ├── docs ├── .DS_Store └── images │ ├── .DS_Store │ ├── healthypi-move.jpg │ └── healthypi_move_logo.png ├── drivers ├── .DS_Store ├── CMakeLists.txt ├── Kconfig ├── display │ ├── .DS_Store │ ├── CMakeLists.txt │ ├── Kconfig │ ├── Kconfig.sh8601 │ ├── display_sh8601.c │ └── display_sh8601.h ├── input │ ├── CMakeLists.txt │ ├── Kconfig │ ├── Kconfig.chsc5816 │ └── input_chsc5816.c ├── rtc │ ├── CMakeLists.txt │ ├── Kconfig │ ├── Kconfig.rv8263 │ ├── calendar.h │ └── rtc_rv8263.c └── sensor │ ├── .DS_Store │ ├── CMakeLists.txt │ ├── Kconfig │ ├── bmi323hpi │ ├── CMakeLists.txt │ ├── Kconfig │ ├── bmi323_hpi.c │ ├── bmi323_hpi.h │ └── bmi323_hpi_defs.h │ ├── max30001 │ ├── CMakeLists.txt │ ├── Kconfig │ ├── max30001.c │ ├── max30001.h │ ├── max30001_async.c │ └── max30001_decoder.c │ ├── max30208 │ ├── CMakeLists.txt │ ├── Kconfig │ ├── max30208.c │ └── max30208.h │ ├── max32664c │ ├── CMakeLists.txt │ ├── Kconfig │ ├── max32664c.c │ ├── max32664c.h │ ├── max32664c_async.c │ └── max32664c_decoder.c │ └── max32664d │ ├── .DS_Store │ ├── CMakeLists.txt │ ├── Kconfig │ ├── max32664d.c │ ├── max32664d.h │ ├── max32664d_async.c │ └── max32664d_decoder.c ├── dts ├── .DS_Store └── bindings │ ├── .DS_Store │ ├── bosch,bmi323hpi.yaml │ ├── display │ ├── .DS_Store │ └── sitronix,sh8601.yaml │ ├── input │ └── chipsemi,chsc6x.yaml │ ├── maxim,max30001.yaml │ ├── maxim,max30205.yaml │ ├── maxim,max30208.yaml │ ├── maxim,max32664.yaml │ ├── maxim,max32664c.yaml │ ├── maxim,maxm86146.yaml │ └── microcrystal,rv8263.yaml ├── flash.sh ├── license_mark.svg ├── pristine.sh ├── scripts ├── README.md ├── bmf.sh ├── build.sh ├── build_nrf.sh ├── build_nrf_net.sh ├── clean.sh ├── config.sh ├── convert_array_to_bin.py ├── copy_firmware_to_fs.sh ├── flash.sh ├── flash_merged.sh ├── flash_net.sh ├── merge.sh ├── upload_firmware.sh └── verify_firmware.py ├── tools └── iir_coeffs_cmsis.m ├── west.yml └── zephyr └── module.yml /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/.DS_Store -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /CMakeCache.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/CMakeCache.txt -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/Kconfig -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/README.md -------------------------------------------------------------------------------- /app/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/.DS_Store -------------------------------------------------------------------------------- /app/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/CMakeLists.txt -------------------------------------------------------------------------------- /app/CMakePresets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/CMakePresets.json -------------------------------------------------------------------------------- /app/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/Kconfig -------------------------------------------------------------------------------- /app/Kconfig.sysbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/Kconfig.sysbuild -------------------------------------------------------------------------------- /app/VERSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/VERSION -------------------------------------------------------------------------------- /app/include/hpi_user_profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/include/hpi_user_profile.h -------------------------------------------------------------------------------- /app/keys/generate_keys.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/keys/generate_keys.txt -------------------------------------------------------------------------------- /app/keys/mcuboot_priv.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/keys/mcuboot_priv.pem -------------------------------------------------------------------------------- /app/keys/nsib_priv.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/keys/nsib_priv.pem -------------------------------------------------------------------------------- /app/keys/root-ec-p256.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/keys/root-ec-p256.pem -------------------------------------------------------------------------------- /app/linker_arm_extxip.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/linker_arm_extxip.ld -------------------------------------------------------------------------------- /app/overlay-release.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/overlay-release.conf -------------------------------------------------------------------------------- /app/pm_static.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/pm_static.yml -------------------------------------------------------------------------------- /app/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/prj.conf -------------------------------------------------------------------------------- /app/qspi_w25.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/qspi_w25.ini -------------------------------------------------------------------------------- /app/src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/.DS_Store -------------------------------------------------------------------------------- /app/src/algos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/algos.c -------------------------------------------------------------------------------- /app/src/algos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/algos.h -------------------------------------------------------------------------------- /app/src/archived/max32664_msbl.msbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/archived/max32664_msbl.msbl -------------------------------------------------------------------------------- /app/src/archived/max32664d_msbl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/archived/max32664d_msbl.c -------------------------------------------------------------------------------- /app/src/archived/scr_ecg_plot_arch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/archived/scr_ecg_plot_arch.txt -------------------------------------------------------------------------------- /app/src/battery_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/battery_module.c -------------------------------------------------------------------------------- /app/src/battery_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/battery_module.h -------------------------------------------------------------------------------- /app/src/battery_profile_200.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/battery_profile_200.inc -------------------------------------------------------------------------------- /app/src/ble_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ble_module.c -------------------------------------------------------------------------------- /app/src/ble_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ble_module.h -------------------------------------------------------------------------------- /app/src/cmd_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/cmd_module.c -------------------------------------------------------------------------------- /app/src/cmd_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/cmd_module.h -------------------------------------------------------------------------------- /app/src/data_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/data_module.c -------------------------------------------------------------------------------- /app/src/day_stats_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/day_stats_module.c -------------------------------------------------------------------------------- /app/src/day_stats_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/day_stats_module.h -------------------------------------------------------------------------------- /app/src/fs_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/fs_module.c -------------------------------------------------------------------------------- /app/src/fs_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/fs_module.h -------------------------------------------------------------------------------- /app/src/hpi_common_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/hpi_common_settings.h -------------------------------------------------------------------------------- /app/src/hpi_common_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/hpi_common_types.h -------------------------------------------------------------------------------- /app/src/hpi_settings_store.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/hpi_settings_store.c -------------------------------------------------------------------------------- /app/src/hpi_settings_store.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/hpi_settings_store.h -------------------------------------------------------------------------------- /app/src/hpi_sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/hpi_sys.h -------------------------------------------------------------------------------- /app/src/hpi_sys_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/hpi_sys_module.c -------------------------------------------------------------------------------- /app/src/hpi_user_settings_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/hpi_user_settings_api.c -------------------------------------------------------------------------------- /app/src/hpi_user_settings_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/hpi_user_settings_api.h -------------------------------------------------------------------------------- /app/src/hpi_zbus_channels.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/hpi_zbus_channels.c -------------------------------------------------------------------------------- /app/src/hw_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/hw_helpers.c -------------------------------------------------------------------------------- /app/src/hw_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/hw_helpers.h -------------------------------------------------------------------------------- /app/src/hw_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/hw_module.c -------------------------------------------------------------------------------- /app/src/hw_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/hw_module.h -------------------------------------------------------------------------------- /app/src/log_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/log_module.c -------------------------------------------------------------------------------- /app/src/log_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/log_module.h -------------------------------------------------------------------------------- /app/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/main.c -------------------------------------------------------------------------------- /app/src/max32664_updater/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/max32664_updater/.DS_Store -------------------------------------------------------------------------------- /app/src/max32664_updater/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/max32664_updater/Kconfig -------------------------------------------------------------------------------- /app/src/max32664_updater/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/max32664_updater/LICENSE -------------------------------------------------------------------------------- /app/src/max32664_updater/max32664_updater.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/max32664_updater/max32664_updater.c -------------------------------------------------------------------------------- /app/src/max32664_updater/max32664_updater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/max32664_updater/max32664_updater.h -------------------------------------------------------------------------------- /app/src/max32664_updater/max32664d_bl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/max32664_updater/max32664d_bl.c -------------------------------------------------------------------------------- /app/src/max32664_updater/msbl/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/max32664_updater/msbl/.DS_Store -------------------------------------------------------------------------------- /app/src/max32664_updater/msbl/max32664c_30_13_31.msbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/max32664_updater/msbl/max32664c_30_13_31.msbl -------------------------------------------------------------------------------- /app/src/max32664_updater/msbl/max32664d_40_6_0.msbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/max32664_updater/msbl/max32664d_40_6_0.msbl -------------------------------------------------------------------------------- /app/src/sm/smf_display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/sm/smf_display.c -------------------------------------------------------------------------------- /app/src/sm/smf_ecg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/sm/smf_ecg.h -------------------------------------------------------------------------------- /app/src/sm/smf_ecg_bioz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/sm/smf_ecg_bioz.c -------------------------------------------------------------------------------- /app/src/sm/smf_ecg_bioz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/sm/smf_ecg_bioz.h -------------------------------------------------------------------------------- /app/src/sm/smf_ppg_finger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/sm/smf_ppg_finger.c -------------------------------------------------------------------------------- /app/src/sm/smf_ppg_wrist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/sm/smf_ppg_wrist.c -------------------------------------------------------------------------------- /app/src/trends.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/trends.c -------------------------------------------------------------------------------- /app/src/trends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/trends.h -------------------------------------------------------------------------------- /app/src/ui/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/.DS_Store -------------------------------------------------------------------------------- /app/src/ui/components/ui_comp_hr_button.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/components/ui_comp_hr_button.c -------------------------------------------------------------------------------- /app/src/ui/components/ui_comp_spo2_button.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/components/ui_comp_spo2_button.c -------------------------------------------------------------------------------- /app/src/ui/components/ui_comp_steps_button.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/components/ui_comp_steps_button.c -------------------------------------------------------------------------------- /app/src/ui/fonts/Orbitron-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/fonts/Orbitron-SemiBold.ttf -------------------------------------------------------------------------------- /app/src/ui/fonts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/fonts/README.md -------------------------------------------------------------------------------- /app/src/ui/fonts/TrainOne-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/fonts/TrainOne-Regular.ttf -------------------------------------------------------------------------------- /app/src/ui/fonts/bungee_90.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/fonts/bungee_90.c -------------------------------------------------------------------------------- /app/src/ui/fonts/caveat_48.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/fonts/caveat_48.c -------------------------------------------------------------------------------- /app/src/ui/fonts/convert_fonts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/fonts/convert_fonts.sh -------------------------------------------------------------------------------- /app/src/ui/fonts/font_declarations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/fonts/font_declarations.h -------------------------------------------------------------------------------- /app/src/ui/fonts/fredoka_22.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/fonts/fredoka_22.c -------------------------------------------------------------------------------- /app/src/ui/fonts/fredoka_28.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/fonts/fredoka_28.c -------------------------------------------------------------------------------- /app/src/ui/fonts/lvgl/inter_regular_12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/fonts/lvgl/inter_regular_12.c -------------------------------------------------------------------------------- /app/src/ui/fonts/lvgl/inter_regular_14.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/fonts/lvgl/inter_regular_14.c -------------------------------------------------------------------------------- /app/src/ui/fonts/lvgl/inter_regular_16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/fonts/lvgl/inter_regular_16.c -------------------------------------------------------------------------------- /app/src/ui/fonts/lvgl/inter_regular_24.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/fonts/lvgl/inter_regular_24.c -------------------------------------------------------------------------------- /app/src/ui/fonts/lvgl/inter_semibold_18.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/fonts/lvgl/inter_semibold_18.c -------------------------------------------------------------------------------- /app/src/ui/fonts/lvgl/inter_semibold_24.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/fonts/lvgl/inter_semibold_24.c -------------------------------------------------------------------------------- /app/src/ui/fonts/lvgl/inter_semibold_80_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/fonts/lvgl/inter_semibold_80_time.c -------------------------------------------------------------------------------- /app/src/ui/fonts/lvgl/jetbrains_mono_regular_16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/fonts/lvgl/jetbrains_mono_regular_16.c -------------------------------------------------------------------------------- /app/src/ui/fonts/lvgl/jetbrains_mono_regular_24.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/fonts/lvgl/jetbrains_mono_regular_24.c -------------------------------------------------------------------------------- /app/src/ui/fonts/orbitron_90px.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/fonts/orbitron_90px.c -------------------------------------------------------------------------------- /app/src/ui/fonts/oxanium_90.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/fonts/oxanium_90.c -------------------------------------------------------------------------------- /app/src/ui/fonts/ttf/Inter-4.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/fonts/ttf/Inter-4.0.zip -------------------------------------------------------------------------------- /app/src/ui/fonts/ttf/Inter-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/fonts/ttf/Inter-Regular.ttf -------------------------------------------------------------------------------- /app/src/ui/fonts/ttf/Inter-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/fonts/ttf/Inter-SemiBold.ttf -------------------------------------------------------------------------------- /app/src/ui/fonts/ttf/JetBrainsMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/fonts/ttf/JetBrainsMono-Regular.ttf -------------------------------------------------------------------------------- /app/src/ui/fonts/ui_font_H1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/fonts/ui_font_H1.c -------------------------------------------------------------------------------- /app/src/ui/fonts/ui_font_Number_big.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/fonts/ui_font_Number_big.c -------------------------------------------------------------------------------- /app/src/ui/fonts/ui_font_Number_extra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/fonts/ui_font_Number_extra.c -------------------------------------------------------------------------------- /app/src/ui/fonts/ui_font_Subtitle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/fonts/ui_font_Subtitle.c -------------------------------------------------------------------------------- /app/src/ui/fonts/ui_font_Title.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/fonts/ui_font_Title.c -------------------------------------------------------------------------------- /app/src/ui/fonts/zen_nos_90.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/fonts/zen_nos_90.c -------------------------------------------------------------------------------- /app/src/ui/hp_ui_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/hp_ui_common.c -------------------------------------------------------------------------------- /app/src/ui/hpi_ppg_autoscale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/hpi_ppg_autoscale.c -------------------------------------------------------------------------------- /app/src/ui/images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/images/.DS_Store -------------------------------------------------------------------------------- /app/src/ui/images/bck_heart_200.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/images/bck_heart_200.c -------------------------------------------------------------------------------- /app/src/ui/images/bck_heart_200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/images/bck_heart_200.png -------------------------------------------------------------------------------- /app/src/ui/images/bck_heart_2_180.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/images/bck_heart_2_180.c -------------------------------------------------------------------------------- /app/src/ui/images/bck_heart_2_180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/images/bck_heart_2_180.png -------------------------------------------------------------------------------- /app/src/ui/images/bck_heart_2_200.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/images/bck_heart_2_200.c -------------------------------------------------------------------------------- /app/src/ui/images/bp_100.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/images/bp_100.c -------------------------------------------------------------------------------- /app/src/ui/images/bp_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/images/bp_100.png -------------------------------------------------------------------------------- /app/src/ui/images/bp_70.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/images/bp_70.c -------------------------------------------------------------------------------- /app/src/ui/images/bp_70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/images/bp_70.png -------------------------------------------------------------------------------- /app/src/ui/images/bp_80.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/images/bp_80.c -------------------------------------------------------------------------------- /app/src/ui/images/bp_80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/images/bp_80.png -------------------------------------------------------------------------------- /app/src/ui/images/ecg_100.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/images/ecg_100.c -------------------------------------------------------------------------------- /app/src/ui/images/ecg_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/images/ecg_100.png -------------------------------------------------------------------------------- /app/src/ui/images/ecg_120.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/images/ecg_120.c -------------------------------------------------------------------------------- /app/src/ui/images/ecg_120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/images/ecg_120.png -------------------------------------------------------------------------------- /app/src/ui/images/ecg_45.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/images/ecg_45.c -------------------------------------------------------------------------------- /app/src/ui/images/ecg_45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/images/ecg_45.png -------------------------------------------------------------------------------- /app/src/ui/images/ecg_70.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/images/ecg_70.c -------------------------------------------------------------------------------- /app/src/ui/images/ecg_70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/images/ecg_70.png -------------------------------------------------------------------------------- /app/src/ui/images/fix_headers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/images/fix_headers.py -------------------------------------------------------------------------------- /app/src/ui/images/fix_headers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/images/fix_headers.sh -------------------------------------------------------------------------------- /app/src/ui/images/icon_spo2_100.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/images/icon_spo2_100.c -------------------------------------------------------------------------------- /app/src/ui/images/icon_spo2_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/images/icon_spo2_100.png -------------------------------------------------------------------------------- /app/src/ui/images/icon_spo2_120.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/images/icon_spo2_120.c -------------------------------------------------------------------------------- /app/src/ui/images/icon_spo2_120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/images/icon_spo2_120.png -------------------------------------------------------------------------------- /app/src/ui/images/icon_spo2_30x35.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/images/icon_spo2_30x35.c -------------------------------------------------------------------------------- /app/src/ui/images/icon_spo2_30x35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/images/icon_spo2_30x35.png -------------------------------------------------------------------------------- /app/src/ui/images/img_bpt_finger_120.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/images/img_bpt_finger_120.c -------------------------------------------------------------------------------- /app/src/ui/images/img_bpt_finger_120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/images/img_bpt_finger_120.png -------------------------------------------------------------------------------- /app/src/ui/images/img_bpt_finger_45.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/images/img_bpt_finger_45.c -------------------------------------------------------------------------------- /app/src/ui/images/img_bpt_finger_45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/images/img_bpt_finger_45.png -------------------------------------------------------------------------------- /app/src/ui/images/img_bpt_finger_90.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/images/img_bpt_finger_90.c -------------------------------------------------------------------------------- /app/src/ui/images/img_bpt_finger_90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/images/img_bpt_finger_90.png -------------------------------------------------------------------------------- /app/src/ui/images/img_calories_48.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/images/img_calories_48.c -------------------------------------------------------------------------------- /app/src/ui/images/img_calories_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/images/img_calories_48.png -------------------------------------------------------------------------------- /app/src/ui/images/img_calories_48px.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/images/img_calories_48px.c -------------------------------------------------------------------------------- /app/src/ui/images/img_calories_48px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/images/img_calories_48px.png -------------------------------------------------------------------------------- /app/src/ui/images/img_clock_48px.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/images/img_clock_48px.c -------------------------------------------------------------------------------- /app/src/ui/images/img_clock_48px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/images/img_clock_48px.png -------------------------------------------------------------------------------- /app/src/ui/images/img_complete_85.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/images/img_complete_85.c -------------------------------------------------------------------------------- /app/src/ui/images/img_complete_85.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/images/img_complete_85.png -------------------------------------------------------------------------------- /app/src/ui/images/img_convert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/images/img_convert.sh -------------------------------------------------------------------------------- /app/src/ui/images/img_failed_80.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/images/img_failed_80.c -------------------------------------------------------------------------------- /app/src/ui/images/img_failed_80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/images/img_failed_80.png -------------------------------------------------------------------------------- /app/src/ui/images/img_heart_120.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/images/img_heart_120.c -------------------------------------------------------------------------------- /app/src/ui/images/img_heart_120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/images/img_heart_120.png -------------------------------------------------------------------------------- /app/src/ui/images/img_heart_35.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/images/img_heart_35.c -------------------------------------------------------------------------------- /app/src/ui/images/img_heart_35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/images/img_heart_35.png -------------------------------------------------------------------------------- /app/src/ui/images/img_heart_48px.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/images/img_heart_48px.c -------------------------------------------------------------------------------- /app/src/ui/images/img_heart_48px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/images/img_heart_48px.png -------------------------------------------------------------------------------- /app/src/ui/images/img_heart_70.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/images/img_heart_70.c -------------------------------------------------------------------------------- /app/src/ui/images/img_heart_70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/images/img_heart_70.png -------------------------------------------------------------------------------- /app/src/ui/images/img_spo2_hand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/images/img_spo2_hand.c -------------------------------------------------------------------------------- /app/src/ui/images/img_spo2_hand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/images/img_spo2_hand.png -------------------------------------------------------------------------------- /app/src/ui/images/img_steps_48.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/images/img_steps_48.c -------------------------------------------------------------------------------- /app/src/ui/images/img_steps_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/images/img_steps_48.png -------------------------------------------------------------------------------- /app/src/ui/images/img_steps_48px.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/images/img_steps_48px.c -------------------------------------------------------------------------------- /app/src/ui/images/img_steps_48px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/images/img_steps_48px.png -------------------------------------------------------------------------------- /app/src/ui/images/img_temp_100.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/images/img_temp_100.c -------------------------------------------------------------------------------- /app/src/ui/images/img_temp_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/images/img_temp_100.png -------------------------------------------------------------------------------- /app/src/ui/images/img_temp_45.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/images/img_temp_45.c -------------------------------------------------------------------------------- /app/src/ui/images/img_temp_45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/images/img_temp_45.png -------------------------------------------------------------------------------- /app/src/ui/images/img_timer_48.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/images/img_timer_48.c -------------------------------------------------------------------------------- /app/src/ui/images/img_timer_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/images/img_timer_48.png -------------------------------------------------------------------------------- /app/src/ui/images/img_wrist_45.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/images/img_wrist_45.c -------------------------------------------------------------------------------- /app/src/ui/images/img_wrist_45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/images/img_wrist_45.png -------------------------------------------------------------------------------- /app/src/ui/images/low_batt_100.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/images/low_batt_100.c -------------------------------------------------------------------------------- /app/src/ui/images/low_batt_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/images/low_batt_100.png -------------------------------------------------------------------------------- /app/src/ui/images/pc_logo_round_120.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/images/pc_logo_round_120.c -------------------------------------------------------------------------------- /app/src/ui/images/pc_logo_round_120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/images/pc_logo_round_120.png -------------------------------------------------------------------------------- /app/src/ui/images/pc_logo_text_200.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/images/pc_logo_text_200.c -------------------------------------------------------------------------------- /app/src/ui/images/pc_logo_text_200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/images/pc_logo_text_200.png -------------------------------------------------------------------------------- /app/src/ui/images/pc_logo_text_250.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/images/pc_logo_text_250.c -------------------------------------------------------------------------------- /app/src/ui/images/pc_logo_text_250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/images/pc_logo_text_250.png -------------------------------------------------------------------------------- /app/src/ui/images/pc_logo_text_300.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/images/pc_logo_text_300.c -------------------------------------------------------------------------------- /app/src/ui/images/pc_logo_text_300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/images/pc_logo_text_300.png -------------------------------------------------------------------------------- /app/src/ui/images/pc_move_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/images/pc_move_bg.jpg -------------------------------------------------------------------------------- /app/src/ui/images/pc_move_bg_200.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/images/pc_move_bg_200.c -------------------------------------------------------------------------------- /app/src/ui/images/pc_move_bg_200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/images/pc_move_bg_200.png -------------------------------------------------------------------------------- /app/src/ui/images/timer_32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/images/timer_32.c -------------------------------------------------------------------------------- /app/src/ui/images/timer_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/images/timer_32.png -------------------------------------------------------------------------------- /app/src/ui/move_ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/move_ui.h -------------------------------------------------------------------------------- /app/src/ui/screens/scr_ble.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/screens/scr_ble.c -------------------------------------------------------------------------------- /app/src/ui/screens/scr_boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/screens/scr_boot.c -------------------------------------------------------------------------------- /app/src/ui/screens/scr_bpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/screens/scr_bpt.c -------------------------------------------------------------------------------- /app/src/ui/screens/scr_bpt_arch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/screens/scr_bpt_arch.txt -------------------------------------------------------------------------------- /app/src/ui/screens/scr_bpt_cal_complete.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/screens/scr_bpt_cal_complete.c -------------------------------------------------------------------------------- /app/src/ui/screens/scr_bpt_cal_progress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/screens/scr_bpt_cal_progress.c -------------------------------------------------------------------------------- /app/src/ui/screens/scr_bpt_cal_required.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/screens/scr_bpt_cal_required.c -------------------------------------------------------------------------------- /app/src/ui/screens/scr_bpt_est_complete.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/screens/scr_bpt_est_complete.c -------------------------------------------------------------------------------- /app/src/ui/screens/scr_bpt_failed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/screens/scr_bpt_failed.c -------------------------------------------------------------------------------- /app/src/ui/screens/scr_bpt_measure.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/screens/scr_bpt_measure.c -------------------------------------------------------------------------------- /app/src/ui/screens/scr_bpt_scr2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/screens/scr_bpt_scr2.c -------------------------------------------------------------------------------- /app/src/ui/screens/scr_bpt_scr3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/screens/scr_bpt_scr3.c -------------------------------------------------------------------------------- /app/src/ui/screens/scr_device_user_settings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/screens/scr_device_user_settings.c -------------------------------------------------------------------------------- /app/src/ui/screens/scr_ecg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/screens/scr_ecg.c -------------------------------------------------------------------------------- /app/src/ui/screens/scr_ecg_complete.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/screens/scr_ecg_complete.c -------------------------------------------------------------------------------- /app/src/ui/screens/scr_ecg_scr2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/screens/scr_ecg_scr2.c -------------------------------------------------------------------------------- /app/src/ui/screens/scr_gsr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/screens/scr_gsr.c -------------------------------------------------------------------------------- /app/src/ui/screens/scr_gsr_complete.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/screens/scr_gsr_complete.c -------------------------------------------------------------------------------- /app/src/ui/screens/scr_gsr_plot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/screens/scr_gsr_plot.c -------------------------------------------------------------------------------- /app/src/ui/screens/scr_home.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/screens/scr_home.c -------------------------------------------------------------------------------- /app/src/ui/screens/scr_hr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/screens/scr_hr.c -------------------------------------------------------------------------------- /app/src/ui/screens/scr_hr_trends.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/screens/scr_hr_trends.c -------------------------------------------------------------------------------- /app/src/ui/screens/scr_hrv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/screens/scr_hrv.c -------------------------------------------------------------------------------- /app/src/ui/screens/scr_hrv_scatter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/screens/scr_hrv_scatter.c -------------------------------------------------------------------------------- /app/src/ui/screens/scr_low_battery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/screens/scr_low_battery.c -------------------------------------------------------------------------------- /app/src/ui/screens/scr_progress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/screens/scr_progress.c -------------------------------------------------------------------------------- /app/src/ui/screens/scr_pulldown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/screens/scr_pulldown.c -------------------------------------------------------------------------------- /app/src/ui/screens/scr_raw_ppg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/screens/scr_raw_ppg.c -------------------------------------------------------------------------------- /app/src/ui/screens/scr_splash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/screens/scr_splash.c -------------------------------------------------------------------------------- /app/src/ui/screens/scr_spo2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/screens/scr_spo2.c -------------------------------------------------------------------------------- /app/src/ui/screens/scr_spo2_cancelled.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/screens/scr_spo2_cancelled.c -------------------------------------------------------------------------------- /app/src/ui/screens/scr_spo2_complete.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/screens/scr_spo2_complete.c -------------------------------------------------------------------------------- /app/src/ui/screens/scr_spo2_measure.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/screens/scr_spo2_measure.c -------------------------------------------------------------------------------- /app/src/ui/screens/scr_spo2_scr2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/screens/scr_spo2_scr2.c -------------------------------------------------------------------------------- /app/src/ui/screens/scr_spo2_select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/screens/scr_spo2_select.c -------------------------------------------------------------------------------- /app/src/ui/screens/scr_spo2_timeout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/screens/scr_spo2_timeout.c -------------------------------------------------------------------------------- /app/src/ui/screens/scr_spo2_trends.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/screens/scr_spo2_trends.c -------------------------------------------------------------------------------- /app/src/ui/screens/scr_steps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/screens/scr_steps.c -------------------------------------------------------------------------------- /app/src/ui/screens/scr_temp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/screens/scr_temp.c -------------------------------------------------------------------------------- /app/src/ui/screens/scr_today.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/src/ui/screens/scr_today.c -------------------------------------------------------------------------------- /app/sysbuild.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/sysbuild.conf -------------------------------------------------------------------------------- /app/sysbuild/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/sysbuild/.DS_Store -------------------------------------------------------------------------------- /app/sysbuild/ipc_radio/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/sysbuild/ipc_radio/prj.conf -------------------------------------------------------------------------------- /app/sysbuild/mcuboot/app.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/sysbuild/mcuboot/app.overlay -------------------------------------------------------------------------------- /app/sysbuild/mcuboot/boards/healthypi_move_nrf5340_cpuapp.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/sysbuild/mcuboot/boards/healthypi_move_nrf5340_cpuapp.overlay -------------------------------------------------------------------------------- /app/sysbuild/mcuboot/boards/healthypi_move_nrf5340_cpuapp_minimal.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/sysbuild/mcuboot/boards/healthypi_move_nrf5340_cpuapp_minimal.conf -------------------------------------------------------------------------------- /app/sysbuild/mcuboot/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/app/sysbuild/mcuboot/prj.conf -------------------------------------------------------------------------------- /app/tests/test_ppg_sm.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /boards/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/boards/.DS_Store -------------------------------------------------------------------------------- /boards/protocentral/healthypi_move/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/boards/protocentral/healthypi_move/Kconfig -------------------------------------------------------------------------------- /boards/protocentral/healthypi_move/Kconfig.defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/boards/protocentral/healthypi_move/Kconfig.defconfig -------------------------------------------------------------------------------- /boards/protocentral/healthypi_move/Kconfig.healthypi_move: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/boards/protocentral/healthypi_move/Kconfig.healthypi_move -------------------------------------------------------------------------------- /boards/protocentral/healthypi_move/board.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/boards/protocentral/healthypi_move/board.cmake -------------------------------------------------------------------------------- /boards/protocentral/healthypi_move/board.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/boards/protocentral/healthypi_move/board.yml -------------------------------------------------------------------------------- /boards/protocentral/healthypi_move/healthypi_move_nrf5340_cpuapp.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/boards/protocentral/healthypi_move/healthypi_move_nrf5340_cpuapp.dts -------------------------------------------------------------------------------- /boards/protocentral/healthypi_move/healthypi_move_nrf5340_cpuapp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/boards/protocentral/healthypi_move/healthypi_move_nrf5340_cpuapp.yaml -------------------------------------------------------------------------------- /boards/protocentral/healthypi_move/healthypi_move_nrf5340_cpuapp_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/boards/protocentral/healthypi_move/healthypi_move_nrf5340_cpuapp_defconfig -------------------------------------------------------------------------------- /boards/protocentral/healthypi_move/healthypi_move_nrf5340_cpuapp_ns.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/boards/protocentral/healthypi_move/healthypi_move_nrf5340_cpuapp_ns.dts -------------------------------------------------------------------------------- /boards/protocentral/healthypi_move/healthypi_move_nrf5340_cpuapp_ns.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/boards/protocentral/healthypi_move/healthypi_move_nrf5340_cpuapp_ns.yaml -------------------------------------------------------------------------------- /boards/protocentral/healthypi_move/healthypi_move_nrf5340_cpuapp_ns_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/boards/protocentral/healthypi_move/healthypi_move_nrf5340_cpuapp_ns_defconfig -------------------------------------------------------------------------------- /boards/protocentral/healthypi_move/healthypi_move_nrf5340_cpunet-pinctrl.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/boards/protocentral/healthypi_move/healthypi_move_nrf5340_cpunet-pinctrl.dtsi -------------------------------------------------------------------------------- /boards/protocentral/healthypi_move/healthypi_move_nrf5340_cpunet.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/boards/protocentral/healthypi_move/healthypi_move_nrf5340_cpunet.dts -------------------------------------------------------------------------------- /boards/protocentral/healthypi_move/healthypi_move_nrf5340_cpunet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/boards/protocentral/healthypi_move/healthypi_move_nrf5340_cpunet.yaml -------------------------------------------------------------------------------- /boards/protocentral/healthypi_move/healthypi_move_nrf5340_cpunet_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/boards/protocentral/healthypi_move/healthypi_move_nrf5340_cpunet_defconfig -------------------------------------------------------------------------------- /boards/protocentral/healthypi_move/nrf5340_cpuapp_common-pinctrl.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/boards/protocentral/healthypi_move/nrf5340_cpuapp_common-pinctrl.dtsi -------------------------------------------------------------------------------- /boards/protocentral/healthypi_move/nrf5340_cpuapp_common.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/boards/protocentral/healthypi_move/nrf5340_cpuapp_common.dtsi -------------------------------------------------------------------------------- /boards/protocentral/healthypi_move/nrf5340_cpuapp_partition_conf.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/boards/protocentral/healthypi_move/nrf5340_cpuapp_partition_conf.dtsi -------------------------------------------------------------------------------- /boards/protocentral/healthypi_move/pre_dt_board.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/boards/protocentral/healthypi_move/pre_dt_board.cmake -------------------------------------------------------------------------------- /docs/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/docs/.DS_Store -------------------------------------------------------------------------------- /docs/images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/docs/images/.DS_Store -------------------------------------------------------------------------------- /docs/images/healthypi-move.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/docs/images/healthypi-move.jpg -------------------------------------------------------------------------------- /docs/images/healthypi_move_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/docs/images/healthypi_move_logo.png -------------------------------------------------------------------------------- /drivers/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/drivers/.DS_Store -------------------------------------------------------------------------------- /drivers/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/drivers/CMakeLists.txt -------------------------------------------------------------------------------- /drivers/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/drivers/Kconfig -------------------------------------------------------------------------------- /drivers/display/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/drivers/display/.DS_Store -------------------------------------------------------------------------------- /drivers/display/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/drivers/display/CMakeLists.txt -------------------------------------------------------------------------------- /drivers/display/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/drivers/display/Kconfig -------------------------------------------------------------------------------- /drivers/display/Kconfig.sh8601: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/drivers/display/Kconfig.sh8601 -------------------------------------------------------------------------------- /drivers/display/display_sh8601.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/drivers/display/display_sh8601.c -------------------------------------------------------------------------------- /drivers/display/display_sh8601.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/drivers/display/display_sh8601.h -------------------------------------------------------------------------------- /drivers/input/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/drivers/input/CMakeLists.txt -------------------------------------------------------------------------------- /drivers/input/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/drivers/input/Kconfig -------------------------------------------------------------------------------- /drivers/input/Kconfig.chsc5816: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/drivers/input/Kconfig.chsc5816 -------------------------------------------------------------------------------- /drivers/input/input_chsc5816.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/drivers/input/input_chsc5816.c -------------------------------------------------------------------------------- /drivers/rtc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/drivers/rtc/CMakeLists.txt -------------------------------------------------------------------------------- /drivers/rtc/Kconfig: -------------------------------------------------------------------------------- 1 | # Copyright (c) 2022 Bjarki Arge Andreasen 2 | # SPDX-License-Identifier: Apache-2.0 3 | 4 | rsource "Kconfig.rv8263" -------------------------------------------------------------------------------- /drivers/rtc/Kconfig.rv8263: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/drivers/rtc/Kconfig.rv8263 -------------------------------------------------------------------------------- /drivers/rtc/calendar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/drivers/rtc/calendar.h -------------------------------------------------------------------------------- /drivers/rtc/rtc_rv8263.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/drivers/rtc/rtc_rv8263.c -------------------------------------------------------------------------------- /drivers/sensor/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/drivers/sensor/.DS_Store -------------------------------------------------------------------------------- /drivers/sensor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/drivers/sensor/CMakeLists.txt -------------------------------------------------------------------------------- /drivers/sensor/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/drivers/sensor/Kconfig -------------------------------------------------------------------------------- /drivers/sensor/bmi323hpi/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/drivers/sensor/bmi323hpi/CMakeLists.txt -------------------------------------------------------------------------------- /drivers/sensor/bmi323hpi/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/drivers/sensor/bmi323hpi/Kconfig -------------------------------------------------------------------------------- /drivers/sensor/bmi323hpi/bmi323_hpi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/drivers/sensor/bmi323hpi/bmi323_hpi.c -------------------------------------------------------------------------------- /drivers/sensor/bmi323hpi/bmi323_hpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/drivers/sensor/bmi323hpi/bmi323_hpi.h -------------------------------------------------------------------------------- /drivers/sensor/bmi323hpi/bmi323_hpi_defs.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drivers/sensor/max30001/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/drivers/sensor/max30001/CMakeLists.txt -------------------------------------------------------------------------------- /drivers/sensor/max30001/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/drivers/sensor/max30001/Kconfig -------------------------------------------------------------------------------- /drivers/sensor/max30001/max30001.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/drivers/sensor/max30001/max30001.c -------------------------------------------------------------------------------- /drivers/sensor/max30001/max30001.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/drivers/sensor/max30001/max30001.h -------------------------------------------------------------------------------- /drivers/sensor/max30001/max30001_async.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/drivers/sensor/max30001/max30001_async.c -------------------------------------------------------------------------------- /drivers/sensor/max30001/max30001_decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/drivers/sensor/max30001/max30001_decoder.c -------------------------------------------------------------------------------- /drivers/sensor/max30208/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/drivers/sensor/max30208/CMakeLists.txt -------------------------------------------------------------------------------- /drivers/sensor/max30208/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/drivers/sensor/max30208/Kconfig -------------------------------------------------------------------------------- /drivers/sensor/max30208/max30208.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/drivers/sensor/max30208/max30208.c -------------------------------------------------------------------------------- /drivers/sensor/max30208/max30208.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/drivers/sensor/max30208/max30208.h -------------------------------------------------------------------------------- /drivers/sensor/max32664c/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/drivers/sensor/max32664c/CMakeLists.txt -------------------------------------------------------------------------------- /drivers/sensor/max32664c/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/drivers/sensor/max32664c/Kconfig -------------------------------------------------------------------------------- /drivers/sensor/max32664c/max32664c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/drivers/sensor/max32664c/max32664c.c -------------------------------------------------------------------------------- /drivers/sensor/max32664c/max32664c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/drivers/sensor/max32664c/max32664c.h -------------------------------------------------------------------------------- /drivers/sensor/max32664c/max32664c_async.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/drivers/sensor/max32664c/max32664c_async.c -------------------------------------------------------------------------------- /drivers/sensor/max32664c/max32664c_decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/drivers/sensor/max32664c/max32664c_decoder.c -------------------------------------------------------------------------------- /drivers/sensor/max32664d/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/drivers/sensor/max32664d/.DS_Store -------------------------------------------------------------------------------- /drivers/sensor/max32664d/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/drivers/sensor/max32664d/CMakeLists.txt -------------------------------------------------------------------------------- /drivers/sensor/max32664d/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/drivers/sensor/max32664d/Kconfig -------------------------------------------------------------------------------- /drivers/sensor/max32664d/max32664d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/drivers/sensor/max32664d/max32664d.c -------------------------------------------------------------------------------- /drivers/sensor/max32664d/max32664d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/drivers/sensor/max32664d/max32664d.h -------------------------------------------------------------------------------- /drivers/sensor/max32664d/max32664d_async.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/drivers/sensor/max32664d/max32664d_async.c -------------------------------------------------------------------------------- /drivers/sensor/max32664d/max32664d_decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/drivers/sensor/max32664d/max32664d_decoder.c -------------------------------------------------------------------------------- /dts/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/dts/.DS_Store -------------------------------------------------------------------------------- /dts/bindings/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/dts/bindings/.DS_Store -------------------------------------------------------------------------------- /dts/bindings/bosch,bmi323hpi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/dts/bindings/bosch,bmi323hpi.yaml -------------------------------------------------------------------------------- /dts/bindings/display/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/dts/bindings/display/.DS_Store -------------------------------------------------------------------------------- /dts/bindings/display/sitronix,sh8601.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/dts/bindings/display/sitronix,sh8601.yaml -------------------------------------------------------------------------------- /dts/bindings/input/chipsemi,chsc6x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/dts/bindings/input/chipsemi,chsc6x.yaml -------------------------------------------------------------------------------- /dts/bindings/maxim,max30001.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/dts/bindings/maxim,max30001.yaml -------------------------------------------------------------------------------- /dts/bindings/maxim,max30205.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/dts/bindings/maxim,max30205.yaml -------------------------------------------------------------------------------- /dts/bindings/maxim,max30208.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/dts/bindings/maxim,max30208.yaml -------------------------------------------------------------------------------- /dts/bindings/maxim,max32664.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/dts/bindings/maxim,max32664.yaml -------------------------------------------------------------------------------- /dts/bindings/maxim,max32664c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/dts/bindings/maxim,max32664c.yaml -------------------------------------------------------------------------------- /dts/bindings/maxim,maxm86146.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/dts/bindings/maxim,maxm86146.yaml -------------------------------------------------------------------------------- /dts/bindings/microcrystal,rv8263.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/dts/bindings/microcrystal,rv8263.yaml -------------------------------------------------------------------------------- /flash.sh: -------------------------------------------------------------------------------- 1 | west flash -d app/build --erase -------------------------------------------------------------------------------- /license_mark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/license_mark.svg -------------------------------------------------------------------------------- /pristine.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/pristine.sh -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/bmf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/scripts/bmf.sh -------------------------------------------------------------------------------- /scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/scripts/build.sh -------------------------------------------------------------------------------- /scripts/build_nrf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/scripts/build_nrf.sh -------------------------------------------------------------------------------- /scripts/build_nrf_net.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/scripts/build_nrf_net.sh -------------------------------------------------------------------------------- /scripts/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/scripts/clean.sh -------------------------------------------------------------------------------- /scripts/config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/scripts/config.sh -------------------------------------------------------------------------------- /scripts/convert_array_to_bin.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/copy_firmware_to_fs.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/flash.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/scripts/flash.sh -------------------------------------------------------------------------------- /scripts/flash_merged.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/scripts/flash_merged.sh -------------------------------------------------------------------------------- /scripts/flash_net.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/scripts/flash_net.sh -------------------------------------------------------------------------------- /scripts/merge.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/scripts/merge.sh -------------------------------------------------------------------------------- /scripts/upload_firmware.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/verify_firmware.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/iir_coeffs_cmsis.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/tools/iir_coeffs_cmsis.m -------------------------------------------------------------------------------- /west.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/west.yml -------------------------------------------------------------------------------- /zephyr/module.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protocentral/healthypi-move-fw/HEAD/zephyr/module.yml --------------------------------------------------------------------------------