diff options
Diffstat (limited to 'tmk_core/protocol/lufa/lufa.c')
| -rw-r--r-- | tmk_core/protocol/lufa/lufa.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tmk_core/protocol/lufa/lufa.c b/tmk_core/protocol/lufa/lufa.c index b70b52bf4..9ca55dbc9 100644 --- a/tmk_core/protocol/lufa/lufa.c +++ b/tmk_core/protocol/lufa/lufa.c | |||
| @@ -838,7 +838,10 @@ static void setup_mcu(void) | |||
| 838 | wdt_disable(); | 838 | wdt_disable(); |
| 839 | 839 | ||
| 840 | /* Disable clock division */ | 840 | /* Disable clock division */ |
| 841 | clock_prescale_set(clock_div_1); | 841 | // clock_prescale_set(clock_div_1); |
| 842 | |||
| 843 | CLKPR = (1 << CLKPCE); | ||
| 844 | CLKPR = (0 << CLKPS3) | (0 << CLKPS2) | (0 << CLKPS1) | (0 << CLKPS0); | ||
| 842 | } | 845 | } |
| 843 | 846 | ||
| 844 | static void setup_usb(void) | 847 | static void setup_usb(void) |
