├── .gitignore ├── README.md ├── accel.c ├── accel.h ├── alarm.c ├── alarm.h ├── arm5 ├── RTE │ ├── Device │ │ └── nRF51822_xxAA │ │ │ ├── arm_startup_nrf51.s │ │ │ └── system_nrf51.c │ ├── RTE_Components.h │ ├── nRF_BLE │ │ └── nRF51822_xxAA │ │ │ ├── ble_advdata.c │ │ │ ├── ble_advdata.h │ │ │ ├── ble_advertising.c │ │ │ ├── ble_conn_params.c │ │ │ ├── ble_conn_params.h │ │ │ ├── ble_db_discovery.c │ │ │ ├── ble_db_discovery.h │ │ │ └── device_manager_cnfg.h │ ├── nRF_Drivers │ │ └── nRF51822_xxAA │ │ │ ├── app_uart.h │ │ │ ├── app_uart_fifo.c │ │ │ ├── nrf_drv_config.h │ │ │ ├── pstorage.c │ │ │ ├── pstorage.h │ │ │ ├── pstorage_platform.h │ │ │ ├── twi_master.h │ │ │ ├── twi_master_config.h │ │ │ └── twi_sw_master.c │ ├── nRF_Libraries │ │ └── nRF51822_xxAA │ │ │ ├── app_button.c │ │ │ ├── app_button.h │ │ │ ├── app_error.c │ │ │ ├── app_error.h │ │ │ ├── app_fifo.c │ │ │ ├── app_fifo.h │ │ │ ├── app_gpiote.c │ │ │ ├── app_gpiote.h │ │ │ ├── app_scheduler.c │ │ │ ├── app_scheduler.h │ │ │ ├── app_timer.c │ │ │ ├── app_timer.h │ │ │ ├── app_trace.c │ │ │ ├── app_trace.h │ │ │ ├── nrf_assert.c │ │ │ ├── nrf_assert.h │ │ │ └── retarget.c │ └── nRF_SoftDevice │ │ └── nRF51822_xxAA │ │ ├── s120_nrf51822_2.0.0_licence_agreement.txt │ │ └── softdevice_handler.c ├── ossw-firmware-s120.uvoptx └── ossw-firmware-s120.uvprojx ├── battery.c ├── battery.h ├── ble ├── ble_central.c ├── ble_central.h ├── ble_ossw.c ├── ble_ossw.h ├── ble_peripheral.c └── ble_peripheral.h ├── board.h ├── button_lib.c ├── button_lib.h ├── buttons.c ├── buttons.h ├── command.c ├── command.h ├── config.c ├── config.h ├── config ├── device_manager_cnfg.h └── pstorage_platform.h ├── ext_flash.c ├── ext_flash.h ├── ext_ram.c ├── ext_ram.h ├── fonts ├── big_bold.h ├── big_regular.h ├── font.h ├── normal_bold.h ├── normal_regular.h ├── option_big.h ├── option_normal.h ├── small_bold.h └── small_regular.h ├── fs.c ├── fs.h ├── graph.c ├── graph.h ├── i18n ├── i18n.c ├── i18n.h └── messages_en.h ├── main.c ├── mlcd.c ├── mlcd.h ├── mlcd_draw.c ├── mlcd_draw.h ├── notifications.c ├── notifications.h ├── ossw.c ├── ossw.h ├── pack.cmd ├── pawn ├── amx.c ├── amx.h ├── amxext.c ├── amxext.h ├── amxutil.c ├── amxutil.h └── osdefs.h ├── rtc.c ├── rtc.h ├── scr_controls.c ├── scr_controls.h ├── scr_mngr.c ├── scr_mngr.h ├── screens ├── dialog_option_text.c ├── dialog_option_text.h ├── dialog_select.c ├── dialog_select.h ├── scr_about.c ├── scr_about.h ├── scr_alert_notification.c ├── scr_alert_notification.h ├── scr_changedate.c ├── scr_changedate.h ├── scr_changetime.c ├── scr_changetime.h ├── scr_dark_hours.c ├── scr_dark_hours.h ├── scr_notifications.c ├── scr_notifications.h ├── scr_setalarm.c ├── scr_setalarm.h ├── scr_settings.c ├── scr_settings.h ├── scr_silent_hours.c ├── scr_silent_hours.h ├── scr_status.c ├── scr_status.h ├── scr_timer.c ├── scr_timer.h ├── scr_watchface.c ├── scr_watchface.h ├── scr_watchface_analog.c ├── scr_watchface_analog.h ├── scr_watchset.c ├── scr_watchset.h ├── scr_watchset_list.c └── scr_watchset_list.h ├── spi.c ├── spi.h ├── spiffs ├── spiffs.h ├── spiffs_check.c ├── spiffs_config.h ├── spiffs_gc.c ├── spiffs_hydrogen.c ├── spiffs_nucleus.c └── spiffs_nucleus.h ├── stopwatch.c ├── stopwatch.h ├── utf8.c ├── utf8.h ├── vibration.c ├── vibration.h ├── watchset.c └── watchset.h /.gitignore: -------------------------------------------------------------------------------- 1 | arm5/_build 2 | ossw-firmware-s120.uvguix.* 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/README.md -------------------------------------------------------------------------------- /accel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/accel.c -------------------------------------------------------------------------------- /accel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/accel.h -------------------------------------------------------------------------------- /alarm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/alarm.c -------------------------------------------------------------------------------- /alarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/alarm.h -------------------------------------------------------------------------------- /arm5/RTE/Device/nRF51822_xxAA/arm_startup_nrf51.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/arm5/RTE/Device/nRF51822_xxAA/arm_startup_nrf51.s -------------------------------------------------------------------------------- /arm5/RTE/Device/nRF51822_xxAA/system_nrf51.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/arm5/RTE/Device/nRF51822_xxAA/system_nrf51.c -------------------------------------------------------------------------------- /arm5/RTE/RTE_Components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/arm5/RTE/RTE_Components.h -------------------------------------------------------------------------------- /arm5/RTE/nRF_BLE/nRF51822_xxAA/ble_advdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/arm5/RTE/nRF_BLE/nRF51822_xxAA/ble_advdata.c -------------------------------------------------------------------------------- /arm5/RTE/nRF_BLE/nRF51822_xxAA/ble_advdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/arm5/RTE/nRF_BLE/nRF51822_xxAA/ble_advdata.h -------------------------------------------------------------------------------- /arm5/RTE/nRF_BLE/nRF51822_xxAA/ble_advertising.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/arm5/RTE/nRF_BLE/nRF51822_xxAA/ble_advertising.c -------------------------------------------------------------------------------- /arm5/RTE/nRF_BLE/nRF51822_xxAA/ble_conn_params.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/arm5/RTE/nRF_BLE/nRF51822_xxAA/ble_conn_params.c -------------------------------------------------------------------------------- /arm5/RTE/nRF_BLE/nRF51822_xxAA/ble_conn_params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/arm5/RTE/nRF_BLE/nRF51822_xxAA/ble_conn_params.h -------------------------------------------------------------------------------- /arm5/RTE/nRF_BLE/nRF51822_xxAA/ble_db_discovery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/arm5/RTE/nRF_BLE/nRF51822_xxAA/ble_db_discovery.c -------------------------------------------------------------------------------- /arm5/RTE/nRF_BLE/nRF51822_xxAA/ble_db_discovery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/arm5/RTE/nRF_BLE/nRF51822_xxAA/ble_db_discovery.h -------------------------------------------------------------------------------- /arm5/RTE/nRF_BLE/nRF51822_xxAA/device_manager_cnfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/arm5/RTE/nRF_BLE/nRF51822_xxAA/device_manager_cnfg.h -------------------------------------------------------------------------------- /arm5/RTE/nRF_Drivers/nRF51822_xxAA/app_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/arm5/RTE/nRF_Drivers/nRF51822_xxAA/app_uart.h -------------------------------------------------------------------------------- /arm5/RTE/nRF_Drivers/nRF51822_xxAA/app_uart_fifo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/arm5/RTE/nRF_Drivers/nRF51822_xxAA/app_uart_fifo.c -------------------------------------------------------------------------------- /arm5/RTE/nRF_Drivers/nRF51822_xxAA/nrf_drv_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/arm5/RTE/nRF_Drivers/nRF51822_xxAA/nrf_drv_config.h -------------------------------------------------------------------------------- /arm5/RTE/nRF_Drivers/nRF51822_xxAA/pstorage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/arm5/RTE/nRF_Drivers/nRF51822_xxAA/pstorage.c -------------------------------------------------------------------------------- /arm5/RTE/nRF_Drivers/nRF51822_xxAA/pstorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/arm5/RTE/nRF_Drivers/nRF51822_xxAA/pstorage.h -------------------------------------------------------------------------------- /arm5/RTE/nRF_Drivers/nRF51822_xxAA/pstorage_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/arm5/RTE/nRF_Drivers/nRF51822_xxAA/pstorage_platform.h -------------------------------------------------------------------------------- /arm5/RTE/nRF_Drivers/nRF51822_xxAA/twi_master.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/arm5/RTE/nRF_Drivers/nRF51822_xxAA/twi_master.h -------------------------------------------------------------------------------- /arm5/RTE/nRF_Drivers/nRF51822_xxAA/twi_master_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/arm5/RTE/nRF_Drivers/nRF51822_xxAA/twi_master_config.h -------------------------------------------------------------------------------- /arm5/RTE/nRF_Drivers/nRF51822_xxAA/twi_sw_master.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/arm5/RTE/nRF_Drivers/nRF51822_xxAA/twi_sw_master.c -------------------------------------------------------------------------------- /arm5/RTE/nRF_Libraries/nRF51822_xxAA/app_button.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/arm5/RTE/nRF_Libraries/nRF51822_xxAA/app_button.c -------------------------------------------------------------------------------- /arm5/RTE/nRF_Libraries/nRF51822_xxAA/app_button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/arm5/RTE/nRF_Libraries/nRF51822_xxAA/app_button.h -------------------------------------------------------------------------------- /arm5/RTE/nRF_Libraries/nRF51822_xxAA/app_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/arm5/RTE/nRF_Libraries/nRF51822_xxAA/app_error.c -------------------------------------------------------------------------------- /arm5/RTE/nRF_Libraries/nRF51822_xxAA/app_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/arm5/RTE/nRF_Libraries/nRF51822_xxAA/app_error.h -------------------------------------------------------------------------------- /arm5/RTE/nRF_Libraries/nRF51822_xxAA/app_fifo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/arm5/RTE/nRF_Libraries/nRF51822_xxAA/app_fifo.c -------------------------------------------------------------------------------- /arm5/RTE/nRF_Libraries/nRF51822_xxAA/app_fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/arm5/RTE/nRF_Libraries/nRF51822_xxAA/app_fifo.h -------------------------------------------------------------------------------- /arm5/RTE/nRF_Libraries/nRF51822_xxAA/app_gpiote.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/arm5/RTE/nRF_Libraries/nRF51822_xxAA/app_gpiote.c -------------------------------------------------------------------------------- /arm5/RTE/nRF_Libraries/nRF51822_xxAA/app_gpiote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/arm5/RTE/nRF_Libraries/nRF51822_xxAA/app_gpiote.h -------------------------------------------------------------------------------- /arm5/RTE/nRF_Libraries/nRF51822_xxAA/app_scheduler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/arm5/RTE/nRF_Libraries/nRF51822_xxAA/app_scheduler.c -------------------------------------------------------------------------------- /arm5/RTE/nRF_Libraries/nRF51822_xxAA/app_scheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/arm5/RTE/nRF_Libraries/nRF51822_xxAA/app_scheduler.h -------------------------------------------------------------------------------- /arm5/RTE/nRF_Libraries/nRF51822_xxAA/app_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/arm5/RTE/nRF_Libraries/nRF51822_xxAA/app_timer.c -------------------------------------------------------------------------------- /arm5/RTE/nRF_Libraries/nRF51822_xxAA/app_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/arm5/RTE/nRF_Libraries/nRF51822_xxAA/app_timer.h -------------------------------------------------------------------------------- /arm5/RTE/nRF_Libraries/nRF51822_xxAA/app_trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/arm5/RTE/nRF_Libraries/nRF51822_xxAA/app_trace.c -------------------------------------------------------------------------------- /arm5/RTE/nRF_Libraries/nRF51822_xxAA/app_trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/arm5/RTE/nRF_Libraries/nRF51822_xxAA/app_trace.h -------------------------------------------------------------------------------- /arm5/RTE/nRF_Libraries/nRF51822_xxAA/nrf_assert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/arm5/RTE/nRF_Libraries/nRF51822_xxAA/nrf_assert.c -------------------------------------------------------------------------------- /arm5/RTE/nRF_Libraries/nRF51822_xxAA/nrf_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/arm5/RTE/nRF_Libraries/nRF51822_xxAA/nrf_assert.h -------------------------------------------------------------------------------- /arm5/RTE/nRF_Libraries/nRF51822_xxAA/retarget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/arm5/RTE/nRF_Libraries/nRF51822_xxAA/retarget.c -------------------------------------------------------------------------------- /arm5/RTE/nRF_SoftDevice/nRF51822_xxAA/s120_nrf51822_2.0.0_licence_agreement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/arm5/RTE/nRF_SoftDevice/nRF51822_xxAA/s120_nrf51822_2.0.0_licence_agreement.txt -------------------------------------------------------------------------------- /arm5/RTE/nRF_SoftDevice/nRF51822_xxAA/softdevice_handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/arm5/RTE/nRF_SoftDevice/nRF51822_xxAA/softdevice_handler.c -------------------------------------------------------------------------------- /arm5/ossw-firmware-s120.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/arm5/ossw-firmware-s120.uvoptx -------------------------------------------------------------------------------- /arm5/ossw-firmware-s120.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/arm5/ossw-firmware-s120.uvprojx -------------------------------------------------------------------------------- /battery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/battery.c -------------------------------------------------------------------------------- /battery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/battery.h -------------------------------------------------------------------------------- /ble/ble_central.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/ble/ble_central.c -------------------------------------------------------------------------------- /ble/ble_central.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/ble/ble_central.h -------------------------------------------------------------------------------- /ble/ble_ossw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/ble/ble_ossw.c -------------------------------------------------------------------------------- /ble/ble_ossw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/ble/ble_ossw.h -------------------------------------------------------------------------------- /ble/ble_peripheral.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/ble/ble_peripheral.c -------------------------------------------------------------------------------- /ble/ble_peripheral.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/ble/ble_peripheral.h -------------------------------------------------------------------------------- /board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/board.h -------------------------------------------------------------------------------- /button_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/button_lib.c -------------------------------------------------------------------------------- /button_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/button_lib.h -------------------------------------------------------------------------------- /buttons.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/buttons.c -------------------------------------------------------------------------------- /buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/buttons.h -------------------------------------------------------------------------------- /command.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/command.c -------------------------------------------------------------------------------- /command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/command.h -------------------------------------------------------------------------------- /config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/config.c -------------------------------------------------------------------------------- /config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/config.h -------------------------------------------------------------------------------- /config/device_manager_cnfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/config/device_manager_cnfg.h -------------------------------------------------------------------------------- /config/pstorage_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/config/pstorage_platform.h -------------------------------------------------------------------------------- /ext_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/ext_flash.c -------------------------------------------------------------------------------- /ext_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/ext_flash.h -------------------------------------------------------------------------------- /ext_ram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/ext_ram.c -------------------------------------------------------------------------------- /ext_ram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/ext_ram.h -------------------------------------------------------------------------------- /fonts/big_bold.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/fonts/big_bold.h -------------------------------------------------------------------------------- /fonts/big_regular.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/fonts/big_regular.h -------------------------------------------------------------------------------- /fonts/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/fonts/font.h -------------------------------------------------------------------------------- /fonts/normal_bold.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/fonts/normal_bold.h -------------------------------------------------------------------------------- /fonts/normal_regular.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/fonts/normal_regular.h -------------------------------------------------------------------------------- /fonts/option_big.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/fonts/option_big.h -------------------------------------------------------------------------------- /fonts/option_normal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/fonts/option_normal.h -------------------------------------------------------------------------------- /fonts/small_bold.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/fonts/small_bold.h -------------------------------------------------------------------------------- /fonts/small_regular.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/fonts/small_regular.h -------------------------------------------------------------------------------- /fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/fs.c -------------------------------------------------------------------------------- /fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/fs.h -------------------------------------------------------------------------------- /graph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/graph.c -------------------------------------------------------------------------------- /graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/graph.h -------------------------------------------------------------------------------- /i18n/i18n.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/i18n/i18n.c -------------------------------------------------------------------------------- /i18n/i18n.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/i18n/i18n.h -------------------------------------------------------------------------------- /i18n/messages_en.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/i18n/messages_en.h -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/main.c -------------------------------------------------------------------------------- /mlcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/mlcd.c -------------------------------------------------------------------------------- /mlcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/mlcd.h -------------------------------------------------------------------------------- /mlcd_draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/mlcd_draw.c -------------------------------------------------------------------------------- /mlcd_draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/mlcd_draw.h -------------------------------------------------------------------------------- /notifications.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/notifications.c -------------------------------------------------------------------------------- /notifications.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/notifications.h -------------------------------------------------------------------------------- /ossw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/ossw.c -------------------------------------------------------------------------------- /ossw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/ossw.h -------------------------------------------------------------------------------- /pack.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/pack.cmd -------------------------------------------------------------------------------- /pawn/amx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/pawn/amx.c -------------------------------------------------------------------------------- /pawn/amx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/pawn/amx.h -------------------------------------------------------------------------------- /pawn/amxext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/pawn/amxext.c -------------------------------------------------------------------------------- /pawn/amxext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/pawn/amxext.h -------------------------------------------------------------------------------- /pawn/amxutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/pawn/amxutil.c -------------------------------------------------------------------------------- /pawn/amxutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/pawn/amxutil.h -------------------------------------------------------------------------------- /pawn/osdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/pawn/osdefs.h -------------------------------------------------------------------------------- /rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/rtc.c -------------------------------------------------------------------------------- /rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/rtc.h -------------------------------------------------------------------------------- /scr_controls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/scr_controls.c -------------------------------------------------------------------------------- /scr_controls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/scr_controls.h -------------------------------------------------------------------------------- /scr_mngr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/scr_mngr.c -------------------------------------------------------------------------------- /scr_mngr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/scr_mngr.h -------------------------------------------------------------------------------- /screens/dialog_option_text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/screens/dialog_option_text.c -------------------------------------------------------------------------------- /screens/dialog_option_text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/screens/dialog_option_text.h -------------------------------------------------------------------------------- /screens/dialog_select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/screens/dialog_select.c -------------------------------------------------------------------------------- /screens/dialog_select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/screens/dialog_select.h -------------------------------------------------------------------------------- /screens/scr_about.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/screens/scr_about.c -------------------------------------------------------------------------------- /screens/scr_about.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/screens/scr_about.h -------------------------------------------------------------------------------- /screens/scr_alert_notification.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/screens/scr_alert_notification.c -------------------------------------------------------------------------------- /screens/scr_alert_notification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/screens/scr_alert_notification.h -------------------------------------------------------------------------------- /screens/scr_changedate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/screens/scr_changedate.c -------------------------------------------------------------------------------- /screens/scr_changedate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/screens/scr_changedate.h -------------------------------------------------------------------------------- /screens/scr_changetime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/screens/scr_changetime.c -------------------------------------------------------------------------------- /screens/scr_changetime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/screens/scr_changetime.h -------------------------------------------------------------------------------- /screens/scr_dark_hours.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/screens/scr_dark_hours.c -------------------------------------------------------------------------------- /screens/scr_dark_hours.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/screens/scr_dark_hours.h -------------------------------------------------------------------------------- /screens/scr_notifications.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/screens/scr_notifications.c -------------------------------------------------------------------------------- /screens/scr_notifications.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/screens/scr_notifications.h -------------------------------------------------------------------------------- /screens/scr_setalarm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/screens/scr_setalarm.c -------------------------------------------------------------------------------- /screens/scr_setalarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/screens/scr_setalarm.h -------------------------------------------------------------------------------- /screens/scr_settings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/screens/scr_settings.c -------------------------------------------------------------------------------- /screens/scr_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/screens/scr_settings.h -------------------------------------------------------------------------------- /screens/scr_silent_hours.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/screens/scr_silent_hours.c -------------------------------------------------------------------------------- /screens/scr_silent_hours.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/screens/scr_silent_hours.h -------------------------------------------------------------------------------- /screens/scr_status.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/screens/scr_status.c -------------------------------------------------------------------------------- /screens/scr_status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/screens/scr_status.h -------------------------------------------------------------------------------- /screens/scr_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/screens/scr_timer.c -------------------------------------------------------------------------------- /screens/scr_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/screens/scr_timer.h -------------------------------------------------------------------------------- /screens/scr_watchface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/screens/scr_watchface.c -------------------------------------------------------------------------------- /screens/scr_watchface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/screens/scr_watchface.h -------------------------------------------------------------------------------- /screens/scr_watchface_analog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/screens/scr_watchface_analog.c -------------------------------------------------------------------------------- /screens/scr_watchface_analog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/screens/scr_watchface_analog.h -------------------------------------------------------------------------------- /screens/scr_watchset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/screens/scr_watchset.c -------------------------------------------------------------------------------- /screens/scr_watchset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/screens/scr_watchset.h -------------------------------------------------------------------------------- /screens/scr_watchset_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/screens/scr_watchset_list.c -------------------------------------------------------------------------------- /screens/scr_watchset_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/screens/scr_watchset_list.h -------------------------------------------------------------------------------- /spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/spi.c -------------------------------------------------------------------------------- /spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/spi.h -------------------------------------------------------------------------------- /spiffs/spiffs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/spiffs/spiffs.h -------------------------------------------------------------------------------- /spiffs/spiffs_check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/spiffs/spiffs_check.c -------------------------------------------------------------------------------- /spiffs/spiffs_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/spiffs/spiffs_config.h -------------------------------------------------------------------------------- /spiffs/spiffs_gc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/spiffs/spiffs_gc.c -------------------------------------------------------------------------------- /spiffs/spiffs_hydrogen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/spiffs/spiffs_hydrogen.c -------------------------------------------------------------------------------- /spiffs/spiffs_nucleus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/spiffs/spiffs_nucleus.c -------------------------------------------------------------------------------- /spiffs/spiffs_nucleus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/spiffs/spiffs_nucleus.h -------------------------------------------------------------------------------- /stopwatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/stopwatch.c -------------------------------------------------------------------------------- /stopwatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/stopwatch.h -------------------------------------------------------------------------------- /utf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/utf8.c -------------------------------------------------------------------------------- /utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/utf8.h -------------------------------------------------------------------------------- /vibration.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/vibration.c -------------------------------------------------------------------------------- /vibration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/vibration.h -------------------------------------------------------------------------------- /watchset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/watchset.c -------------------------------------------------------------------------------- /watchset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ossw/ossw-firmware-s120/HEAD/watchset.h --------------------------------------------------------------------------------