diff --git a/README.md b/README.md index 46dd35a..98aeed7 100644 --- a/README.md +++ b/README.md @@ -180,7 +180,7 @@ hekate has a boot storage in the binary that helps it configure it outside of BP | umsemmcrw=0 | 1: eMMC/emuMMC UMS will be mounted as writable by default. | | jcdisable=0 | 1: Disables Joycon driver completely. | | jcforceright=0 | 1: Forces right joycon to be used as main mouse control. | -| bpmpclock=1 | 0: Auto, 1: Faster, 2: Fast. Use 2 if Nyx hangs or some functions like UMS/Backup Verification fail. | +| bpmpclock=1 | 0: Auto, 1: Fastest, 2: Faster, 3: Fast. Use 2 or 3 if Nyx hangs or some functions like UMS/Backup Verification fail. | ``` diff --git a/Versions.inc b/Versions.inc index fa8409a..a8ca623 100644 --- a/Versions.inc +++ b/Versions.inc @@ -1,11 +1,11 @@ # IPL Version. BLVERSION_MAJOR := 6 BLVERSION_MINOR := 0 -BLVERSION_HOTFX := 1 +BLVERSION_HOTFX := 2 BLVERSION_RSVD := 0 # Nyx Version. NYXVERSION_MAJOR := 1 NYXVERSION_MINOR := 5 -NYXVERSION_HOTFX := 1 +NYXVERSION_HOTFX := 2 NYXVERSION_RSVD := 0 diff --git a/bootloader/main.c b/bootloader/main.c index 1c756ec..676e470 100644 --- a/bootloader/main.c +++ b/bootloader/main.c @@ -85,9 +85,9 @@ void emmcsn_path_impl(char *path, char *sub_dir, char *filename, sdmmc_storage_t void check_power_off_from_hos() { - // Power off on AutoRCM wakeup from HOS shutdown. For modchips/dongles. - u8 hosWakeup = i2c_recv_byte(I2C_5, MAX77620_I2C_ADDR, MAX77620_REG_IRQTOP); - if (hosWakeup & MAX77620_IRQ_TOP_RTC_MASK) + // Power off on alarm wakeup from HOS shutdown. For modchips/dongles. + u8 hos_wakeup = i2c_recv_byte(I2C_5, MAX77620_I2C_ADDR, MAX77620_REG_IRQTOP); + if (hos_wakeup & MAX77620_IRQ_TOP_RTC_MASK) { if (h_cfg.autohosoff == 1) { @@ -1467,7 +1467,7 @@ ment_t ment_top[] = { MDEF_END() }; -menu_t menu_top = { ment_top, "hekate v6.0.1", 0, 0 }; +menu_t menu_top = { ment_top, "hekate v6.0.2", 0, 0 }; extern void pivot_stack(u32 stack_top); diff --git a/nyx/README_RES.md b/nyx/README_RES.md index df6d870..f4f54e3 100644 --- a/nyx/README_RES.md +++ b/nyx/README_RES.md @@ -8,6 +8,8 @@ Additionally, using the `icon={sd path}`, the icon will get colorized if the nam If `_nobox.bmp` is used then the button background is removed. Useful for icon themes that aim for a specific style. +A combo of both can be enabled via `_hue_nobox.bmp` suffix. + The default system icons (`icon_switch.bmp` and `icon_payload.bmp`) can be replaced with white layouts that have transparency. They can also be replaced with normal icons if the following exist: `icon_switch_custom.bmp` or/and `icon_payload_custom.bmp`