projects
/
pub
/
USBasp.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Removed SetSystemClockPrescaler() macro, the clock_prescale_set() avr-libc macro...
[pub/USBasp.git]
/
Demos
/
Keyboard
/
Keyboard.c
diff --git
a/Demos/Keyboard/Keyboard.c
b/Demos/Keyboard/Keyboard.c
index
92f4ae9
..
22d406d
100644
(file)
--- a/
Demos/Keyboard/Keyboard.c
+++ b/
Demos/Keyboard/Keyboard.c
@@
-77,8
+77,8
@@
int main(void)
MCUSR &= ~(1 << WDRF);
\r
wdt_disable();
\r
\r
- /* Disable
Clock D
ivision */
\r
-
SetSystemClockPrescaler(0
);
\r
+ /* Disable
clock d
ivision */
\r
+
clock_prescale_set(clock_div_1
);
\r
\r
/* Hardware Initialization */
\r
Joystick_Init();
\r