diff options
Diffstat (limited to 'Demos/CDCHost/CDCHost.c')
-rw-r--r-- | Demos/CDCHost/CDCHost.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Demos/CDCHost/CDCHost.c b/Demos/CDCHost/CDCHost.c index ac6d89ad1..1f05ecb1f 100644 --- a/Demos/CDCHost/CDCHost.c +++ b/Demos/CDCHost/CDCHost.c @@ -59,8 +59,8 @@ int main(void) MCUSR &= ~(1 << WDRF);
wdt_disable();
- /* Disable Clock Division */
- SetSystemClockPrescaler(0);
+ /* Disable clock division */
+ clock_prescale_set(clock_div_1);
/* Hardware Initialization */
SerialStream_Init(9600, false);
|