├── .clang-format ├── .clang-tidy ├── .gitee ├── ISSUE_TEMPLATE.en.md └── PULL_REQUEST_TEMPLATE.en.md ├── .gitmodules ├── CMakeLists.txt ├── Kconfig.pinetime ├── LICENSE ├── README.md ├── app ├── CMakeLists.txt ├── boards │ └── pinetime_devkit0.overlay ├── prj.conf └── src │ ├── CMakeLists.txt │ ├── app_worker │ ├── app_event_service.c │ ├── app_event_service.h │ ├── app_worker.c │ ├── app_worker.h │ ├── app_worker_event_service.c │ └── app_worker_event_service.h │ ├── apps │ ├── app.c │ ├── app.h │ └── app │ │ ├── clock.c │ │ ├── clock.h │ │ ├── music.c │ │ ├── music.h │ │ ├── passkey.c │ │ └── passkey.h │ ├── bluetooth │ ├── ble_gatt_client.c │ ├── ble_gatt_client.h │ ├── bt.c │ └── bt.h │ ├── event │ ├── CMakeLists.txt │ ├── battery_state_service.c │ ├── battery_state_service.h │ ├── event_service.c │ ├── event_service.h │ ├── event_service_mem.c │ ├── event_service_mem.h │ ├── health_service.c │ ├── health_service.h │ ├── service_accel.c │ ├── service_accel.h │ ├── service_compass.c │ ├── service_compass.h │ ├── tick_timer_service.c │ └── tick_timer_service.h │ ├── main.c │ ├── msg_def.h │ ├── screens │ ├── clock_face.c │ ├── compass.c │ ├── compass.h │ ├── date_settings.c │ ├── home.c │ ├── menu.c │ ├── screen_manager.c │ └── screen_manager.h │ ├── service │ ├── backlight.c │ ├── backlight.h │ ├── battery.c │ ├── bma4xx.c │ ├── button.c │ ├── button.h │ ├── button_cfg.c │ ├── charger.c │ ├── display.c │ ├── display_api.h │ ├── display_power.c │ ├── display_power.h │ ├── event_service.c │ ├── event_service.h │ ├── touch.c │ ├── vibrator.c │ └── vibrator.h │ ├── storage │ ├── CMakeLists.txt │ ├── blobdb.c │ ├── blobdb.h │ ├── health_storage_persist.c │ ├── health_storage_persist.h │ ├── storage_persist.c │ └── storage_persist.h │ └── vibes │ ├── vibes.c │ └── vibes.h ├── bluetooth ├── CMakeLists.txt ├── Kconfig ├── Kconfig.discovery ├── gatt_dm.c ├── gatt_dm.h └── services │ ├── CMakeLists.txt │ ├── Kconfig │ ├── Kconfig.ams_client │ ├── Kconfig.ancs_client │ ├── Kconfig.bas_client │ ├── Kconfig.bms │ ├── Kconfig.cts_client │ ├── Kconfig.ddfs │ ├── Kconfig.dfu_smp │ ├── Kconfig.gattp │ ├── Kconfig.hids │ ├── Kconfig.hogp │ ├── Kconfig.hrs_client │ ├── Kconfig.latency │ ├── Kconfig.latency_c │ ├── Kconfig.lbs │ ├── Kconfig.nus │ ├── Kconfig.nus_client │ ├── Kconfig.rscs │ ├── Kconfig.throughput │ ├── alexa_gadgets │ ├── CMakeLists.txt │ ├── Kconfig.gadgets │ ├── gadgets.c │ ├── gadgets_profile.c │ └── proto │ │ ├── custom_event.options │ │ └── custom_event.proto │ ├── ams_client.c │ ├── ancs_app_attr_get.c │ ├── ancs_app_attr_get.h │ ├── ancs_attr_parser.c │ ├── ancs_attr_parser.h │ ├── ancs_client.c │ ├── ancs_client_internal.h │ ├── bas_client.c │ ├── bms.c │ ├── cts_client.c │ ├── ddfs.c │ ├── dfu_smp.c │ ├── gattp.c │ ├── hids.c │ ├── hogp.c │ ├── hrs_client.c │ ├── latency.c │ ├── latency_client.c │ ├── lbs.c │ ├── nus.c │ ├── nus_client.c │ ├── rscs.c │ └── throughput.c ├── drivers ├── CMakeLists.txt ├── Kconfig └── sensor │ ├── CMakeLists.txt │ ├── Kconfig │ ├── bma421 │ ├── CMakeLists.txt │ ├── Kconfig │ ├── bma421.c │ ├── bma421.h │ ├── bma421 │ │ ├── bma4.c │ │ ├── bma4.h │ │ ├── bma421.c │ │ ├── bma421.h │ │ ├── bma421_config.h │ │ └── bma4_defs.h │ ├── bma421_trigger.c │ └── libbma421 │ │ ├── README.md │ │ ├── bma4.c │ │ ├── bma4.h │ │ ├── bma421.c │ │ ├── bma421.h │ │ ├── bma423.c │ │ ├── bma423.h │ │ └── bma4_defs.h │ └── hrs3300 │ ├── CMakeLists.txt │ ├── Kconfig │ ├── hrs3300.c │ └── hrs3300.h ├── dts └── bindings │ └── sensor │ └── bosch,bma421-i2c.yaml ├── include └── bluetooth │ ├── gatt_dm.h │ └── services │ ├── ams_client.h │ ├── ancs_client.h │ ├── bas_client.h │ ├── bms.h │ ├── cts_client.h │ ├── ddfs.h │ ├── dfu_smp.h │ ├── gadgets.h │ ├── gadgets_profile.h │ ├── gattp.h │ ├── hids.h │ ├── hogp.h │ ├── hrs_client.h │ ├── latency.h │ ├── latency_client.h │ ├── lbs.h │ ├── nus.h │ ├── nus_client.h │ ├── rscs.h │ └── throughput.h ├── west.yml └── zephyr └── module.yml /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/.clang-format -------------------------------------------------------------------------------- /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.gitee/ISSUE_TEMPLATE.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/.gitee/ISSUE_TEMPLATE.en.md -------------------------------------------------------------------------------- /.gitee/PULL_REQUEST_TEMPLATE.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/.gitee/PULL_REQUEST_TEMPLATE.en.md -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Kconfig.pinetime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/Kconfig.pinetime -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/README.md -------------------------------------------------------------------------------- /app/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/app/CMakeLists.txt -------------------------------------------------------------------------------- /app/boards/pinetime_devkit0.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/app/boards/pinetime_devkit0.overlay -------------------------------------------------------------------------------- /app/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/app/prj.conf -------------------------------------------------------------------------------- /app/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/app/src/CMakeLists.txt -------------------------------------------------------------------------------- /app/src/app_worker/app_event_service.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/app_worker/app_event_service.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/app_worker/app_worker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/app/src/app_worker/app_worker.c -------------------------------------------------------------------------------- /app/src/app_worker/app_worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/app/src/app_worker/app_worker.h -------------------------------------------------------------------------------- /app/src/app_worker/app_worker_event_service.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/app/src/app_worker/app_worker_event_service.c -------------------------------------------------------------------------------- /app/src/app_worker/app_worker_event_service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/app/src/app_worker/app_worker_event_service.h -------------------------------------------------------------------------------- /app/src/apps/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/app/src/apps/app.c -------------------------------------------------------------------------------- /app/src/apps/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/app/src/apps/app.h -------------------------------------------------------------------------------- /app/src/apps/app/clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/app/src/apps/app/clock.c -------------------------------------------------------------------------------- /app/src/apps/app/clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/app/src/apps/app/clock.h -------------------------------------------------------------------------------- /app/src/apps/app/music.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/app/src/apps/app/music.c -------------------------------------------------------------------------------- /app/src/apps/app/music.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/app/src/apps/app/music.h -------------------------------------------------------------------------------- /app/src/apps/app/passkey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/app/src/apps/app/passkey.c -------------------------------------------------------------------------------- /app/src/apps/app/passkey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/app/src/apps/app/passkey.h -------------------------------------------------------------------------------- /app/src/bluetooth/ble_gatt_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/app/src/bluetooth/ble_gatt_client.c -------------------------------------------------------------------------------- /app/src/bluetooth/ble_gatt_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/app/src/bluetooth/ble_gatt_client.h -------------------------------------------------------------------------------- /app/src/bluetooth/bt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/app/src/bluetooth/bt.c -------------------------------------------------------------------------------- /app/src/bluetooth/bt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/app/src/bluetooth/bt.h -------------------------------------------------------------------------------- /app/src/event/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/app/src/event/CMakeLists.txt -------------------------------------------------------------------------------- /app/src/event/battery_state_service.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/app/src/event/battery_state_service.c -------------------------------------------------------------------------------- /app/src/event/battery_state_service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/app/src/event/battery_state_service.h -------------------------------------------------------------------------------- /app/src/event/event_service.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/app/src/event/event_service.c -------------------------------------------------------------------------------- /app/src/event/event_service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/app/src/event/event_service.h -------------------------------------------------------------------------------- /app/src/event/event_service_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/app/src/event/event_service_mem.c -------------------------------------------------------------------------------- /app/src/event/event_service_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/app/src/event/event_service_mem.h -------------------------------------------------------------------------------- /app/src/event/health_service.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/app/src/event/health_service.c -------------------------------------------------------------------------------- /app/src/event/health_service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/app/src/event/health_service.h -------------------------------------------------------------------------------- /app/src/event/service_accel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/app/src/event/service_accel.c -------------------------------------------------------------------------------- /app/src/event/service_accel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/app/src/event/service_accel.h -------------------------------------------------------------------------------- /app/src/event/service_compass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/app/src/event/service_compass.c -------------------------------------------------------------------------------- /app/src/event/service_compass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/app/src/event/service_compass.h -------------------------------------------------------------------------------- /app/src/event/tick_timer_service.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/app/src/event/tick_timer_service.c -------------------------------------------------------------------------------- /app/src/event/tick_timer_service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/app/src/event/tick_timer_service.h -------------------------------------------------------------------------------- /app/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/app/src/main.c -------------------------------------------------------------------------------- /app/src/msg_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/app/src/msg_def.h -------------------------------------------------------------------------------- /app/src/screens/clock_face.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/app/src/screens/clock_face.c -------------------------------------------------------------------------------- /app/src/screens/compass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/app/src/screens/compass.c -------------------------------------------------------------------------------- /app/src/screens/compass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/app/src/screens/compass.h -------------------------------------------------------------------------------- /app/src/screens/date_settings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/app/src/screens/date_settings.c -------------------------------------------------------------------------------- /app/src/screens/home.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/app/src/screens/home.c -------------------------------------------------------------------------------- /app/src/screens/menu.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/screens/screen_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/app/src/screens/screen_manager.c -------------------------------------------------------------------------------- /app/src/screens/screen_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/app/src/screens/screen_manager.h -------------------------------------------------------------------------------- /app/src/service/backlight.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/app/src/service/backlight.c -------------------------------------------------------------------------------- /app/src/service/backlight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/app/src/service/backlight.h -------------------------------------------------------------------------------- /app/src/service/battery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/app/src/service/battery.c -------------------------------------------------------------------------------- /app/src/service/bma4xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/app/src/service/bma4xx.c -------------------------------------------------------------------------------- /app/src/service/button.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/app/src/service/button.c -------------------------------------------------------------------------------- /app/src/service/button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/app/src/service/button.h -------------------------------------------------------------------------------- /app/src/service/button_cfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/app/src/service/button_cfg.c -------------------------------------------------------------------------------- /app/src/service/charger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/app/src/service/charger.c -------------------------------------------------------------------------------- /app/src/service/display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/app/src/service/display.c -------------------------------------------------------------------------------- /app/src/service/display_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/app/src/service/display_api.h -------------------------------------------------------------------------------- /app/src/service/display_power.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/app/src/service/display_power.c -------------------------------------------------------------------------------- /app/src/service/display_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/app/src/service/display_power.h -------------------------------------------------------------------------------- /app/src/service/event_service.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/app/src/service/event_service.c -------------------------------------------------------------------------------- /app/src/service/event_service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/app/src/service/event_service.h -------------------------------------------------------------------------------- /app/src/service/touch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/app/src/service/touch.c -------------------------------------------------------------------------------- /app/src/service/vibrator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/app/src/service/vibrator.c -------------------------------------------------------------------------------- /app/src/service/vibrator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/app/src/service/vibrator.h -------------------------------------------------------------------------------- /app/src/storage/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/app/src/storage/CMakeLists.txt -------------------------------------------------------------------------------- /app/src/storage/blobdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/app/src/storage/blobdb.c -------------------------------------------------------------------------------- /app/src/storage/blobdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/app/src/storage/blobdb.h -------------------------------------------------------------------------------- /app/src/storage/health_storage_persist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/app/src/storage/health_storage_persist.c -------------------------------------------------------------------------------- /app/src/storage/health_storage_persist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/app/src/storage/health_storage_persist.h -------------------------------------------------------------------------------- /app/src/storage/storage_persist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/app/src/storage/storage_persist.c -------------------------------------------------------------------------------- /app/src/storage/storage_persist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/app/src/storage/storage_persist.h -------------------------------------------------------------------------------- /app/src/vibes/vibes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/app/src/vibes/vibes.c -------------------------------------------------------------------------------- /app/src/vibes/vibes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/app/src/vibes/vibes.h -------------------------------------------------------------------------------- /bluetooth/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/bluetooth/CMakeLists.txt -------------------------------------------------------------------------------- /bluetooth/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/bluetooth/Kconfig -------------------------------------------------------------------------------- /bluetooth/Kconfig.discovery: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/bluetooth/Kconfig.discovery -------------------------------------------------------------------------------- /bluetooth/gatt_dm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/bluetooth/gatt_dm.c -------------------------------------------------------------------------------- /bluetooth/gatt_dm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/bluetooth/gatt_dm.h -------------------------------------------------------------------------------- /bluetooth/services/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/bluetooth/services/CMakeLists.txt -------------------------------------------------------------------------------- /bluetooth/services/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/bluetooth/services/Kconfig -------------------------------------------------------------------------------- /bluetooth/services/Kconfig.ams_client: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/bluetooth/services/Kconfig.ams_client -------------------------------------------------------------------------------- /bluetooth/services/Kconfig.ancs_client: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/bluetooth/services/Kconfig.ancs_client -------------------------------------------------------------------------------- /bluetooth/services/Kconfig.bas_client: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/bluetooth/services/Kconfig.bas_client -------------------------------------------------------------------------------- /bluetooth/services/Kconfig.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/bluetooth/services/Kconfig.bms -------------------------------------------------------------------------------- /bluetooth/services/Kconfig.cts_client: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/bluetooth/services/Kconfig.cts_client -------------------------------------------------------------------------------- /bluetooth/services/Kconfig.ddfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/bluetooth/services/Kconfig.ddfs -------------------------------------------------------------------------------- /bluetooth/services/Kconfig.dfu_smp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/bluetooth/services/Kconfig.dfu_smp -------------------------------------------------------------------------------- /bluetooth/services/Kconfig.gattp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/bluetooth/services/Kconfig.gattp -------------------------------------------------------------------------------- /bluetooth/services/Kconfig.hids: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/bluetooth/services/Kconfig.hids -------------------------------------------------------------------------------- /bluetooth/services/Kconfig.hogp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/bluetooth/services/Kconfig.hogp -------------------------------------------------------------------------------- /bluetooth/services/Kconfig.hrs_client: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/bluetooth/services/Kconfig.hrs_client -------------------------------------------------------------------------------- /bluetooth/services/Kconfig.latency: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/bluetooth/services/Kconfig.latency -------------------------------------------------------------------------------- /bluetooth/services/Kconfig.latency_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/bluetooth/services/Kconfig.latency_c -------------------------------------------------------------------------------- /bluetooth/services/Kconfig.lbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/bluetooth/services/Kconfig.lbs -------------------------------------------------------------------------------- /bluetooth/services/Kconfig.nus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/bluetooth/services/Kconfig.nus -------------------------------------------------------------------------------- /bluetooth/services/Kconfig.nus_client: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/bluetooth/services/Kconfig.nus_client -------------------------------------------------------------------------------- /bluetooth/services/Kconfig.rscs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/bluetooth/services/Kconfig.rscs -------------------------------------------------------------------------------- /bluetooth/services/Kconfig.throughput: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/bluetooth/services/Kconfig.throughput -------------------------------------------------------------------------------- /bluetooth/services/alexa_gadgets/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/bluetooth/services/alexa_gadgets/CMakeLists.txt -------------------------------------------------------------------------------- /bluetooth/services/alexa_gadgets/Kconfig.gadgets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/bluetooth/services/alexa_gadgets/Kconfig.gadgets -------------------------------------------------------------------------------- /bluetooth/services/alexa_gadgets/gadgets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/bluetooth/services/alexa_gadgets/gadgets.c -------------------------------------------------------------------------------- /bluetooth/services/alexa_gadgets/gadgets_profile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/bluetooth/services/alexa_gadgets/gadgets_profile.c -------------------------------------------------------------------------------- /bluetooth/services/alexa_gadgets/proto/custom_event.options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/bluetooth/services/alexa_gadgets/proto/custom_event.options -------------------------------------------------------------------------------- /bluetooth/services/alexa_gadgets/proto/custom_event.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/bluetooth/services/alexa_gadgets/proto/custom_event.proto -------------------------------------------------------------------------------- /bluetooth/services/ams_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/bluetooth/services/ams_client.c -------------------------------------------------------------------------------- /bluetooth/services/ancs_app_attr_get.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/bluetooth/services/ancs_app_attr_get.c -------------------------------------------------------------------------------- /bluetooth/services/ancs_app_attr_get.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/bluetooth/services/ancs_app_attr_get.h -------------------------------------------------------------------------------- /bluetooth/services/ancs_attr_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/bluetooth/services/ancs_attr_parser.c -------------------------------------------------------------------------------- /bluetooth/services/ancs_attr_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/bluetooth/services/ancs_attr_parser.h -------------------------------------------------------------------------------- /bluetooth/services/ancs_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/bluetooth/services/ancs_client.c -------------------------------------------------------------------------------- /bluetooth/services/ancs_client_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/bluetooth/services/ancs_client_internal.h -------------------------------------------------------------------------------- /bluetooth/services/bas_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/bluetooth/services/bas_client.c -------------------------------------------------------------------------------- /bluetooth/services/bms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/bluetooth/services/bms.c -------------------------------------------------------------------------------- /bluetooth/services/cts_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/bluetooth/services/cts_client.c -------------------------------------------------------------------------------- /bluetooth/services/ddfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/bluetooth/services/ddfs.c -------------------------------------------------------------------------------- /bluetooth/services/dfu_smp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/bluetooth/services/dfu_smp.c -------------------------------------------------------------------------------- /bluetooth/services/gattp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/bluetooth/services/gattp.c -------------------------------------------------------------------------------- /bluetooth/services/hids.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/bluetooth/services/hids.c -------------------------------------------------------------------------------- /bluetooth/services/hogp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/bluetooth/services/hogp.c -------------------------------------------------------------------------------- /bluetooth/services/hrs_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/bluetooth/services/hrs_client.c -------------------------------------------------------------------------------- /bluetooth/services/latency.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/bluetooth/services/latency.c -------------------------------------------------------------------------------- /bluetooth/services/latency_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/bluetooth/services/latency_client.c -------------------------------------------------------------------------------- /bluetooth/services/lbs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/bluetooth/services/lbs.c -------------------------------------------------------------------------------- /bluetooth/services/nus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/bluetooth/services/nus.c -------------------------------------------------------------------------------- /bluetooth/services/nus_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/bluetooth/services/nus_client.c -------------------------------------------------------------------------------- /bluetooth/services/rscs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/bluetooth/services/rscs.c -------------------------------------------------------------------------------- /bluetooth/services/throughput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/bluetooth/services/throughput.c -------------------------------------------------------------------------------- /drivers/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: Apache-2.0 2 | 3 | add_subdirectory_ifdef(CONFIG_SENSOR sensor) 4 | -------------------------------------------------------------------------------- /drivers/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/drivers/Kconfig -------------------------------------------------------------------------------- /drivers/sensor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/drivers/sensor/CMakeLists.txt -------------------------------------------------------------------------------- /drivers/sensor/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/drivers/sensor/Kconfig -------------------------------------------------------------------------------- /drivers/sensor/bma421/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/drivers/sensor/bma421/CMakeLists.txt -------------------------------------------------------------------------------- /drivers/sensor/bma421/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/drivers/sensor/bma421/Kconfig -------------------------------------------------------------------------------- /drivers/sensor/bma421/bma421.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/drivers/sensor/bma421/bma421.c -------------------------------------------------------------------------------- /drivers/sensor/bma421/bma421.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/drivers/sensor/bma421/bma421.h -------------------------------------------------------------------------------- /drivers/sensor/bma421/bma421/bma4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/drivers/sensor/bma421/bma421/bma4.c -------------------------------------------------------------------------------- /drivers/sensor/bma421/bma421/bma4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/drivers/sensor/bma421/bma421/bma4.h -------------------------------------------------------------------------------- /drivers/sensor/bma421/bma421/bma421.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/drivers/sensor/bma421/bma421/bma421.c -------------------------------------------------------------------------------- /drivers/sensor/bma421/bma421/bma421.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/drivers/sensor/bma421/bma421/bma421.h -------------------------------------------------------------------------------- /drivers/sensor/bma421/bma421/bma421_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/drivers/sensor/bma421/bma421/bma421_config.h -------------------------------------------------------------------------------- /drivers/sensor/bma421/bma421/bma4_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/drivers/sensor/bma421/bma421/bma4_defs.h -------------------------------------------------------------------------------- /drivers/sensor/bma421/bma421_trigger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/drivers/sensor/bma421/bma421_trigger.c -------------------------------------------------------------------------------- /drivers/sensor/bma421/libbma421/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/drivers/sensor/bma421/libbma421/README.md -------------------------------------------------------------------------------- /drivers/sensor/bma421/libbma421/bma4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/drivers/sensor/bma421/libbma421/bma4.c -------------------------------------------------------------------------------- /drivers/sensor/bma421/libbma421/bma4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/drivers/sensor/bma421/libbma421/bma4.h -------------------------------------------------------------------------------- /drivers/sensor/bma421/libbma421/bma421.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/drivers/sensor/bma421/libbma421/bma421.c -------------------------------------------------------------------------------- /drivers/sensor/bma421/libbma421/bma421.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/drivers/sensor/bma421/libbma421/bma421.h -------------------------------------------------------------------------------- /drivers/sensor/bma421/libbma421/bma423.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/drivers/sensor/bma421/libbma421/bma423.c -------------------------------------------------------------------------------- /drivers/sensor/bma421/libbma421/bma423.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/drivers/sensor/bma421/libbma421/bma423.h -------------------------------------------------------------------------------- /drivers/sensor/bma421/libbma421/bma4_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/drivers/sensor/bma421/libbma421/bma4_defs.h -------------------------------------------------------------------------------- /drivers/sensor/hrs3300/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/drivers/sensor/hrs3300/CMakeLists.txt -------------------------------------------------------------------------------- /drivers/sensor/hrs3300/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/drivers/sensor/hrs3300/Kconfig -------------------------------------------------------------------------------- /drivers/sensor/hrs3300/hrs3300.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/drivers/sensor/hrs3300/hrs3300.c -------------------------------------------------------------------------------- /drivers/sensor/hrs3300/hrs3300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/drivers/sensor/hrs3300/hrs3300.h -------------------------------------------------------------------------------- /dts/bindings/sensor/bosch,bma421-i2c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/dts/bindings/sensor/bosch,bma421-i2c.yaml -------------------------------------------------------------------------------- /include/bluetooth/gatt_dm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/include/bluetooth/gatt_dm.h -------------------------------------------------------------------------------- /include/bluetooth/services/ams_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/include/bluetooth/services/ams_client.h -------------------------------------------------------------------------------- /include/bluetooth/services/ancs_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/include/bluetooth/services/ancs_client.h -------------------------------------------------------------------------------- /include/bluetooth/services/bas_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/include/bluetooth/services/bas_client.h -------------------------------------------------------------------------------- /include/bluetooth/services/bms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/include/bluetooth/services/bms.h -------------------------------------------------------------------------------- /include/bluetooth/services/cts_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/include/bluetooth/services/cts_client.h -------------------------------------------------------------------------------- /include/bluetooth/services/ddfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/include/bluetooth/services/ddfs.h -------------------------------------------------------------------------------- /include/bluetooth/services/dfu_smp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/include/bluetooth/services/dfu_smp.h -------------------------------------------------------------------------------- /include/bluetooth/services/gadgets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/include/bluetooth/services/gadgets.h -------------------------------------------------------------------------------- /include/bluetooth/services/gadgets_profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/include/bluetooth/services/gadgets_profile.h -------------------------------------------------------------------------------- /include/bluetooth/services/gattp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/include/bluetooth/services/gattp.h -------------------------------------------------------------------------------- /include/bluetooth/services/hids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/include/bluetooth/services/hids.h -------------------------------------------------------------------------------- /include/bluetooth/services/hogp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/include/bluetooth/services/hogp.h -------------------------------------------------------------------------------- /include/bluetooth/services/hrs_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/include/bluetooth/services/hrs_client.h -------------------------------------------------------------------------------- /include/bluetooth/services/latency.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/include/bluetooth/services/latency.h -------------------------------------------------------------------------------- /include/bluetooth/services/latency_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/include/bluetooth/services/latency_client.h -------------------------------------------------------------------------------- /include/bluetooth/services/lbs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/include/bluetooth/services/lbs.h -------------------------------------------------------------------------------- /include/bluetooth/services/nus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/include/bluetooth/services/nus.h -------------------------------------------------------------------------------- /include/bluetooth/services/nus_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/include/bluetooth/services/nus_client.h -------------------------------------------------------------------------------- /include/bluetooth/services/rscs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/include/bluetooth/services/rscs.h -------------------------------------------------------------------------------- /include/bluetooth/services/throughput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/include/bluetooth/services/throughput.h -------------------------------------------------------------------------------- /west.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/west.yml -------------------------------------------------------------------------------- /zephyr/module.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ck-telecom/pinetime/HEAD/zephyr/module.yml --------------------------------------------------------------------------------