aboutsummaryrefslogtreecommitdiffstats
path: root/Demos/CDC/CDC.c
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2009-03-09 12:28:50 +0000
committerDean Camera <dean@fourwalledcubicle.com>2009-03-09 12:28:50 +0000
commit4a09da20989dfe0c41dc1272fa6dce1e11539c15 (patch)
tree9bff8cf677ebfda3ac8d2c691dcb55543f765b6f /Demos/CDC/CDC.c
parentddd223fa35720e360daa08e6964f20c2fb625c27 (diff)
parentb0d9f961acfff498b7c4f2dc4a54ad9513d09a3b (diff)
downloadlufa-4a09da20989dfe0c41dc1272fa6dce1e11539c15.tar.gz
lufa-4a09da20989dfe0c41dc1272fa6dce1e11539c15.tar.bz2
lufa-4a09da20989dfe0c41dc1272fa6dce1e11539c15.zip
Removed SetSystemClockPrescaler() macro, the clock_prescale_set() avr-libc macro has been corrected in recent avr-libc versions
Diffstat (limited to 'Demos/CDC/CDC.c')
-rw-r--r--Demos/CDC/CDC.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Demos/CDC/CDC.c b/Demos/CDC/CDC.c
index 6e232a48b..eeae625cf 100644
--- a/Demos/CDC/CDC.c
+++ b/Demos/CDC/CDC.c
@@ -87,8 +87,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 */
Joystick_Init();