├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── README_BOOTLOGO.md ├── Versions.inc ├── bdk ├── bdk.h ├── display │ ├── di.c │ ├── di.h │ ├── di.inl │ ├── vic.c │ └── vic.h ├── exception_handlers.S ├── fatfs_cfg.h ├── fatfs_conf.h ├── gfx_utils.h ├── ianos │ ├── elfload │ │ ├── elf.h │ │ ├── elfarch.h │ │ ├── elfload.c │ │ ├── elfload.h │ │ ├── elfreloc_aarch64.c │ │ └── elfreloc_arm.c │ ├── ianos.c │ └── ianos.h ├── input │ ├── als.c │ ├── als.h │ ├── joycon.c │ ├── joycon.h │ ├── touch.c │ └── touch.h ├── libs │ ├── compr │ │ ├── blz.c │ │ ├── blz.h │ │ ├── lz.c │ │ ├── lz.h │ │ ├── lz4.c │ │ └── lz4.h │ ├── fatfs │ │ ├── diskio.h │ │ ├── ff.c │ │ ├── ff.h │ │ ├── ffsystem.c │ │ └── ffunicode.c │ ├── lv_conf.h │ └── lvgl │ │ ├── docs │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── astyle_c │ │ └── astyle_h │ │ ├── licence.txt │ │ ├── lv_core │ │ ├── lv_core.mk │ │ ├── lv_group.c │ │ ├── lv_group.h │ │ ├── lv_indev.c │ │ ├── lv_indev.h │ │ ├── lv_lang.c │ │ ├── lv_lang.h │ │ ├── lv_obj.c │ │ ├── lv_obj.h │ │ ├── lv_refr.c │ │ ├── lv_refr.h │ │ ├── lv_style.c │ │ ├── lv_style.h │ │ ├── lv_vdb.c │ │ └── lv_vdb.h │ │ ├── lv_draw │ │ ├── lv_draw.c │ │ ├── lv_draw.h │ │ ├── lv_draw.mk │ │ ├── lv_draw_arc.c │ │ ├── lv_draw_arc.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_rbasic.c │ │ ├── lv_draw_rbasic.h │ │ ├── lv_draw_rect.c │ │ ├── lv_draw_rect.h │ │ ├── lv_draw_triangle.c │ │ ├── lv_draw_triangle.h │ │ ├── lv_draw_vbasic.c │ │ └── lv_draw_vbasic.h │ │ ├── lv_fonts │ │ ├── hekate_symbol_120.c │ │ ├── hekate_symbol_20.c │ │ ├── hekate_symbol_30.c │ │ ├── interui_20.c │ │ ├── interui_30.c │ │ ├── lv_font_builtin.c │ │ ├── lv_font_builtin.h │ │ ├── lv_fonts.mk │ │ └── ubuntu_mono.c │ │ ├── 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_circ.c │ │ ├── lv_circ.h │ │ ├── lv_color.c │ │ ├── lv_color.h │ │ ├── lv_font.c │ │ ├── lv_font.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_symbol_def.h │ │ ├── lv_task.c │ │ ├── lv_task.h │ │ ├── lv_templ.c │ │ ├── lv_templ.h │ │ ├── lv_txt.c │ │ ├── lv_txt.h │ │ ├── lv_ufs.c │ │ └── lv_ufs.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_hekate.c │ │ ├── lv_theme_hekate.h │ │ └── lv_themes.mk │ │ ├── lv_version.h │ │ ├── lvgl.h │ │ └── lvgl.mk ├── mem │ ├── emc_t210.h │ ├── heap.c │ ├── heap.h │ ├── mc.c │ ├── mc.h │ ├── mc_t210.h │ ├── minerva.c │ ├── minerva.h │ ├── mtc_table.h │ ├── sdram.c │ ├── sdram.h │ ├── sdram_config.inl │ ├── sdram_config_t210b01.inl │ ├── sdram_param_t210.h │ ├── sdram_param_t210b01.h │ ├── smmu.c │ └── smmu.h ├── memory_map.h ├── module.h ├── power │ ├── bm92t36.c │ ├── bm92t36.h │ ├── bq24193.c │ ├── bq24193.h │ ├── max17050.c │ ├── max17050.h │ ├── max77620.h │ ├── max7762x.c │ ├── max7762x.h │ ├── max77812.h │ ├── regulator_5v.c │ └── regulator_5v.h ├── rtc │ ├── max77620-rtc.c │ └── max77620-rtc.h ├── sec │ ├── se.c │ ├── se.h │ ├── se_t210.h │ ├── tsec.c │ ├── tsec.h │ └── tsec_t210.h ├── soc │ ├── actmon.c │ ├── actmon.h │ ├── bpmp.c │ ├── bpmp.h │ ├── ccplex.c │ ├── ccplex.h │ ├── clock.c │ ├── clock.h │ ├── fuse.c │ ├── fuse.h │ ├── gpio.c │ ├── gpio.h │ ├── hw_init.c │ ├── hw_init.h │ ├── i2c.c │ ├── i2c.h │ ├── irq.c │ ├── irq.h │ ├── kfuse.c │ ├── kfuse.h │ ├── pinmux.c │ ├── pinmux.h │ ├── pmc.c │ ├── pmc.h │ ├── pmc_lp0_t210.h │ ├── t210.h │ ├── timer.c │ ├── timer.h │ ├── uart.c │ └── uart.h ├── storage │ ├── emmc.c │ ├── emmc.h │ ├── mbr_gpt.h │ ├── mmc_def.h │ ├── nx_emmc_bis.c │ ├── nx_emmc_bis.h │ ├── ramdisk.c │ ├── ramdisk.h │ ├── sd.c │ ├── sd.h │ ├── sd_def.h │ ├── sdmmc.c │ ├── sdmmc.h │ ├── sdmmc_driver.c │ ├── sdmmc_driver.h │ └── sdmmc_t210.h ├── thermal │ ├── fan.c │ ├── fan.h │ ├── tmp451.c │ └── tmp451.h ├── usb │ ├── usb_descriptor_types.h │ ├── usb_descriptors.c │ ├── usb_gadget_hid.c │ ├── usb_gadget_ums.c │ ├── usb_t210.h │ ├── usbd.c │ ├── usbd.h │ └── xusbd.c └── utils │ ├── aarch64_util.h │ ├── btn.c │ ├── btn.h │ ├── dirlist.c │ ├── dirlist.h │ ├── ini.c │ ├── ini.h │ ├── list.h │ ├── sprintf.c │ ├── sprintf.h │ ├── tegra_bct.h │ ├── tegra_bit.h │ ├── types.h │ ├── util.c │ └── util.h ├── bootloader ├── config.c ├── config.h ├── frontend │ ├── fe_info.c │ ├── fe_info.h │ ├── fe_tools.c │ └── fe_tools.h ├── gfx │ ├── gfx.c │ ├── gfx.h │ ├── logos.c │ ├── logos.h │ ├── tui.c │ └── tui.h ├── hos │ ├── hos.c │ ├── hos.h │ ├── hos_config.c │ ├── hos_config.h │ ├── pkg1.c │ ├── pkg1.h │ ├── pkg2.c │ ├── pkg2.h │ ├── pkg2_ini_kippatch.c │ ├── pkg2_ini_kippatch.h │ ├── pkg2_patches.inl │ ├── pkg3.c │ ├── pkg3.h │ ├── secmon_exo.c │ └── secmon_exo.h ├── l4t │ ├── l4t.c │ ├── l4t.h │ └── l4t_config.inl ├── libs │ └── fatfs │ │ ├── diskio.c │ │ └── ffconf.h ├── link.ld ├── main.c ├── start.S └── storage │ ├── emummc.c │ └── emummc.h ├── loader ├── Makefile ├── link.ld ├── loader.c └── start.S ├── modules ├── hekate_libsys_lp0 │ ├── Makefile │ ├── pmc_lp0_t210.h │ ├── sdram_lp0_param_t210.h │ ├── sdram_lp0_param_t210b01.h │ ├── sys_sdramlp0.c │ ├── t210.h │ └── types.h ├── hekate_libsys_minerva │ ├── Makefile │ ├── README.md │ ├── mtc.h │ ├── mtc_mc_emc_regs.h │ ├── mtc_switch_tables.h │ ├── mtc_table.h │ ├── sys_sdrammtc.c │ └── types.h └── simple_sample │ ├── Makefile │ ├── gfx │ ├── gfx.c │ └── gfx.h │ └── module_sample.c ├── nyx ├── Makefile ├── README_RES.md ├── nyx_gui │ ├── config.c │ ├── config.h │ ├── frontend │ │ ├── fe_emmc_tools.c │ │ ├── fe_emmc_tools.h │ │ ├── fe_emummc_tools.c │ │ ├── fe_emummc_tools.h │ │ ├── gui.c │ │ ├── gui.h │ │ ├── gui_emmc_tools.c │ │ ├── gui_emmc_tools.h │ │ ├── gui_emummc_tools.c │ │ ├── gui_emummc_tools.h │ │ ├── gui_info.c │ │ ├── gui_info.h │ │ ├── gui_options.c │ │ ├── gui_options.h │ │ ├── gui_tools.c │ │ ├── gui_tools.h │ │ ├── gui_tools_partition_manager.c │ │ └── gui_tools_partition_manager.h │ ├── gfx │ │ ├── gfx.c │ │ ├── gfx.h │ │ └── logos-gui.h │ ├── hos │ │ ├── hos.c │ │ ├── hos.h │ │ ├── pkg1.c │ │ ├── pkg1.h │ │ ├── pkg2.c │ │ └── pkg2.h │ ├── libs │ │ └── fatfs │ │ │ ├── diskio.c │ │ │ └── ffconf.h │ ├── link.ld │ ├── nyx.c │ └── start.S └── resources │ ├── icon_lakka.bmp │ ├── icon_lakka_hue.bmp │ ├── icon_payload.bmp │ └── icon_switch.bmp ├── res ├── bootlogo │ ├── bootA_(ARGB).bmp │ ├── bootA_caps_(ARGB).bmp │ ├── bootA_custom_(ARGB).bmp │ ├── bootB_(ARGB).bmp │ ├── bootB_caps_(ARGB).bmp │ ├── bootB_custom_(ARGB).bmp │ ├── bootC_(ARGB).bmp │ ├── bootC_ctc_(ARGB).bmp │ ├── bootD_(ARGB).bmp │ ├── bootD_ctc_(ARGB).bmp │ └── bootlogo.psd ├── hekate_ipl_template.ini └── patches_template.ini └── tools ├── bin2c ├── Makefile └── bin2c.c ├── emc.def ├── fix_regs.py ├── lz ├── Makefile ├── lz.c ├── lz.h └── lz77.c ├── mc.def └── smmu_payload.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/README.md -------------------------------------------------------------------------------- /README_BOOTLOGO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/README_BOOTLOGO.md -------------------------------------------------------------------------------- /Versions.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/Versions.inc -------------------------------------------------------------------------------- /bdk/bdk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/bdk.h -------------------------------------------------------------------------------- /bdk/display/di.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/display/di.c -------------------------------------------------------------------------------- /bdk/display/di.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/display/di.h -------------------------------------------------------------------------------- /bdk/display/di.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/display/di.inl -------------------------------------------------------------------------------- /bdk/display/vic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/display/vic.c -------------------------------------------------------------------------------- /bdk/display/vic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/display/vic.h -------------------------------------------------------------------------------- /bdk/exception_handlers.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/exception_handlers.S -------------------------------------------------------------------------------- /bdk/fatfs_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/fatfs_cfg.h -------------------------------------------------------------------------------- /bdk/fatfs_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/fatfs_conf.h -------------------------------------------------------------------------------- /bdk/gfx_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/gfx_utils.h -------------------------------------------------------------------------------- /bdk/ianos/elfload/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/ianos/elfload/elf.h -------------------------------------------------------------------------------- /bdk/ianos/elfload/elfarch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/ianos/elfload/elfarch.h -------------------------------------------------------------------------------- /bdk/ianos/elfload/elfload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/ianos/elfload/elfload.c -------------------------------------------------------------------------------- /bdk/ianos/elfload/elfload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/ianos/elfload/elfload.h -------------------------------------------------------------------------------- /bdk/ianos/elfload/elfreloc_aarch64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/ianos/elfload/elfreloc_aarch64.c -------------------------------------------------------------------------------- /bdk/ianos/elfload/elfreloc_arm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/ianos/elfload/elfreloc_arm.c -------------------------------------------------------------------------------- /bdk/ianos/ianos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/ianos/ianos.c -------------------------------------------------------------------------------- /bdk/ianos/ianos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/ianos/ianos.h -------------------------------------------------------------------------------- /bdk/input/als.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/input/als.c -------------------------------------------------------------------------------- /bdk/input/als.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/input/als.h -------------------------------------------------------------------------------- /bdk/input/joycon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/input/joycon.c -------------------------------------------------------------------------------- /bdk/input/joycon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/input/joycon.h -------------------------------------------------------------------------------- /bdk/input/touch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/input/touch.c -------------------------------------------------------------------------------- /bdk/input/touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/input/touch.h -------------------------------------------------------------------------------- /bdk/libs/compr/blz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/compr/blz.c -------------------------------------------------------------------------------- /bdk/libs/compr/blz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/compr/blz.h -------------------------------------------------------------------------------- /bdk/libs/compr/lz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/compr/lz.c -------------------------------------------------------------------------------- /bdk/libs/compr/lz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/compr/lz.h -------------------------------------------------------------------------------- /bdk/libs/compr/lz4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/compr/lz4.c -------------------------------------------------------------------------------- /bdk/libs/compr/lz4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/compr/lz4.h -------------------------------------------------------------------------------- /bdk/libs/fatfs/diskio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/fatfs/diskio.h -------------------------------------------------------------------------------- /bdk/libs/fatfs/ff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/fatfs/ff.c -------------------------------------------------------------------------------- /bdk/libs/fatfs/ff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/fatfs/ff.h -------------------------------------------------------------------------------- /bdk/libs/fatfs/ffsystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/fatfs/ffsystem.c -------------------------------------------------------------------------------- /bdk/libs/fatfs/ffunicode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/fatfs/ffunicode.c -------------------------------------------------------------------------------- /bdk/libs/lv_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lv_conf.h -------------------------------------------------------------------------------- /bdk/libs/lvgl/docs/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/docs/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /bdk/libs/lvgl/docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /bdk/libs/lvgl/docs/astyle_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/docs/astyle_c -------------------------------------------------------------------------------- /bdk/libs/lvgl/docs/astyle_h: -------------------------------------------------------------------------------- 1 | --convert-tabs --indent=spaces=4 2 | -------------------------------------------------------------------------------- /bdk/libs/lvgl/licence.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/licence.txt -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_core/lv_core.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_core/lv_core.mk -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_core/lv_group.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_core/lv_group.c -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_core/lv_group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_core/lv_group.h -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_core/lv_indev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_core/lv_indev.c -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_core/lv_indev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_core/lv_indev.h -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_core/lv_lang.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_core/lv_lang.c -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_core/lv_lang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_core/lv_lang.h -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_core/lv_obj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_core/lv_obj.c -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_core/lv_obj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_core/lv_obj.h -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_core/lv_refr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_core/lv_refr.c -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_core/lv_refr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_core/lv_refr.h -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_core/lv_style.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_core/lv_style.c -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_core/lv_style.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_core/lv_style.h -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_core/lv_vdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_core/lv_vdb.c -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_core/lv_vdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_core/lv_vdb.h -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_draw/lv_draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_draw/lv_draw.c -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_draw/lv_draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_draw/lv_draw.h -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_draw/lv_draw.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_draw/lv_draw.mk -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_draw/lv_draw_arc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_draw/lv_draw_arc.c -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_draw/lv_draw_arc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_draw/lv_draw_arc.h -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_draw/lv_draw_img.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_draw/lv_draw_img.c -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_draw/lv_draw_img.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_draw/lv_draw_img.h -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_draw/lv_draw_label.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_draw/lv_draw_label.c -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_draw/lv_draw_label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_draw/lv_draw_label.h -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_draw/lv_draw_line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_draw/lv_draw_line.c -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_draw/lv_draw_line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_draw/lv_draw_line.h -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_draw/lv_draw_rbasic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_draw/lv_draw_rbasic.c -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_draw/lv_draw_rbasic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_draw/lv_draw_rbasic.h -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_draw/lv_draw_rect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_draw/lv_draw_rect.c -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_draw/lv_draw_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_draw/lv_draw_rect.h -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_draw/lv_draw_triangle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_draw/lv_draw_triangle.c -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_draw/lv_draw_triangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_draw/lv_draw_triangle.h -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_draw/lv_draw_vbasic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_draw/lv_draw_vbasic.c -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_draw/lv_draw_vbasic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_draw/lv_draw_vbasic.h -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_fonts/hekate_symbol_120.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_fonts/hekate_symbol_120.c -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_fonts/hekate_symbol_20.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_fonts/hekate_symbol_20.c -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_fonts/hekate_symbol_30.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_fonts/hekate_symbol_30.c -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_fonts/interui_20.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_fonts/interui_20.c -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_fonts/interui_30.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_fonts/interui_30.c -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_fonts/lv_font_builtin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_fonts/lv_font_builtin.c -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_fonts/lv_font_builtin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_fonts/lv_font_builtin.h -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_fonts/lv_fonts.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_fonts/lv_fonts.mk -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_fonts/ubuntu_mono.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_fonts/ubuntu_mono.c -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_hal/lv_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_hal/lv_hal.h -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_hal/lv_hal.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_hal/lv_hal.mk -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_hal/lv_hal_disp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_hal/lv_hal_disp.c -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_hal/lv_hal_disp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_hal/lv_hal_disp.h -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_hal/lv_hal_indev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_hal/lv_hal_indev.c -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_hal/lv_hal_indev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_hal/lv_hal_indev.h -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_hal/lv_hal_tick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_hal/lv_hal_tick.c -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_hal/lv_hal_tick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_hal/lv_hal_tick.h -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_misc/lv_anim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_misc/lv_anim.c -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_misc/lv_anim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_misc/lv_anim.h -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_misc/lv_area.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_misc/lv_area.c -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_misc/lv_area.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_misc/lv_area.h -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_misc/lv_circ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_misc/lv_circ.c -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_misc/lv_circ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_misc/lv_circ.h -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_misc/lv_color.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_misc/lv_color.c -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_misc/lv_color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_misc/lv_color.h -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_misc/lv_font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_misc/lv_font.c -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_misc/lv_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_misc/lv_font.h -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_misc/lv_fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_misc/lv_fs.c -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_misc/lv_fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_misc/lv_fs.h -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_misc/lv_gc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_misc/lv_gc.c -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_misc/lv_gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_misc/lv_gc.h -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_misc/lv_ll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_misc/lv_ll.c -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_misc/lv_ll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_misc/lv_ll.h -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_misc/lv_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_misc/lv_log.c -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_misc/lv_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_misc/lv_log.h -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_misc/lv_math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_misc/lv_math.c -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_misc/lv_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_misc/lv_math.h -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_misc/lv_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_misc/lv_mem.c -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_misc/lv_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_misc/lv_mem.h -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_misc/lv_misc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_misc/lv_misc.mk -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_misc/lv_symbol_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_misc/lv_symbol_def.h -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_misc/lv_task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_misc/lv_task.c -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_misc/lv_task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_misc/lv_task.h -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_misc/lv_templ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_misc/lv_templ.c -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_misc/lv_templ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_misc/lv_templ.h -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_misc/lv_txt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_misc/lv_txt.c -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_misc/lv_txt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_misc/lv_txt.h -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_misc/lv_ufs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_misc/lv_ufs.c -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_misc/lv_ufs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_misc/lv_ufs.h -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_objx/lv_arc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_objx/lv_arc.c -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_objx/lv_arc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_objx/lv_arc.h -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_objx/lv_bar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_objx/lv_bar.c -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_objx/lv_bar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_objx/lv_bar.h -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_objx/lv_btn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_objx/lv_btn.c -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_objx/lv_btn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_objx/lv_btn.h -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_objx/lv_btnm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_objx/lv_btnm.c -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_objx/lv_btnm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_objx/lv_btnm.h -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_objx/lv_calendar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_objx/lv_calendar.c -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_objx/lv_calendar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_objx/lv_calendar.h -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_objx/lv_canvas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_objx/lv_canvas.c -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_objx/lv_canvas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_objx/lv_canvas.h -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_objx/lv_cb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_objx/lv_cb.c -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_objx/lv_cb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_objx/lv_cb.h -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_objx/lv_chart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_objx/lv_chart.c -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_objx/lv_chart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_objx/lv_chart.h -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_objx/lv_cont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_objx/lv_cont.c -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_objx/lv_cont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_objx/lv_cont.h -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_objx/lv_ddlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_objx/lv_ddlist.c -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_objx/lv_ddlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_objx/lv_ddlist.h -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_objx/lv_gauge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_objx/lv_gauge.c -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_objx/lv_gauge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_objx/lv_gauge.h -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_objx/lv_img.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_objx/lv_img.c -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_objx/lv_img.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_objx/lv_img.h -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_objx/lv_imgbtn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_objx/lv_imgbtn.c -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_objx/lv_imgbtn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_objx/lv_imgbtn.h -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_objx/lv_kb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_objx/lv_kb.c -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_objx/lv_kb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_objx/lv_kb.h -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_objx/lv_label.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_objx/lv_label.c -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_objx/lv_label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_objx/lv_label.h -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_objx/lv_led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_objx/lv_led.c -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_objx/lv_led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_objx/lv_led.h -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_objx/lv_line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_objx/lv_line.c -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_objx/lv_line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_objx/lv_line.h -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_objx/lv_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_objx/lv_list.c -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_objx/lv_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_objx/lv_list.h -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_objx/lv_lmeter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_objx/lv_lmeter.c -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_objx/lv_lmeter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_objx/lv_lmeter.h -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_objx/lv_mbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_objx/lv_mbox.c -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_objx/lv_mbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_objx/lv_mbox.h -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_objx/lv_objx.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_objx/lv_objx.mk -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_objx/lv_objx_templ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_objx/lv_objx_templ.c -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_objx/lv_objx_templ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_objx/lv_objx_templ.h -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_objx/lv_page.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_objx/lv_page.c -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_objx/lv_page.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_objx/lv_page.h -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_objx/lv_preload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_objx/lv_preload.c -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_objx/lv_preload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_objx/lv_preload.h -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_objx/lv_roller.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_objx/lv_roller.c -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_objx/lv_roller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_objx/lv_roller.h -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_objx/lv_slider.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_objx/lv_slider.c -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_objx/lv_slider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_objx/lv_slider.h -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_objx/lv_spinbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_objx/lv_spinbox.c -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_objx/lv_spinbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_objx/lv_spinbox.h -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_objx/lv_sw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_objx/lv_sw.c -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_objx/lv_sw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_objx/lv_sw.h -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_objx/lv_ta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_objx/lv_ta.c -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_objx/lv_ta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_objx/lv_ta.h -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_objx/lv_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_objx/lv_table.c -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_objx/lv_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_objx/lv_table.h -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_objx/lv_tabview.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_objx/lv_tabview.c -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_objx/lv_tabview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_objx/lv_tabview.h -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_objx/lv_tileview.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_objx/lv_tileview.c -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_objx/lv_tileview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_objx/lv_tileview.h -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_objx/lv_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_objx/lv_win.c -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_objx/lv_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_objx/lv_win.h -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_themes/lv_theme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_themes/lv_theme.c -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_themes/lv_theme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_themes/lv_theme.h -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_themes/lv_theme_hekate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_themes/lv_theme_hekate.c -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_themes/lv_theme_hekate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_themes/lv_theme_hekate.h -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_themes/lv_themes.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_themes/lv_themes.mk -------------------------------------------------------------------------------- /bdk/libs/lvgl/lv_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lv_version.h -------------------------------------------------------------------------------- /bdk/libs/lvgl/lvgl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lvgl.h -------------------------------------------------------------------------------- /bdk/libs/lvgl/lvgl.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/libs/lvgl/lvgl.mk -------------------------------------------------------------------------------- /bdk/mem/emc_t210.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/mem/emc_t210.h -------------------------------------------------------------------------------- /bdk/mem/heap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/mem/heap.c -------------------------------------------------------------------------------- /bdk/mem/heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/mem/heap.h -------------------------------------------------------------------------------- /bdk/mem/mc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/mem/mc.c -------------------------------------------------------------------------------- /bdk/mem/mc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/mem/mc.h -------------------------------------------------------------------------------- /bdk/mem/mc_t210.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/mem/mc_t210.h -------------------------------------------------------------------------------- /bdk/mem/minerva.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/mem/minerva.c -------------------------------------------------------------------------------- /bdk/mem/minerva.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/mem/minerva.h -------------------------------------------------------------------------------- /bdk/mem/mtc_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/mem/mtc_table.h -------------------------------------------------------------------------------- /bdk/mem/sdram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/mem/sdram.c -------------------------------------------------------------------------------- /bdk/mem/sdram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/mem/sdram.h -------------------------------------------------------------------------------- /bdk/mem/sdram_config.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/mem/sdram_config.inl -------------------------------------------------------------------------------- /bdk/mem/sdram_config_t210b01.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/mem/sdram_config_t210b01.inl -------------------------------------------------------------------------------- /bdk/mem/sdram_param_t210.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/mem/sdram_param_t210.h -------------------------------------------------------------------------------- /bdk/mem/sdram_param_t210b01.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/mem/sdram_param_t210b01.h -------------------------------------------------------------------------------- /bdk/mem/smmu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/mem/smmu.c -------------------------------------------------------------------------------- /bdk/mem/smmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/mem/smmu.h -------------------------------------------------------------------------------- /bdk/memory_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/memory_map.h -------------------------------------------------------------------------------- /bdk/module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/module.h -------------------------------------------------------------------------------- /bdk/power/bm92t36.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/power/bm92t36.c -------------------------------------------------------------------------------- /bdk/power/bm92t36.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/power/bm92t36.h -------------------------------------------------------------------------------- /bdk/power/bq24193.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/power/bq24193.c -------------------------------------------------------------------------------- /bdk/power/bq24193.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/power/bq24193.h -------------------------------------------------------------------------------- /bdk/power/max17050.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/power/max17050.c -------------------------------------------------------------------------------- /bdk/power/max17050.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/power/max17050.h -------------------------------------------------------------------------------- /bdk/power/max77620.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/power/max77620.h -------------------------------------------------------------------------------- /bdk/power/max7762x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/power/max7762x.c -------------------------------------------------------------------------------- /bdk/power/max7762x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/power/max7762x.h -------------------------------------------------------------------------------- /bdk/power/max77812.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/power/max77812.h -------------------------------------------------------------------------------- /bdk/power/regulator_5v.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/power/regulator_5v.c -------------------------------------------------------------------------------- /bdk/power/regulator_5v.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/power/regulator_5v.h -------------------------------------------------------------------------------- /bdk/rtc/max77620-rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/rtc/max77620-rtc.c -------------------------------------------------------------------------------- /bdk/rtc/max77620-rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/rtc/max77620-rtc.h -------------------------------------------------------------------------------- /bdk/sec/se.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/sec/se.c -------------------------------------------------------------------------------- /bdk/sec/se.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/sec/se.h -------------------------------------------------------------------------------- /bdk/sec/se_t210.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/sec/se_t210.h -------------------------------------------------------------------------------- /bdk/sec/tsec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/sec/tsec.c -------------------------------------------------------------------------------- /bdk/sec/tsec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/sec/tsec.h -------------------------------------------------------------------------------- /bdk/sec/tsec_t210.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/sec/tsec_t210.h -------------------------------------------------------------------------------- /bdk/soc/actmon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/soc/actmon.c -------------------------------------------------------------------------------- /bdk/soc/actmon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/soc/actmon.h -------------------------------------------------------------------------------- /bdk/soc/bpmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/soc/bpmp.c -------------------------------------------------------------------------------- /bdk/soc/bpmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/soc/bpmp.h -------------------------------------------------------------------------------- /bdk/soc/ccplex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/soc/ccplex.c -------------------------------------------------------------------------------- /bdk/soc/ccplex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/soc/ccplex.h -------------------------------------------------------------------------------- /bdk/soc/clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/soc/clock.c -------------------------------------------------------------------------------- /bdk/soc/clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/soc/clock.h -------------------------------------------------------------------------------- /bdk/soc/fuse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/soc/fuse.c -------------------------------------------------------------------------------- /bdk/soc/fuse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/soc/fuse.h -------------------------------------------------------------------------------- /bdk/soc/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/soc/gpio.c -------------------------------------------------------------------------------- /bdk/soc/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/soc/gpio.h -------------------------------------------------------------------------------- /bdk/soc/hw_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/soc/hw_init.c -------------------------------------------------------------------------------- /bdk/soc/hw_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/soc/hw_init.h -------------------------------------------------------------------------------- /bdk/soc/i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/soc/i2c.c -------------------------------------------------------------------------------- /bdk/soc/i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/soc/i2c.h -------------------------------------------------------------------------------- /bdk/soc/irq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/soc/irq.c -------------------------------------------------------------------------------- /bdk/soc/irq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/soc/irq.h -------------------------------------------------------------------------------- /bdk/soc/kfuse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/soc/kfuse.c -------------------------------------------------------------------------------- /bdk/soc/kfuse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/soc/kfuse.h -------------------------------------------------------------------------------- /bdk/soc/pinmux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/soc/pinmux.c -------------------------------------------------------------------------------- /bdk/soc/pinmux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/soc/pinmux.h -------------------------------------------------------------------------------- /bdk/soc/pmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/soc/pmc.c -------------------------------------------------------------------------------- /bdk/soc/pmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/soc/pmc.h -------------------------------------------------------------------------------- /bdk/soc/pmc_lp0_t210.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/soc/pmc_lp0_t210.h -------------------------------------------------------------------------------- /bdk/soc/t210.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/soc/t210.h -------------------------------------------------------------------------------- /bdk/soc/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/soc/timer.c -------------------------------------------------------------------------------- /bdk/soc/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/soc/timer.h -------------------------------------------------------------------------------- /bdk/soc/uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/soc/uart.c -------------------------------------------------------------------------------- /bdk/soc/uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/soc/uart.h -------------------------------------------------------------------------------- /bdk/storage/emmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/storage/emmc.c -------------------------------------------------------------------------------- /bdk/storage/emmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/storage/emmc.h -------------------------------------------------------------------------------- /bdk/storage/mbr_gpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/storage/mbr_gpt.h -------------------------------------------------------------------------------- /bdk/storage/mmc_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/storage/mmc_def.h -------------------------------------------------------------------------------- /bdk/storage/nx_emmc_bis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/storage/nx_emmc_bis.c -------------------------------------------------------------------------------- /bdk/storage/nx_emmc_bis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/storage/nx_emmc_bis.h -------------------------------------------------------------------------------- /bdk/storage/ramdisk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/storage/ramdisk.c -------------------------------------------------------------------------------- /bdk/storage/ramdisk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/storage/ramdisk.h -------------------------------------------------------------------------------- /bdk/storage/sd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/storage/sd.c -------------------------------------------------------------------------------- /bdk/storage/sd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/storage/sd.h -------------------------------------------------------------------------------- /bdk/storage/sd_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/storage/sd_def.h -------------------------------------------------------------------------------- /bdk/storage/sdmmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/storage/sdmmc.c -------------------------------------------------------------------------------- /bdk/storage/sdmmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/storage/sdmmc.h -------------------------------------------------------------------------------- /bdk/storage/sdmmc_driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/storage/sdmmc_driver.c -------------------------------------------------------------------------------- /bdk/storage/sdmmc_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/storage/sdmmc_driver.h -------------------------------------------------------------------------------- /bdk/storage/sdmmc_t210.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/storage/sdmmc_t210.h -------------------------------------------------------------------------------- /bdk/thermal/fan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/thermal/fan.c -------------------------------------------------------------------------------- /bdk/thermal/fan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/thermal/fan.h -------------------------------------------------------------------------------- /bdk/thermal/tmp451.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/thermal/tmp451.c -------------------------------------------------------------------------------- /bdk/thermal/tmp451.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/thermal/tmp451.h -------------------------------------------------------------------------------- /bdk/usb/usb_descriptor_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/usb/usb_descriptor_types.h -------------------------------------------------------------------------------- /bdk/usb/usb_descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/usb/usb_descriptors.c -------------------------------------------------------------------------------- /bdk/usb/usb_gadget_hid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/usb/usb_gadget_hid.c -------------------------------------------------------------------------------- /bdk/usb/usb_gadget_ums.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/usb/usb_gadget_ums.c -------------------------------------------------------------------------------- /bdk/usb/usb_t210.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/usb/usb_t210.h -------------------------------------------------------------------------------- /bdk/usb/usbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/usb/usbd.c -------------------------------------------------------------------------------- /bdk/usb/usbd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/usb/usbd.h -------------------------------------------------------------------------------- /bdk/usb/xusbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/usb/xusbd.c -------------------------------------------------------------------------------- /bdk/utils/aarch64_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/utils/aarch64_util.h -------------------------------------------------------------------------------- /bdk/utils/btn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/utils/btn.c -------------------------------------------------------------------------------- /bdk/utils/btn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/utils/btn.h -------------------------------------------------------------------------------- /bdk/utils/dirlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/utils/dirlist.c -------------------------------------------------------------------------------- /bdk/utils/dirlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/utils/dirlist.h -------------------------------------------------------------------------------- /bdk/utils/ini.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/utils/ini.c -------------------------------------------------------------------------------- /bdk/utils/ini.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/utils/ini.h -------------------------------------------------------------------------------- /bdk/utils/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/utils/list.h -------------------------------------------------------------------------------- /bdk/utils/sprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/utils/sprintf.c -------------------------------------------------------------------------------- /bdk/utils/sprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/utils/sprintf.h -------------------------------------------------------------------------------- /bdk/utils/tegra_bct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/utils/tegra_bct.h -------------------------------------------------------------------------------- /bdk/utils/tegra_bit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/utils/tegra_bit.h -------------------------------------------------------------------------------- /bdk/utils/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/utils/types.h -------------------------------------------------------------------------------- /bdk/utils/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/utils/util.c -------------------------------------------------------------------------------- /bdk/utils/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bdk/utils/util.h -------------------------------------------------------------------------------- /bootloader/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bootloader/config.c -------------------------------------------------------------------------------- /bootloader/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bootloader/config.h -------------------------------------------------------------------------------- /bootloader/frontend/fe_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bootloader/frontend/fe_info.c -------------------------------------------------------------------------------- /bootloader/frontend/fe_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bootloader/frontend/fe_info.h -------------------------------------------------------------------------------- /bootloader/frontend/fe_tools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bootloader/frontend/fe_tools.c -------------------------------------------------------------------------------- /bootloader/frontend/fe_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bootloader/frontend/fe_tools.h -------------------------------------------------------------------------------- /bootloader/gfx/gfx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bootloader/gfx/gfx.c -------------------------------------------------------------------------------- /bootloader/gfx/gfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bootloader/gfx/gfx.h -------------------------------------------------------------------------------- /bootloader/gfx/logos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bootloader/gfx/logos.c -------------------------------------------------------------------------------- /bootloader/gfx/logos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bootloader/gfx/logos.h -------------------------------------------------------------------------------- /bootloader/gfx/tui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bootloader/gfx/tui.c -------------------------------------------------------------------------------- /bootloader/gfx/tui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bootloader/gfx/tui.h -------------------------------------------------------------------------------- /bootloader/hos/hos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bootloader/hos/hos.c -------------------------------------------------------------------------------- /bootloader/hos/hos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bootloader/hos/hos.h -------------------------------------------------------------------------------- /bootloader/hos/hos_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bootloader/hos/hos_config.c -------------------------------------------------------------------------------- /bootloader/hos/hos_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bootloader/hos/hos_config.h -------------------------------------------------------------------------------- /bootloader/hos/pkg1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bootloader/hos/pkg1.c -------------------------------------------------------------------------------- /bootloader/hos/pkg1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bootloader/hos/pkg1.h -------------------------------------------------------------------------------- /bootloader/hos/pkg2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bootloader/hos/pkg2.c -------------------------------------------------------------------------------- /bootloader/hos/pkg2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bootloader/hos/pkg2.h -------------------------------------------------------------------------------- /bootloader/hos/pkg2_ini_kippatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bootloader/hos/pkg2_ini_kippatch.c -------------------------------------------------------------------------------- /bootloader/hos/pkg2_ini_kippatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bootloader/hos/pkg2_ini_kippatch.h -------------------------------------------------------------------------------- /bootloader/hos/pkg2_patches.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bootloader/hos/pkg2_patches.inl -------------------------------------------------------------------------------- /bootloader/hos/pkg3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bootloader/hos/pkg3.c -------------------------------------------------------------------------------- /bootloader/hos/pkg3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bootloader/hos/pkg3.h -------------------------------------------------------------------------------- /bootloader/hos/secmon_exo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bootloader/hos/secmon_exo.c -------------------------------------------------------------------------------- /bootloader/hos/secmon_exo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bootloader/hos/secmon_exo.h -------------------------------------------------------------------------------- /bootloader/l4t/l4t.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bootloader/l4t/l4t.c -------------------------------------------------------------------------------- /bootloader/l4t/l4t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bootloader/l4t/l4t.h -------------------------------------------------------------------------------- /bootloader/l4t/l4t_config.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bootloader/l4t/l4t_config.inl -------------------------------------------------------------------------------- /bootloader/libs/fatfs/diskio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bootloader/libs/fatfs/diskio.c -------------------------------------------------------------------------------- /bootloader/libs/fatfs/ffconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bootloader/libs/fatfs/ffconf.h -------------------------------------------------------------------------------- /bootloader/link.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bootloader/link.ld -------------------------------------------------------------------------------- /bootloader/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bootloader/main.c -------------------------------------------------------------------------------- /bootloader/start.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bootloader/start.S -------------------------------------------------------------------------------- /bootloader/storage/emummc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bootloader/storage/emummc.c -------------------------------------------------------------------------------- /bootloader/storage/emummc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/bootloader/storage/emummc.h -------------------------------------------------------------------------------- /loader/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/loader/Makefile -------------------------------------------------------------------------------- /loader/link.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/loader/link.ld -------------------------------------------------------------------------------- /loader/loader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/loader/loader.c -------------------------------------------------------------------------------- /loader/start.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/loader/start.S -------------------------------------------------------------------------------- /modules/hekate_libsys_lp0/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/modules/hekate_libsys_lp0/Makefile -------------------------------------------------------------------------------- /modules/hekate_libsys_lp0/pmc_lp0_t210.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/modules/hekate_libsys_lp0/pmc_lp0_t210.h -------------------------------------------------------------------------------- /modules/hekate_libsys_lp0/sdram_lp0_param_t210.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/modules/hekate_libsys_lp0/sdram_lp0_param_t210.h -------------------------------------------------------------------------------- /modules/hekate_libsys_lp0/sdram_lp0_param_t210b01.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/modules/hekate_libsys_lp0/sdram_lp0_param_t210b01.h -------------------------------------------------------------------------------- /modules/hekate_libsys_lp0/sys_sdramlp0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/modules/hekate_libsys_lp0/sys_sdramlp0.c -------------------------------------------------------------------------------- /modules/hekate_libsys_lp0/t210.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/modules/hekate_libsys_lp0/t210.h -------------------------------------------------------------------------------- /modules/hekate_libsys_lp0/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/modules/hekate_libsys_lp0/types.h -------------------------------------------------------------------------------- /modules/hekate_libsys_minerva/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/modules/hekate_libsys_minerva/Makefile -------------------------------------------------------------------------------- /modules/hekate_libsys_minerva/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/modules/hekate_libsys_minerva/README.md -------------------------------------------------------------------------------- /modules/hekate_libsys_minerva/mtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/modules/hekate_libsys_minerva/mtc.h -------------------------------------------------------------------------------- /modules/hekate_libsys_minerva/mtc_mc_emc_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/modules/hekate_libsys_minerva/mtc_mc_emc_regs.h -------------------------------------------------------------------------------- /modules/hekate_libsys_minerva/mtc_switch_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/modules/hekate_libsys_minerva/mtc_switch_tables.h -------------------------------------------------------------------------------- /modules/hekate_libsys_minerva/mtc_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/modules/hekate_libsys_minerva/mtc_table.h -------------------------------------------------------------------------------- /modules/hekate_libsys_minerva/sys_sdrammtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/modules/hekate_libsys_minerva/sys_sdrammtc.c -------------------------------------------------------------------------------- /modules/hekate_libsys_minerva/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/modules/hekate_libsys_minerva/types.h -------------------------------------------------------------------------------- /modules/simple_sample/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/modules/simple_sample/Makefile -------------------------------------------------------------------------------- /modules/simple_sample/gfx/gfx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/modules/simple_sample/gfx/gfx.c -------------------------------------------------------------------------------- /modules/simple_sample/gfx/gfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/modules/simple_sample/gfx/gfx.h -------------------------------------------------------------------------------- /modules/simple_sample/module_sample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/modules/simple_sample/module_sample.c -------------------------------------------------------------------------------- /nyx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/nyx/Makefile -------------------------------------------------------------------------------- /nyx/README_RES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/nyx/README_RES.md -------------------------------------------------------------------------------- /nyx/nyx_gui/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/nyx/nyx_gui/config.c -------------------------------------------------------------------------------- /nyx/nyx_gui/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/nyx/nyx_gui/config.h -------------------------------------------------------------------------------- /nyx/nyx_gui/frontend/fe_emmc_tools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/nyx/nyx_gui/frontend/fe_emmc_tools.c -------------------------------------------------------------------------------- /nyx/nyx_gui/frontend/fe_emmc_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/nyx/nyx_gui/frontend/fe_emmc_tools.h -------------------------------------------------------------------------------- /nyx/nyx_gui/frontend/fe_emummc_tools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/nyx/nyx_gui/frontend/fe_emummc_tools.c -------------------------------------------------------------------------------- /nyx/nyx_gui/frontend/fe_emummc_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/nyx/nyx_gui/frontend/fe_emummc_tools.h -------------------------------------------------------------------------------- /nyx/nyx_gui/frontend/gui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/nyx/nyx_gui/frontend/gui.c -------------------------------------------------------------------------------- /nyx/nyx_gui/frontend/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/nyx/nyx_gui/frontend/gui.h -------------------------------------------------------------------------------- /nyx/nyx_gui/frontend/gui_emmc_tools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/nyx/nyx_gui/frontend/gui_emmc_tools.c -------------------------------------------------------------------------------- /nyx/nyx_gui/frontend/gui_emmc_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/nyx/nyx_gui/frontend/gui_emmc_tools.h -------------------------------------------------------------------------------- /nyx/nyx_gui/frontend/gui_emummc_tools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/nyx/nyx_gui/frontend/gui_emummc_tools.c -------------------------------------------------------------------------------- /nyx/nyx_gui/frontend/gui_emummc_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/nyx/nyx_gui/frontend/gui_emummc_tools.h -------------------------------------------------------------------------------- /nyx/nyx_gui/frontend/gui_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/nyx/nyx_gui/frontend/gui_info.c -------------------------------------------------------------------------------- /nyx/nyx_gui/frontend/gui_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/nyx/nyx_gui/frontend/gui_info.h -------------------------------------------------------------------------------- /nyx/nyx_gui/frontend/gui_options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/nyx/nyx_gui/frontend/gui_options.c -------------------------------------------------------------------------------- /nyx/nyx_gui/frontend/gui_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/nyx/nyx_gui/frontend/gui_options.h -------------------------------------------------------------------------------- /nyx/nyx_gui/frontend/gui_tools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/nyx/nyx_gui/frontend/gui_tools.c -------------------------------------------------------------------------------- /nyx/nyx_gui/frontend/gui_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/nyx/nyx_gui/frontend/gui_tools.h -------------------------------------------------------------------------------- /nyx/nyx_gui/frontend/gui_tools_partition_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/nyx/nyx_gui/frontend/gui_tools_partition_manager.c -------------------------------------------------------------------------------- /nyx/nyx_gui/frontend/gui_tools_partition_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/nyx/nyx_gui/frontend/gui_tools_partition_manager.h -------------------------------------------------------------------------------- /nyx/nyx_gui/gfx/gfx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/nyx/nyx_gui/gfx/gfx.c -------------------------------------------------------------------------------- /nyx/nyx_gui/gfx/gfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/nyx/nyx_gui/gfx/gfx.h -------------------------------------------------------------------------------- /nyx/nyx_gui/gfx/logos-gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/nyx/nyx_gui/gfx/logos-gui.h -------------------------------------------------------------------------------- /nyx/nyx_gui/hos/hos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/nyx/nyx_gui/hos/hos.c -------------------------------------------------------------------------------- /nyx/nyx_gui/hos/hos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/nyx/nyx_gui/hos/hos.h -------------------------------------------------------------------------------- /nyx/nyx_gui/hos/pkg1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/nyx/nyx_gui/hos/pkg1.c -------------------------------------------------------------------------------- /nyx/nyx_gui/hos/pkg1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/nyx/nyx_gui/hos/pkg1.h -------------------------------------------------------------------------------- /nyx/nyx_gui/hos/pkg2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/nyx/nyx_gui/hos/pkg2.c -------------------------------------------------------------------------------- /nyx/nyx_gui/hos/pkg2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/nyx/nyx_gui/hos/pkg2.h -------------------------------------------------------------------------------- /nyx/nyx_gui/libs/fatfs/diskio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/nyx/nyx_gui/libs/fatfs/diskio.c -------------------------------------------------------------------------------- /nyx/nyx_gui/libs/fatfs/ffconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/nyx/nyx_gui/libs/fatfs/ffconf.h -------------------------------------------------------------------------------- /nyx/nyx_gui/link.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/nyx/nyx_gui/link.ld -------------------------------------------------------------------------------- /nyx/nyx_gui/nyx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/nyx/nyx_gui/nyx.c -------------------------------------------------------------------------------- /nyx/nyx_gui/start.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/nyx/nyx_gui/start.S -------------------------------------------------------------------------------- /nyx/resources/icon_lakka.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/nyx/resources/icon_lakka.bmp -------------------------------------------------------------------------------- /nyx/resources/icon_lakka_hue.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/nyx/resources/icon_lakka_hue.bmp -------------------------------------------------------------------------------- /nyx/resources/icon_payload.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/nyx/resources/icon_payload.bmp -------------------------------------------------------------------------------- /nyx/resources/icon_switch.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/nyx/resources/icon_switch.bmp -------------------------------------------------------------------------------- /res/bootlogo/bootA_(ARGB).bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/res/bootlogo/bootA_(ARGB).bmp -------------------------------------------------------------------------------- /res/bootlogo/bootA_caps_(ARGB).bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/res/bootlogo/bootA_caps_(ARGB).bmp -------------------------------------------------------------------------------- /res/bootlogo/bootA_custom_(ARGB).bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/res/bootlogo/bootA_custom_(ARGB).bmp -------------------------------------------------------------------------------- /res/bootlogo/bootB_(ARGB).bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/res/bootlogo/bootB_(ARGB).bmp -------------------------------------------------------------------------------- /res/bootlogo/bootB_caps_(ARGB).bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/res/bootlogo/bootB_caps_(ARGB).bmp -------------------------------------------------------------------------------- /res/bootlogo/bootB_custom_(ARGB).bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/res/bootlogo/bootB_custom_(ARGB).bmp -------------------------------------------------------------------------------- /res/bootlogo/bootC_(ARGB).bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/res/bootlogo/bootC_(ARGB).bmp -------------------------------------------------------------------------------- /res/bootlogo/bootC_ctc_(ARGB).bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/res/bootlogo/bootC_ctc_(ARGB).bmp -------------------------------------------------------------------------------- /res/bootlogo/bootD_(ARGB).bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/res/bootlogo/bootD_(ARGB).bmp -------------------------------------------------------------------------------- /res/bootlogo/bootD_ctc_(ARGB).bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/res/bootlogo/bootD_ctc_(ARGB).bmp -------------------------------------------------------------------------------- /res/bootlogo/bootlogo.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/res/bootlogo/bootlogo.psd -------------------------------------------------------------------------------- /res/hekate_ipl_template.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/res/hekate_ipl_template.ini -------------------------------------------------------------------------------- /res/patches_template.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/res/patches_template.ini -------------------------------------------------------------------------------- /tools/bin2c/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/tools/bin2c/Makefile -------------------------------------------------------------------------------- /tools/bin2c/bin2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/tools/bin2c/bin2c.c -------------------------------------------------------------------------------- /tools/emc.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/tools/emc.def -------------------------------------------------------------------------------- /tools/fix_regs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/tools/fix_regs.py -------------------------------------------------------------------------------- /tools/lz/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/tools/lz/Makefile -------------------------------------------------------------------------------- /tools/lz/lz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/tools/lz/lz.c -------------------------------------------------------------------------------- /tools/lz/lz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/tools/lz/lz.h -------------------------------------------------------------------------------- /tools/lz/lz77.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/tools/lz/lz77.c -------------------------------------------------------------------------------- /tools/mc.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/tools/mc.def -------------------------------------------------------------------------------- /tools/smmu_payload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTCaer/hekate/HEAD/tools/smmu_payload.py --------------------------------------------------------------------------------