Skip to content

Commit

Permalink
[Keyboard] Missed a JTAG disable (#6667)
Browse files Browse the repository at this point in the history
  • Loading branch information
fauxpark authored and drashna committed Sep 4, 2019
1 parent 7372ce6 commit df5b2d2
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions keyboards/atomic/atomic.c
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,9 @@ void matrix_init_kb(void) {
// put your keyboard start-up code here
// runs once when the firmware starts up

MCUCR |= (1<<JTD);
MCUCR |= (1<<JTD);

// Turn status LED on
DDRE |= (1<<6);
PORTE |= (1<<6);

matrix_init_user();
}
}

0 comments on commit df5b2d2

Please sign in to comment.