Fix errors and deny errors

This commit is contained in:
Jeremy Soller
2019-11-10 18:49:21 -07:00
parent eb1a6a48bc
commit 8f69ece191
6 changed files with 15 additions and 7 deletions

View File

@ -272,9 +272,9 @@ void power_button() {
last = new;
}
void touchpad_event(struct Ps2 * ps2) {
//TODO
}
// void touchpad_event(struct Ps2 * ps2) {
// //TODO
// }
struct Gpio __code LED_SSD_N = GPIO(G, 6);
struct Gpio __code LED_AIRPLANE_N = GPIO(G, 6);
@ -317,7 +317,7 @@ void main(void) {
ac_adapter();
power_button();
kbscan_event();
touchpad_event(&PS2_3);
//TODO: touchpad_event(&PS2_3);
kbc_event(&KBC);
pmc_event(&PMC_1);
}