Putting prescalar settings back in for AVR.
- Needs to be at 16 MHz for proper function
This commit is contained in:
parent
ba984fff20
commit
66624c311c
1 changed files with 6 additions and 0 deletions
6
main.c
6
main.c
|
@ -39,6 +39,12 @@
|
|||
|
||||
int main()
|
||||
{
|
||||
// AVR - Teensy Set Clock speed to 16 MHz
|
||||
#if defined(_at90usb162_) || defined(_atmega32u4_) || defined(_at90usb646_) || defined(_at90usb1286_)
|
||||
CLKPR = 0x80;
|
||||
CLKPR = 0x00;
|
||||
#endif
|
||||
|
||||
// Enable CLI
|
||||
CLI_init();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue