aboutsummaryrefslogtreecommitdiff
path: root/tmk_core/protocol/bluefruit/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'tmk_core/protocol/bluefruit/main.c')
-rw-r--r--tmk_core/protocol/bluefruit/main.c15
1 files changed, 8 insertions, 7 deletions
diff --git a/tmk_core/protocol/bluefruit/main.c b/tmk_core/protocol/bluefruit/main.c
index 0dbb637e2..8a6386b4e 100644
--- a/tmk_core/protocol/bluefruit/main.c
+++ b/tmk_core/protocol/bluefruit/main.c
@@ -42,13 +42,13 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
42 42
43 43
44int main(void) 44int main(void)
45{ 45{
46 46
47 CPU_PRESCALE(0); 47 CPU_PRESCALE(0);
48 48
49 // DDRD = _BV(PD5); 49 // DDRD = _BV(PD5);
50 // DDRB = _BV(PB0); 50 // DDRB = _BV(PB0);
51 51
52 // PORTD = _BV(PD5); 52 // PORTD = _BV(PD5);
53 // PORTB = _BV(PB0); 53 // PORTB = _BV(PB0);
54 54
@@ -59,22 +59,23 @@ int main(void)
59 // while (!usb_configured()) /* wait */ 59 // while (!usb_configured()) /* wait */
60 60
61 61
62 keyboard_setup();
62 63
63 dprintf("Initializing keyboard...\n"); 64 dprintf("Initializing keyboard...\n");
64 keyboard_init(); 65 keyboard_init();
65 66
66 // This implementation is pretty simplistic... if the USB connection 67 // This implementation is pretty simplistic... if the USB connection
67 // is not configured, choose the Bluefruit, otherwise use USB 68 // is not configured, choose the Bluefruit, otherwise use USB
68 // Definitely would prefer to have this driven by an input pin and make 69 // Definitely would prefer to have this driven by an input pin and make
69 // it switch dynamically - BCG 70 // it switch dynamically - BCG
70 // if (!usb_configured()) { 71 // if (!usb_configured()) {
71 72
72 // // Send power to Bluefruit... Adafruit says it takes 27 mA, I think 73 // // Send power to Bluefruit... Adafruit says it takes 27 mA, I think
73 // // the pins should provide 40 mA, but just in case I switch the 74 // // the pins should provide 40 mA, but just in case I switch the
74 // // Bluefruit using a transistor - BCG 75 // // Bluefruit using a transistor - BCG
75 // DDRB = _BV(PB6); 76 // DDRB = _BV(PB6);
76 // PORTB |= _BV(PB6); 77 // PORTB |= _BV(PB6);
77 78
78 dprintf("Setting host driver to bluefruit...\n"); 79 dprintf("Setting host driver to bluefruit...\n");
79 host_set_driver(bluefruit_driver()); 80 host_set_driver(bluefruit_driver());
80 81
@@ -131,7 +132,7 @@ int main(void)
131// usb_remote_wakeup(); 132// usb_remote_wakeup();
132// } 133// }
133// } 134// }
134// keyboard_task(); 135// keyboard_task();
135// } 136// }
136// } 137// }
137 138