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

@@ -12,7 +12,7 @@ void gpio_init() {
GPDRC = 0;
GPDRD = (1 << 5) | (1 << 4) | (1 << 3);
GPDRE = 0;
GPDRF = (1 << 7) | (1 << 6);
GPDRF = 0xC0; // (1 << 7) | (1 << 6)
GPDRG = 0;
GPDRH = 0;
GPDRI = 0;