Increase timeouts

This commit is contained in:
Jeremy Soller
2019-12-30 11:46:21 -07:00
parent 209834bee1
commit 0e59958dc0
4 changed files with 5 additions and 5 deletions

View File

@ -10,7 +10,7 @@ void kbc_init(void) {
*(KBC.control) = 0;
}
#define KBC_TIMEOUT 1000
#define KBC_TIMEOUT 10000
// System flag
static bool kbc_system = false;

View File

@ -9,7 +9,7 @@ void pmc_init(void) {
*(PMC_2.control) = 0x41;
}
#define PMC_TIMEOUT 1000
#define PMC_TIMEOUT 10000
enum PmcState {
PMC_STATE_DEFAULT,