Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

nn_ccr: Add CCRSysCaffeineBootCheckAbort; nsysccr: fix quick start menu value in CCRCDCDrcStateEnum #372

Merged
merged 3 commits into from
Jun 9, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions include/nn/ccr/sys_caffeine.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ CCRSysCaffeineGetAppLaunchParam(CCRAppLaunchParam * data);
uint32_t
CCRSysCaffeineBootCheck();

void
CCRSysCaffeineBootCheckAbort();

/**
* @return 0 on success, -1 on error
*/
Expand Down
16 changes: 8 additions & 8 deletions include/nsysccr/cdc.h
Original file line number Diff line number Diff line change
Expand Up @@ -44,14 +44,14 @@ typedef enum CCRCDCWpsStatusEnum

typedef enum CCRCDCDrcStateEnum
{
CCR_CDC_DRC_STATE_ACTIVE = 0,
CCR_CDC_DRC_STATE_UNK1 = 1,
CCR_CDC_DRC_STATE_UPDATE = 2,
CCR_CDC_DRC_STATE_UNK3 = 3,
CCR_CDC_DRC_STATE_BACKGROUND = 4,
CCR_CDC_DRC_STATE_DISCONNECT = 5,
CCR_CDC_DRC_STATE_UNK12 = 12,
CCR_CDC_DRC_STATE_QUICK_START_MENU = 15,
CCR_CDC_DRC_STATE_ACTIVE = 0,
CCR_CDC_DRC_STATE_UNK1 = 1,
CCR_CDC_DRC_STATE_UPDATE = 2,
CCR_CDC_DRC_STATE_UNK3 = 3,
CCR_CDC_DRC_STATE_BACKGROUND = 4,
CCR_CDC_DRC_STATE_DISCONNECT = 5,
CCR_CDC_DRC_STATE_IN_QUICK_START_MENU = 12,
CCR_CDC_DRC_STATE_UNK3_15 = 15,
Maschell marked this conversation as resolved.
Show resolved Hide resolved
} CCRCDCDrcStateEnum;

typedef enum CCRCDCWakeStateEnum
Expand Down
Loading