Disable JTAG function for hid_liber to use PORTF.

master
tmk 12 years ago
parent 1a4ae0fc36
commit 98052b8afd

@ -137,6 +137,10 @@ uint8_t matrix_cols(void)
void matrix_init(void)
{
// To use PORTF disable JTAG with writing JTD bit twice within four cycles.
MCUCR |= (1<<JTD);
MCUCR |= (1<<JTD);
// initialize row and col
setup_io_pins();
setup_leds();

Loading…
Cancel
Save