diff options
Diffstat (limited to 'firmware/libs-device/osccal.h')
-rw-r--r-- | firmware/libs-device/osccal.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/firmware/libs-device/osccal.h b/firmware/libs-device/osccal.h index 6f443a5..bfc5530 100644 --- a/firmware/libs-device/osccal.h +++ b/firmware/libs-device/osccal.h @@ -22,11 +22,11 @@ calibrateOscillator() from the reset hook in usbconfig.h: */ #ifndef __ASSEMBLER__ -extern void calibrateOscillator(void); -//extern void calibrateOscillatorASM(void); +//extern void calibrateOscillator(void); +extern void calibrateOscillatorASM(void); #endif -#define USB_RESET_HOOK(resetStarts) if(!resetStarts){ calibrateOscillator(); } -//#define USB_RESET_HOOK(resetStarts) if(!resetStarts){ calibrateOscillatorASM(); } +//#define USB_RESET_HOOK(resetStarts) if(!resetStarts){ calibrateOscillator(); } +#define USB_RESET_HOOK(resetStarts) if(!resetStarts){ calibrateOscillatorASM(); } /* This routine is an alternative to the continuous synchronization described |