summaryrefslogtreecommitdiff
path: root/tmk_core/protocol/pjrc/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'tmk_core/protocol/pjrc/main.c')
-rw-r--r--tmk_core/protocol/pjrc/main.c18
1 files changed, 8 insertions, 10 deletions
diff --git a/tmk_core/protocol/pjrc/main.c b/tmk_core/protocol/pjrc/main.c
index 45eb17d4cd..d16051c5f8 100644
--- a/tmk_core/protocol/pjrc/main.c
+++ b/tmk_core/protocol/pjrc/main.c
@@ -1,17 +1,17 @@
/* Keyboard example with debug channel, for Teensy USB Development Board
* http://www.pjrc.com/teensy/usb_keyboard.html
* Copyright (c) 2008 PJRC.COM, LLC
- *
+ *
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
- *
+ *
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
- *
+ *
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
@@ -37,12 +37,9 @@
#include "host.h"
#include "pjrc.h"
+#define CPU_PRESCALE(n) (CLKPR = 0x80, CLKPR = (n))
-#define CPU_PRESCALE(n) (CLKPR = 0x80, CLKPR = (n))
-
-
-int main(void)
-{
+int main(void) {
// set for 16 MHz clock
CPU_PRESCALE(0);
@@ -52,7 +49,8 @@ int main(void)
// If the Teensy is powered without a PC connected to the USB port,
// this will wait forever.
usb_init();
- while (!usb_configured()) /* wait */ ;
+ while (!usb_configured()) /* wait */
+ ;
print_set_sendchar(sendchar);
@@ -69,6 +67,6 @@ int main(void)
}
}
- keyboard_task();
+ keyboard_task();
}
}