]> git.donarmstrong.com Git - qmk_firmware.git/commitdiff
[Keyboard] Missed a JTAG disable (#6667)
authorfauxpark <fauxpark@gmail.com>
Wed, 4 Sep 2019 03:26:01 +0000 (13:26 +1000)
committerDrashna Jaelre <drashna@live.com>
Wed, 4 Sep 2019 03:26:01 +0000 (20:26 -0700)
keyboards/atomic/atomic.c

index 6f393315eebec69baaf90068c67d4d1fd82ed017..eba5ed61f680178144c8e90a4512561060f2583a 100644 (file)
@@ -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();
-}
\ No newline at end of file
+}