├── .gitignore ├── LICENSE ├── Makefile ├── icon.jpg ├── libs ├── lv_conf.h └── lvgl │ ├── .clang-format │ ├── .editorconfig │ ├── .github │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE │ │ ├── all-other-issues.md │ │ └── bug-report.md │ └── stale.yml │ ├── .gitignore │ ├── .gitmodules │ ├── .gitrepo │ ├── LICENCE.txt │ ├── README.md │ ├── docs │ ├── CODE_OF_CONDUCT.md │ ├── CODING_STYLE.md │ └── CONTRIBUTING.md │ ├── library.json │ ├── lv_conf_template.h │ ├── lvgl.h │ ├── lvgl.mk │ ├── porting │ ├── lv_port_disp_template.c │ ├── lv_port_disp_template.h │ ├── lv_port_fs_template.c │ ├── lv_port_fs_template.h │ ├── lv_port_indev_template.c │ └── lv_port_indev_template.h │ ├── scripts │ ├── Doxyfile │ ├── built_in_font │ │ ├── FontAwesome.ttf │ │ ├── Roboto-Regular.woff │ │ └── built_in_font_gen.py │ ├── clang-formatter.sh │ ├── cppcheck_run.sh │ └── lv_conf_checker.py │ └── src │ ├── lv_conf_checker.h │ ├── lv_core │ ├── lv_core.mk │ ├── lv_disp.c │ ├── lv_disp.h │ ├── lv_group.c │ ├── lv_group.h │ ├── lv_indev.c │ ├── lv_indev.h │ ├── lv_obj.c │ ├── lv_obj.h │ ├── lv_refr.c │ ├── lv_refr.h │ ├── lv_style.c │ └── lv_style.h │ ├── lv_draw │ ├── lv_draw.c │ ├── lv_draw.h │ ├── lv_draw.mk │ ├── lv_draw_arc.c │ ├── lv_draw_arc.h │ ├── lv_draw_basic.c │ ├── lv_draw_basic.h │ ├── lv_draw_img.c │ ├── lv_draw_img.h │ ├── lv_draw_label.c │ ├── lv_draw_label.h │ ├── lv_draw_line.c │ ├── lv_draw_line.h │ ├── lv_draw_rect.c │ ├── lv_draw_rect.h │ ├── lv_draw_triangle.c │ ├── lv_draw_triangle.h │ ├── lv_img_cache.c │ ├── lv_img_cache.h │ ├── lv_img_decoder.c │ └── lv_img_decoder.h │ ├── lv_font │ ├── lv_font.c │ ├── lv_font.h │ ├── lv_font.mk │ ├── lv_font_fmt_txt.c │ ├── lv_font_fmt_txt.h │ ├── lv_font_roboto_12.c │ ├── lv_font_roboto_16.c │ ├── lv_font_roboto_22.c │ ├── lv_font_roboto_28.c │ ├── lv_font_roboto_48.c │ ├── lv_font_unscii_8.c │ └── lv_symbol_def.h │ ├── lv_hal │ ├── lv_hal.h │ ├── lv_hal.mk │ ├── lv_hal_disp.c │ ├── lv_hal_disp.h │ ├── lv_hal_indev.c │ ├── lv_hal_indev.h │ ├── lv_hal_tick.c │ └── lv_hal_tick.h │ ├── lv_misc │ ├── lv_anim.c │ ├── lv_anim.h │ ├── lv_area.c │ ├── lv_area.h │ ├── lv_async.c │ ├── lv_async.h │ ├── lv_circ.c │ ├── lv_circ.h │ ├── lv_color.c │ ├── lv_color.h │ ├── lv_fs.c │ ├── lv_fs.h │ ├── lv_gc.c │ ├── lv_gc.h │ ├── lv_ll.c │ ├── lv_ll.h │ ├── lv_log.c │ ├── lv_log.h │ ├── lv_math.c │ ├── lv_math.h │ ├── lv_mem.c │ ├── lv_mem.h │ ├── lv_misc.mk │ ├── lv_task.c │ ├── lv_task.h │ ├── lv_templ.c │ ├── lv_templ.h │ ├── lv_txt.c │ ├── lv_txt.h │ ├── lv_types.h │ ├── lv_utils.c │ └── lv_utils.h │ ├── lv_objx │ ├── lv_arc.c │ ├── lv_arc.h │ ├── lv_bar.c │ ├── lv_bar.h │ ├── lv_btn.c │ ├── lv_btn.h │ ├── lv_btnm.c │ ├── lv_btnm.h │ ├── lv_calendar.c │ ├── lv_calendar.h │ ├── lv_canvas.c │ ├── lv_canvas.h │ ├── lv_cb.c │ ├── lv_cb.h │ ├── lv_chart.c │ ├── lv_chart.h │ ├── lv_cont.c │ ├── lv_cont.h │ ├── lv_ddlist.c │ ├── lv_ddlist.h │ ├── lv_gauge.c │ ├── lv_gauge.h │ ├── lv_img.c │ ├── lv_img.h │ ├── lv_imgbtn.c │ ├── lv_imgbtn.h │ ├── lv_kb.c │ ├── lv_kb.h │ ├── lv_label.c │ ├── lv_label.h │ ├── lv_led.c │ ├── lv_led.h │ ├── lv_line.c │ ├── lv_line.h │ ├── lv_list.c │ ├── lv_list.h │ ├── lv_lmeter.c │ ├── lv_lmeter.h │ ├── lv_mbox.c │ ├── lv_mbox.h │ ├── lv_objx.mk │ ├── lv_objx_templ.c │ ├── lv_objx_templ.h │ ├── lv_page.c │ ├── lv_page.h │ ├── lv_preload.c │ ├── lv_preload.h │ ├── lv_roller.c │ ├── lv_roller.h │ ├── lv_slider.c │ ├── lv_slider.h │ ├── lv_spinbox.c │ ├── lv_spinbox.h │ ├── lv_sw.c │ ├── lv_sw.h │ ├── lv_ta.c │ ├── lv_ta.h │ ├── lv_table.c │ ├── lv_table.h │ ├── lv_tabview.c │ ├── lv_tabview.h │ ├── lv_tileview.c │ ├── lv_tileview.h │ ├── lv_win.c │ └── lv_win.h │ ├── lv_themes │ ├── lv_theme.c │ ├── lv_theme.h │ ├── lv_theme_alien.c │ ├── lv_theme_alien.h │ ├── lv_theme_default.c │ ├── lv_theme_default.h │ ├── lv_theme_material.c │ ├── lv_theme_material.h │ ├── lv_theme_mono.c │ ├── lv_theme_mono.h │ ├── lv_theme_nemo.c │ ├── lv_theme_nemo.h │ ├── lv_theme_night.c │ ├── lv_theme_night.h │ ├── lv_theme_templ.c │ ├── lv_theme_templ.h │ ├── lv_theme_zen.c │ ├── lv_theme_zen.h │ └── lv_themes.mk │ └── lv_version.h ├── source ├── apps.c ├── apps.h ├── decoder.c ├── decoder.h ├── drivers.c ├── drivers.h ├── gui.c ├── gui.h ├── limitations.c ├── limitations.h ├── log.c ├── log.h ├── main.c ├── main.h ├── music.c ├── music.h ├── remote.c ├── remote.h ├── remote_net.c ├── remote_net.h ├── settings.c ├── settings.h ├── status.c ├── status.h ├── text.c ├── text.h ├── theme.c ├── theme.h ├── util.c └── util.h ├── theme ├── apps_list.png ├── apps_list_hover.png ├── apps_next.png ├── apps_next_hover.png ├── apps_previous.png ├── apps_previous_hover.png ├── background.png ├── button_tiny.png ├── button_tiny_focus.png ├── cursor.png ├── dialog_background.png ├── icon.jpg ├── info.cfg ├── intro.mp3 ├── logo.png ├── loop.mp3 ├── network_active.png ├── network_inactive.png ├── remote_progress.png ├── star_big.png ├── star_small.png └── styles.cfg └── tools ├── convert_theme.py ├── gen_theme.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/Makefile -------------------------------------------------------------------------------- /icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/icon.jpg -------------------------------------------------------------------------------- /libs/lv_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lv_conf.h -------------------------------------------------------------------------------- /libs/lvgl/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/.clang-format -------------------------------------------------------------------------------- /libs/lvgl/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/.editorconfig -------------------------------------------------------------------------------- /libs/lvgl/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: ["https://littlevgl.com/donate"] 2 | -------------------------------------------------------------------------------- /libs/lvgl/.github/ISSUE_TEMPLATE/all-other-issues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/.github/ISSUE_TEMPLATE/all-other-issues.md -------------------------------------------------------------------------------- /libs/lvgl/.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /libs/lvgl/.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/.github/stale.yml -------------------------------------------------------------------------------- /libs/lvgl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/.gitignore -------------------------------------------------------------------------------- /libs/lvgl/.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/lvgl/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/.gitrepo -------------------------------------------------------------------------------- /libs/lvgl/LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/LICENCE.txt -------------------------------------------------------------------------------- /libs/lvgl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/README.md -------------------------------------------------------------------------------- /libs/lvgl/docs/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/docs/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /libs/lvgl/docs/CODING_STYLE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/docs/CODING_STYLE.md -------------------------------------------------------------------------------- /libs/lvgl/docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /libs/lvgl/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/library.json -------------------------------------------------------------------------------- /libs/lvgl/lv_conf_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/lv_conf_template.h -------------------------------------------------------------------------------- /libs/lvgl/lvgl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/lvgl.h -------------------------------------------------------------------------------- /libs/lvgl/lvgl.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/lvgl.mk -------------------------------------------------------------------------------- /libs/lvgl/porting/lv_port_disp_template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/porting/lv_port_disp_template.c -------------------------------------------------------------------------------- /libs/lvgl/porting/lv_port_disp_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/porting/lv_port_disp_template.h -------------------------------------------------------------------------------- /libs/lvgl/porting/lv_port_fs_template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/porting/lv_port_fs_template.c -------------------------------------------------------------------------------- /libs/lvgl/porting/lv_port_fs_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/porting/lv_port_fs_template.h -------------------------------------------------------------------------------- /libs/lvgl/porting/lv_port_indev_template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/porting/lv_port_indev_template.c -------------------------------------------------------------------------------- /libs/lvgl/porting/lv_port_indev_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/porting/lv_port_indev_template.h -------------------------------------------------------------------------------- /libs/lvgl/scripts/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/scripts/Doxyfile -------------------------------------------------------------------------------- /libs/lvgl/scripts/built_in_font/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/scripts/built_in_font/FontAwesome.ttf -------------------------------------------------------------------------------- /libs/lvgl/scripts/built_in_font/Roboto-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/scripts/built_in_font/Roboto-Regular.woff -------------------------------------------------------------------------------- /libs/lvgl/scripts/built_in_font/built_in_font_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/scripts/built_in_font/built_in_font_gen.py -------------------------------------------------------------------------------- /libs/lvgl/scripts/clang-formatter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/scripts/clang-formatter.sh -------------------------------------------------------------------------------- /libs/lvgl/scripts/cppcheck_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/scripts/cppcheck_run.sh -------------------------------------------------------------------------------- /libs/lvgl/scripts/lv_conf_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/scripts/lv_conf_checker.py -------------------------------------------------------------------------------- /libs/lvgl/src/lv_conf_checker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_conf_checker.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_core/lv_core.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_core/lv_core.mk -------------------------------------------------------------------------------- /libs/lvgl/src/lv_core/lv_disp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_core/lv_disp.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_core/lv_disp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_core/lv_disp.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_core/lv_group.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_core/lv_group.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_core/lv_group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_core/lv_group.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_core/lv_indev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_core/lv_indev.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_core/lv_indev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_core/lv_indev.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_core/lv_obj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_core/lv_obj.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_core/lv_obj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_core/lv_obj.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_core/lv_refr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_core/lv_refr.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_core/lv_refr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_core/lv_refr.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_core/lv_style.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_core/lv_style.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_core/lv_style.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_core/lv_style.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_draw/lv_draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_draw/lv_draw.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_draw/lv_draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_draw/lv_draw.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_draw/lv_draw.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_draw/lv_draw.mk -------------------------------------------------------------------------------- /libs/lvgl/src/lv_draw/lv_draw_arc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_draw/lv_draw_arc.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_draw/lv_draw_arc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_draw/lv_draw_arc.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_draw/lv_draw_basic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_draw/lv_draw_basic.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_draw/lv_draw_basic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_draw/lv_draw_basic.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_draw/lv_draw_img.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_draw/lv_draw_img.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_draw/lv_draw_img.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_draw/lv_draw_img.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_draw/lv_draw_label.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_draw/lv_draw_label.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_draw/lv_draw_label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_draw/lv_draw_label.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_draw/lv_draw_line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_draw/lv_draw_line.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_draw/lv_draw_line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_draw/lv_draw_line.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_draw/lv_draw_rect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_draw/lv_draw_rect.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_draw/lv_draw_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_draw/lv_draw_rect.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_draw/lv_draw_triangle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_draw/lv_draw_triangle.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_draw/lv_draw_triangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_draw/lv_draw_triangle.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_draw/lv_img_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_draw/lv_img_cache.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_draw/lv_img_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_draw/lv_img_cache.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_draw/lv_img_decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_draw/lv_img_decoder.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_draw/lv_img_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_draw/lv_img_decoder.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_font/lv_font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_font/lv_font.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_font/lv_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_font/lv_font.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_font/lv_font.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_font/lv_font.mk -------------------------------------------------------------------------------- /libs/lvgl/src/lv_font/lv_font_fmt_txt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_font/lv_font_fmt_txt.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_font/lv_font_fmt_txt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_font/lv_font_fmt_txt.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_font/lv_font_roboto_12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_font/lv_font_roboto_12.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_font/lv_font_roboto_16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_font/lv_font_roboto_16.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_font/lv_font_roboto_22.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_font/lv_font_roboto_22.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_font/lv_font_roboto_28.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_font/lv_font_roboto_28.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_font/lv_font_roboto_48.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_font/lv_font_roboto_48.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_font/lv_font_unscii_8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_font/lv_font_unscii_8.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_font/lv_symbol_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_font/lv_symbol_def.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_hal/lv_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_hal/lv_hal.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_hal/lv_hal.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_hal/lv_hal.mk -------------------------------------------------------------------------------- /libs/lvgl/src/lv_hal/lv_hal_disp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_hal/lv_hal_disp.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_hal/lv_hal_disp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_hal/lv_hal_disp.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_hal/lv_hal_indev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_hal/lv_hal_indev.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_hal/lv_hal_indev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_hal/lv_hal_indev.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_hal/lv_hal_tick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_hal/lv_hal_tick.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_hal/lv_hal_tick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_hal/lv_hal_tick.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_misc/lv_anim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_misc/lv_anim.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_misc/lv_anim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_misc/lv_anim.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_misc/lv_area.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_misc/lv_area.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_misc/lv_area.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_misc/lv_area.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_misc/lv_async.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_misc/lv_async.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_misc/lv_async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_misc/lv_async.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_misc/lv_circ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_misc/lv_circ.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_misc/lv_circ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_misc/lv_circ.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_misc/lv_color.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_misc/lv_color.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_misc/lv_color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_misc/lv_color.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_misc/lv_fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_misc/lv_fs.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_misc/lv_fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_misc/lv_fs.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_misc/lv_gc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_misc/lv_gc.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_misc/lv_gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_misc/lv_gc.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_misc/lv_ll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_misc/lv_ll.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_misc/lv_ll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_misc/lv_ll.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_misc/lv_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_misc/lv_log.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_misc/lv_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_misc/lv_log.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_misc/lv_math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_misc/lv_math.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_misc/lv_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_misc/lv_math.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_misc/lv_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_misc/lv_mem.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_misc/lv_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_misc/lv_mem.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_misc/lv_misc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_misc/lv_misc.mk -------------------------------------------------------------------------------- /libs/lvgl/src/lv_misc/lv_task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_misc/lv_task.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_misc/lv_task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_misc/lv_task.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_misc/lv_templ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_misc/lv_templ.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_misc/lv_templ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_misc/lv_templ.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_misc/lv_txt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_misc/lv_txt.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_misc/lv_txt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_misc/lv_txt.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_misc/lv_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_misc/lv_types.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_misc/lv_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_misc/lv_utils.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_misc/lv_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_misc/lv_utils.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_arc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_objx/lv_arc.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_arc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_objx/lv_arc.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_bar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_objx/lv_bar.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_bar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_objx/lv_bar.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_btn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_objx/lv_btn.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_btn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_objx/lv_btn.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_btnm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_objx/lv_btnm.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_btnm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_objx/lv_btnm.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_calendar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_objx/lv_calendar.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_calendar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_objx/lv_calendar.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_canvas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_objx/lv_canvas.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_canvas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_objx/lv_canvas.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_cb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_objx/lv_cb.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_cb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_objx/lv_cb.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_chart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_objx/lv_chart.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_chart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_objx/lv_chart.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_cont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_objx/lv_cont.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_cont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_objx/lv_cont.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_ddlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_objx/lv_ddlist.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_ddlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_objx/lv_ddlist.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_gauge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_objx/lv_gauge.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_gauge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_objx/lv_gauge.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_img.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_objx/lv_img.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_img.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_objx/lv_img.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_imgbtn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_objx/lv_imgbtn.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_imgbtn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_objx/lv_imgbtn.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_kb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_objx/lv_kb.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_kb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_objx/lv_kb.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_label.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_objx/lv_label.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_objx/lv_label.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_objx/lv_led.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_objx/lv_led.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_objx/lv_line.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_objx/lv_line.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_objx/lv_list.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_objx/lv_list.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_lmeter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_objx/lv_lmeter.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_lmeter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_objx/lv_lmeter.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_mbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_objx/lv_mbox.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_mbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_objx/lv_mbox.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_objx.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_objx/lv_objx.mk -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_objx_templ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_objx/lv_objx_templ.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_objx_templ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_objx/lv_objx_templ.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_page.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_objx/lv_page.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_page.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_objx/lv_page.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_preload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_objx/lv_preload.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_preload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_objx/lv_preload.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_roller.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_objx/lv_roller.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_roller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_objx/lv_roller.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_slider.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_objx/lv_slider.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_slider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_objx/lv_slider.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_spinbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_objx/lv_spinbox.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_spinbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_objx/lv_spinbox.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_sw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_objx/lv_sw.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_sw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_objx/lv_sw.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_ta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_objx/lv_ta.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_ta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_objx/lv_ta.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_objx/lv_table.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_objx/lv_table.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_tabview.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_objx/lv_tabview.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_tabview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_objx/lv_tabview.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_tileview.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_objx/lv_tileview.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_tileview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_objx/lv_tileview.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_objx/lv_win.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_objx/lv_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_objx/lv_win.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_themes/lv_theme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_themes/lv_theme.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_themes/lv_theme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_themes/lv_theme.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_themes/lv_theme_alien.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_themes/lv_theme_alien.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_themes/lv_theme_alien.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_themes/lv_theme_alien.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_themes/lv_theme_default.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_themes/lv_theme_default.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_themes/lv_theme_default.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_themes/lv_theme_default.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_themes/lv_theme_material.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_themes/lv_theme_material.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_themes/lv_theme_material.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_themes/lv_theme_material.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_themes/lv_theme_mono.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_themes/lv_theme_mono.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_themes/lv_theme_mono.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_themes/lv_theme_mono.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_themes/lv_theme_nemo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_themes/lv_theme_nemo.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_themes/lv_theme_nemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_themes/lv_theme_nemo.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_themes/lv_theme_night.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_themes/lv_theme_night.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_themes/lv_theme_night.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_themes/lv_theme_night.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_themes/lv_theme_templ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_themes/lv_theme_templ.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_themes/lv_theme_templ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_themes/lv_theme_templ.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_themes/lv_theme_zen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_themes/lv_theme_zen.c -------------------------------------------------------------------------------- /libs/lvgl/src/lv_themes/lv_theme_zen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_themes/lv_theme_zen.h -------------------------------------------------------------------------------- /libs/lvgl/src/lv_themes/lv_themes.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_themes/lv_themes.mk -------------------------------------------------------------------------------- /libs/lvgl/src/lv_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/libs/lvgl/src/lv_version.h -------------------------------------------------------------------------------- /source/apps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/source/apps.c -------------------------------------------------------------------------------- /source/apps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/source/apps.h -------------------------------------------------------------------------------- /source/decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/source/decoder.c -------------------------------------------------------------------------------- /source/decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/source/decoder.h -------------------------------------------------------------------------------- /source/drivers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/source/drivers.c -------------------------------------------------------------------------------- /source/drivers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/source/drivers.h -------------------------------------------------------------------------------- /source/gui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/source/gui.c -------------------------------------------------------------------------------- /source/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/source/gui.h -------------------------------------------------------------------------------- /source/limitations.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/source/limitations.c -------------------------------------------------------------------------------- /source/limitations.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include 4 | 5 | bool has_limitations(); -------------------------------------------------------------------------------- /source/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/source/log.c -------------------------------------------------------------------------------- /source/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/source/log.h -------------------------------------------------------------------------------- /source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/source/main.c -------------------------------------------------------------------------------- /source/main.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | void stop_main_loop(); -------------------------------------------------------------------------------- /source/music.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/source/music.c -------------------------------------------------------------------------------- /source/music.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/source/music.h -------------------------------------------------------------------------------- /source/remote.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/source/remote.c -------------------------------------------------------------------------------- /source/remote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/source/remote.h -------------------------------------------------------------------------------- /source/remote_net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/source/remote_net.c -------------------------------------------------------------------------------- /source/remote_net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/source/remote_net.h -------------------------------------------------------------------------------- /source/settings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/source/settings.c -------------------------------------------------------------------------------- /source/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/source/settings.h -------------------------------------------------------------------------------- /source/status.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/source/status.c -------------------------------------------------------------------------------- /source/status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/source/status.h -------------------------------------------------------------------------------- /source/text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/source/text.c -------------------------------------------------------------------------------- /source/text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/source/text.h -------------------------------------------------------------------------------- /source/theme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/source/theme.c -------------------------------------------------------------------------------- /source/theme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/source/theme.h -------------------------------------------------------------------------------- /source/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/source/util.c -------------------------------------------------------------------------------- /source/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/source/util.h -------------------------------------------------------------------------------- /theme/apps_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/theme/apps_list.png -------------------------------------------------------------------------------- /theme/apps_list_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/theme/apps_list_hover.png -------------------------------------------------------------------------------- /theme/apps_next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/theme/apps_next.png -------------------------------------------------------------------------------- /theme/apps_next_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/theme/apps_next_hover.png -------------------------------------------------------------------------------- /theme/apps_previous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/theme/apps_previous.png -------------------------------------------------------------------------------- /theme/apps_previous_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/theme/apps_previous_hover.png -------------------------------------------------------------------------------- /theme/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/theme/background.png -------------------------------------------------------------------------------- /theme/button_tiny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/theme/button_tiny.png -------------------------------------------------------------------------------- /theme/button_tiny_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/theme/button_tiny_focus.png -------------------------------------------------------------------------------- /theme/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/theme/cursor.png -------------------------------------------------------------------------------- /theme/dialog_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/theme/dialog_background.png -------------------------------------------------------------------------------- /theme/icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/theme/icon.jpg -------------------------------------------------------------------------------- /theme/info.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/theme/info.cfg -------------------------------------------------------------------------------- /theme/intro.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/theme/intro.mp3 -------------------------------------------------------------------------------- /theme/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/theme/logo.png -------------------------------------------------------------------------------- /theme/loop.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/theme/loop.mp3 -------------------------------------------------------------------------------- /theme/network_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/theme/network_active.png -------------------------------------------------------------------------------- /theme/network_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/theme/network_inactive.png -------------------------------------------------------------------------------- /theme/remote_progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/theme/remote_progress.png -------------------------------------------------------------------------------- /theme/star_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/theme/star_big.png -------------------------------------------------------------------------------- /theme/star_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/theme/star_small.png -------------------------------------------------------------------------------- /theme/styles.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/theme/styles.cfg -------------------------------------------------------------------------------- /tools/convert_theme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/tools/convert_theme.py -------------------------------------------------------------------------------- /tools/gen_theme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedkeenan/nx-hbc/HEAD/tools/gen_theme.py -------------------------------------------------------------------------------- /tools/requirements.txt: -------------------------------------------------------------------------------- 1 | Pillow 2 | libconf --------------------------------------------------------------------------------