├── .gitignore ├── CHANGELOG.md ├── CMakeLists.txt ├── LICENSE ├── README.md ├── components ├── battery │ ├── CMakeLists.txt │ ├── battery.c │ └── battery.h ├── button │ ├── CMakeLists.txt │ ├── button.c │ └── button.h ├── common │ ├── CMakeLists.txt │ ├── color.h │ ├── line.h │ ├── osd_shared.c │ └── osd_shared.h ├── crc │ ├── CMakeLists.txt │ ├── crc8_sae_j1850.c │ └── crc8_sae_j1850.h ├── dlist │ ├── CMakeLists.txt │ └── dlist.h ├── fonts │ ├── CMakeLists.txt │ ├── chibit_mr.c │ ├── fingfai.c │ └── jf_dot_k14.c ├── images │ ├── CMakeLists.txt │ ├── icon_bat_large_g.c │ ├── icon_bat_large_g.png │ ├── icon_bat_large_r.c │ ├── icon_bat_large_r.png │ ├── icon_bat_large_y.c │ ├── icon_bat_large_y.png │ ├── icon_charging.c │ ├── icon_charging.png │ ├── img_a_right.c │ ├── img_a_right.png │ ├── img_arrow_down.c │ ├── img_arrow_down.png │ ├── img_arrow_up.c │ ├── img_arrow_up.png │ ├── img_b_left.c │ ├── img_b_left.png │ ├── img_brightness.c │ ├── img_brightness.png │ ├── img_chromatic.c │ ├── img_chromatic.png │ ├── img_chromatic_eyebrow.c │ ├── img_chromatic_eyebrow.png │ ├── img_dot_grey.c │ ├── img_dot_grey.png │ ├── img_dot_white.c │ ├── img_dot_white.png │ ├── img_option_dis.c │ ├── img_option_dis.png │ ├── img_option_en.c │ ├── img_option_en.png │ ├── img_toggle_off.c │ ├── img_toggle_off.png │ ├── img_toggle_on.c │ ├── img_toggle_on.png │ ├── menu_controls.c │ ├── menu_controls.png │ ├── menu_display.c │ ├── menu_display.png │ ├── menu_palette.c │ ├── menu_palette.png │ ├── menu_status.c │ ├── menu_status.png │ ├── menu_system.c │ └── menu_system.png ├── menu_mgr │ ├── CMakeLists.txt │ ├── menu_mgr.c │ └── menu_mgr.h ├── mutex │ ├── CMakeLists.txt │ ├── mutex.c │ └── mutex.h ├── osd │ ├── CMakeLists.txt │ ├── controls │ │ ├── dpad_ctl.c │ │ ├── dpad_ctl.h │ │ ├── hotkeys.c │ │ └── hotkeys.h │ ├── display │ │ ├── color_correct_lcd.c │ │ ├── color_correct_lcd.h │ │ ├── color_correct_usb.c │ │ ├── color_correct_usb.h │ │ ├── frameblend.c │ │ ├── frameblend.h │ │ ├── low_batt_icon_ctl.c │ │ ├── low_batt_icon_ctl.h │ │ ├── screen_transit_ctl.c │ │ └── screen_transit_ctl.h │ ├── osd.c │ ├── osd.h │ ├── osd_default.c │ ├── osd_default.h │ ├── palette │ │ ├── palette.c │ │ ├── palette.h │ │ ├── style.c │ │ └── style.h │ ├── status │ │ ├── brightness.c │ │ ├── brightness.h │ │ ├── fw.c │ │ └── fw.h │ └── system │ │ ├── player_num.c │ │ ├── player_num.h │ │ ├── serial_num.c │ │ ├── serial_num.h │ │ ├── silent.c │ │ └── silent.h ├── settings │ ├── CMakeLists.txt │ ├── settings.c │ └── settings.h └── tab │ ├── CMakeLists.txt │ ├── tab_dots │ ├── tab_dots.c │ └── tab_dots.h │ ├── tab_list │ ├── tab_list.c │ └── tab_list.h │ ├── tab_shared.c │ ├── tab_shared.h │ └── tab_table │ ├── tab_table.c │ └── tab_table.h ├── dependencies.lock ├── main ├── CMakeLists.txt ├── Kconfig.projbuild ├── board.h ├── fpga_common.c ├── fpga_common.h ├── fpga_rx.c ├── fpga_rx.h ├── fpga_tx.c ├── fpga_tx.h ├── gfx.c ├── gfx.h ├── idf_component.yml ├── main.c ├── pwrmgr.c └── pwrmgr.h └── sdkconfig.defaults /.gitignore: -------------------------------------------------------------------------------- 1 | managed_components/ 2 | build/ 3 | sdkconfig 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/README.md -------------------------------------------------------------------------------- /components/battery/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/battery/CMakeLists.txt -------------------------------------------------------------------------------- /components/battery/battery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/battery/battery.c -------------------------------------------------------------------------------- /components/battery/battery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/battery/battery.h -------------------------------------------------------------------------------- /components/button/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/button/CMakeLists.txt -------------------------------------------------------------------------------- /components/button/button.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/button/button.c -------------------------------------------------------------------------------- /components/button/button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/button/button.h -------------------------------------------------------------------------------- /components/common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/common/CMakeLists.txt -------------------------------------------------------------------------------- /components/common/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/common/color.h -------------------------------------------------------------------------------- /components/common/line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/common/line.h -------------------------------------------------------------------------------- /components/common/osd_shared.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/common/osd_shared.c -------------------------------------------------------------------------------- /components/common/osd_shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/common/osd_shared.h -------------------------------------------------------------------------------- /components/crc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/crc/CMakeLists.txt -------------------------------------------------------------------------------- /components/crc/crc8_sae_j1850.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/crc/crc8_sae_j1850.c -------------------------------------------------------------------------------- /components/crc/crc8_sae_j1850.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/crc/crc8_sae_j1850.h -------------------------------------------------------------------------------- /components/dlist/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/dlist/CMakeLists.txt -------------------------------------------------------------------------------- /components/dlist/dlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/dlist/dlist.h -------------------------------------------------------------------------------- /components/fonts/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/fonts/CMakeLists.txt -------------------------------------------------------------------------------- /components/fonts/chibit_mr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/fonts/chibit_mr.c -------------------------------------------------------------------------------- /components/fonts/fingfai.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/fonts/fingfai.c -------------------------------------------------------------------------------- /components/fonts/jf_dot_k14.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/fonts/jf_dot_k14.c -------------------------------------------------------------------------------- /components/images/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/images/CMakeLists.txt -------------------------------------------------------------------------------- /components/images/icon_bat_large_g.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/images/icon_bat_large_g.c -------------------------------------------------------------------------------- /components/images/icon_bat_large_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/images/icon_bat_large_g.png -------------------------------------------------------------------------------- /components/images/icon_bat_large_r.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/images/icon_bat_large_r.c -------------------------------------------------------------------------------- /components/images/icon_bat_large_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/images/icon_bat_large_r.png -------------------------------------------------------------------------------- /components/images/icon_bat_large_y.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/images/icon_bat_large_y.c -------------------------------------------------------------------------------- /components/images/icon_bat_large_y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/images/icon_bat_large_y.png -------------------------------------------------------------------------------- /components/images/icon_charging.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/images/icon_charging.c -------------------------------------------------------------------------------- /components/images/icon_charging.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/images/icon_charging.png -------------------------------------------------------------------------------- /components/images/img_a_right.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/images/img_a_right.c -------------------------------------------------------------------------------- /components/images/img_a_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/images/img_a_right.png -------------------------------------------------------------------------------- /components/images/img_arrow_down.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/images/img_arrow_down.c -------------------------------------------------------------------------------- /components/images/img_arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/images/img_arrow_down.png -------------------------------------------------------------------------------- /components/images/img_arrow_up.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/images/img_arrow_up.c -------------------------------------------------------------------------------- /components/images/img_arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/images/img_arrow_up.png -------------------------------------------------------------------------------- /components/images/img_b_left.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/images/img_b_left.c -------------------------------------------------------------------------------- /components/images/img_b_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/images/img_b_left.png -------------------------------------------------------------------------------- /components/images/img_brightness.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/images/img_brightness.c -------------------------------------------------------------------------------- /components/images/img_brightness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/images/img_brightness.png -------------------------------------------------------------------------------- /components/images/img_chromatic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/images/img_chromatic.c -------------------------------------------------------------------------------- /components/images/img_chromatic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/images/img_chromatic.png -------------------------------------------------------------------------------- /components/images/img_chromatic_eyebrow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/images/img_chromatic_eyebrow.c -------------------------------------------------------------------------------- /components/images/img_chromatic_eyebrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/images/img_chromatic_eyebrow.png -------------------------------------------------------------------------------- /components/images/img_dot_grey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/images/img_dot_grey.c -------------------------------------------------------------------------------- /components/images/img_dot_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/images/img_dot_grey.png -------------------------------------------------------------------------------- /components/images/img_dot_white.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/images/img_dot_white.c -------------------------------------------------------------------------------- /components/images/img_dot_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/images/img_dot_white.png -------------------------------------------------------------------------------- /components/images/img_option_dis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/images/img_option_dis.c -------------------------------------------------------------------------------- /components/images/img_option_dis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/images/img_option_dis.png -------------------------------------------------------------------------------- /components/images/img_option_en.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/images/img_option_en.c -------------------------------------------------------------------------------- /components/images/img_option_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/images/img_option_en.png -------------------------------------------------------------------------------- /components/images/img_toggle_off.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/images/img_toggle_off.c -------------------------------------------------------------------------------- /components/images/img_toggle_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/images/img_toggle_off.png -------------------------------------------------------------------------------- /components/images/img_toggle_on.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/images/img_toggle_on.c -------------------------------------------------------------------------------- /components/images/img_toggle_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/images/img_toggle_on.png -------------------------------------------------------------------------------- /components/images/menu_controls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/images/menu_controls.c -------------------------------------------------------------------------------- /components/images/menu_controls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/images/menu_controls.png -------------------------------------------------------------------------------- /components/images/menu_display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/images/menu_display.c -------------------------------------------------------------------------------- /components/images/menu_display.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/images/menu_display.png -------------------------------------------------------------------------------- /components/images/menu_palette.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/images/menu_palette.c -------------------------------------------------------------------------------- /components/images/menu_palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/images/menu_palette.png -------------------------------------------------------------------------------- /components/images/menu_status.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/images/menu_status.c -------------------------------------------------------------------------------- /components/images/menu_status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/images/menu_status.png -------------------------------------------------------------------------------- /components/images/menu_system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/images/menu_system.c -------------------------------------------------------------------------------- /components/images/menu_system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/images/menu_system.png -------------------------------------------------------------------------------- /components/menu_mgr/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/menu_mgr/CMakeLists.txt -------------------------------------------------------------------------------- /components/menu_mgr/menu_mgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/menu_mgr/menu_mgr.c -------------------------------------------------------------------------------- /components/menu_mgr/menu_mgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/menu_mgr/menu_mgr.h -------------------------------------------------------------------------------- /components/mutex/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/mutex/CMakeLists.txt -------------------------------------------------------------------------------- /components/mutex/mutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/mutex/mutex.c -------------------------------------------------------------------------------- /components/mutex/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/mutex/mutex.h -------------------------------------------------------------------------------- /components/osd/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/osd/CMakeLists.txt -------------------------------------------------------------------------------- /components/osd/controls/dpad_ctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/osd/controls/dpad_ctl.c -------------------------------------------------------------------------------- /components/osd/controls/dpad_ctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/osd/controls/dpad_ctl.h -------------------------------------------------------------------------------- /components/osd/controls/hotkeys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/osd/controls/hotkeys.c -------------------------------------------------------------------------------- /components/osd/controls/hotkeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/osd/controls/hotkeys.h -------------------------------------------------------------------------------- /components/osd/display/color_correct_lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/osd/display/color_correct_lcd.c -------------------------------------------------------------------------------- /components/osd/display/color_correct_lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/osd/display/color_correct_lcd.h -------------------------------------------------------------------------------- /components/osd/display/color_correct_usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/osd/display/color_correct_usb.c -------------------------------------------------------------------------------- /components/osd/display/color_correct_usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/osd/display/color_correct_usb.h -------------------------------------------------------------------------------- /components/osd/display/frameblend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/osd/display/frameblend.c -------------------------------------------------------------------------------- /components/osd/display/frameblend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/osd/display/frameblend.h -------------------------------------------------------------------------------- /components/osd/display/low_batt_icon_ctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/osd/display/low_batt_icon_ctl.c -------------------------------------------------------------------------------- /components/osd/display/low_batt_icon_ctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/osd/display/low_batt_icon_ctl.h -------------------------------------------------------------------------------- /components/osd/display/screen_transit_ctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/osd/display/screen_transit_ctl.c -------------------------------------------------------------------------------- /components/osd/display/screen_transit_ctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/osd/display/screen_transit_ctl.h -------------------------------------------------------------------------------- /components/osd/osd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/osd/osd.c -------------------------------------------------------------------------------- /components/osd/osd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/osd/osd.h -------------------------------------------------------------------------------- /components/osd/osd_default.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/osd/osd_default.c -------------------------------------------------------------------------------- /components/osd/osd_default.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "lvgl.h" 4 | void OSD_Default_Init(lv_obj_t *const pScreen); 5 | -------------------------------------------------------------------------------- /components/osd/palette/palette.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/osd/palette/palette.c -------------------------------------------------------------------------------- /components/osd/palette/palette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/osd/palette/palette.h -------------------------------------------------------------------------------- /components/osd/palette/style.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/osd/palette/style.c -------------------------------------------------------------------------------- /components/osd/palette/style.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/osd/palette/style.h -------------------------------------------------------------------------------- /components/osd/status/brightness.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/osd/status/brightness.c -------------------------------------------------------------------------------- /components/osd/status/brightness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/osd/status/brightness.h -------------------------------------------------------------------------------- /components/osd/status/fw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/osd/status/fw.c -------------------------------------------------------------------------------- /components/osd/status/fw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/osd/status/fw.h -------------------------------------------------------------------------------- /components/osd/system/player_num.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/osd/system/player_num.c -------------------------------------------------------------------------------- /components/osd/system/player_num.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/osd/system/player_num.h -------------------------------------------------------------------------------- /components/osd/system/serial_num.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/osd/system/serial_num.c -------------------------------------------------------------------------------- /components/osd/system/serial_num.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/osd/system/serial_num.h -------------------------------------------------------------------------------- /components/osd/system/silent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/osd/system/silent.c -------------------------------------------------------------------------------- /components/osd/system/silent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/osd/system/silent.h -------------------------------------------------------------------------------- /components/settings/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/settings/CMakeLists.txt -------------------------------------------------------------------------------- /components/settings/settings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/settings/settings.c -------------------------------------------------------------------------------- /components/settings/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/settings/settings.h -------------------------------------------------------------------------------- /components/tab/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/tab/CMakeLists.txt -------------------------------------------------------------------------------- /components/tab/tab_dots/tab_dots.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/tab/tab_dots/tab_dots.c -------------------------------------------------------------------------------- /components/tab/tab_dots/tab_dots.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/tab/tab_dots/tab_dots.h -------------------------------------------------------------------------------- /components/tab/tab_list/tab_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/tab/tab_list/tab_list.c -------------------------------------------------------------------------------- /components/tab/tab_list/tab_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/tab/tab_list/tab_list.h -------------------------------------------------------------------------------- /components/tab/tab_shared.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/tab/tab_shared.c -------------------------------------------------------------------------------- /components/tab/tab_shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/tab/tab_shared.h -------------------------------------------------------------------------------- /components/tab/tab_table/tab_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/components/tab/tab_table/tab_table.c -------------------------------------------------------------------------------- /components/tab/tab_table/tab_table.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "osd_shared.h" 4 | 5 | OSD_Result_t TabTable_Draw(void* arg); 6 | 7 | -------------------------------------------------------------------------------- /dependencies.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/dependencies.lock -------------------------------------------------------------------------------- /main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/main/CMakeLists.txt -------------------------------------------------------------------------------- /main/Kconfig.projbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/main/Kconfig.projbuild -------------------------------------------------------------------------------- /main/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/main/board.h -------------------------------------------------------------------------------- /main/fpga_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/main/fpga_common.c -------------------------------------------------------------------------------- /main/fpga_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/main/fpga_common.h -------------------------------------------------------------------------------- /main/fpga_rx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/main/fpga_rx.c -------------------------------------------------------------------------------- /main/fpga_rx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/main/fpga_rx.h -------------------------------------------------------------------------------- /main/fpga_tx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/main/fpga_tx.c -------------------------------------------------------------------------------- /main/fpga_tx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/main/fpga_tx.h -------------------------------------------------------------------------------- /main/gfx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/main/gfx.c -------------------------------------------------------------------------------- /main/gfx.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "lvgl.h" 4 | 5 | void Gfx_Start(lv_obj_t *const pScreen); 6 | -------------------------------------------------------------------------------- /main/idf_component.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/main/idf_component.yml -------------------------------------------------------------------------------- /main/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/main/main.c -------------------------------------------------------------------------------- /main/pwrmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/main/pwrmgr.c -------------------------------------------------------------------------------- /main/pwrmgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/main/pwrmgr.h -------------------------------------------------------------------------------- /sdkconfig.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModRetro/chromatic_mcu/HEAD/sdkconfig.defaults --------------------------------------------------------------------------------