annotate main.c @ 72:4c2712f25157

Main USB timer now working, basic Teensy 3 support working. - No scan modules are functional yet, but all of the API code is now "hardware support" complete
author Jacob Alexander <triplehaata@gmail.com>
date Wed, 30 Jan 2013 19:20:42 -0500
parents 23600aaa5e15
children 3764d78996a8
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
67
9ad7c1a28661 Preparing for Teensy 3 (ARM) integration, abstracting code hierarchy
Jacob Alexander <triplehaata@gmail.com>
parents: 40
diff changeset
1 /* Copyright (C) 2011-2013 by Jacob Alexander
0
43dfb6e4e697 Initial Commit
Jacob Alexander <triplehaata@gmail.com>
parents:
diff changeset
2 *
43dfb6e4e697 Initial Commit
Jacob Alexander <triplehaata@gmail.com>
parents:
diff changeset
3 * Permission is hereby granted, free of charge, to any person obtaining a copy
43dfb6e4e697 Initial Commit
Jacob Alexander <triplehaata@gmail.com>
parents:
diff changeset
4 * of this software and associated documentation files (the "Software"), to deal
43dfb6e4e697 Initial Commit
Jacob Alexander <triplehaata@gmail.com>
parents:
diff changeset
5 * in the Software without restriction, including without limitation the rights
43dfb6e4e697 Initial Commit
Jacob Alexander <triplehaata@gmail.com>
parents:
diff changeset
6 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
43dfb6e4e697 Initial Commit
Jacob Alexander <triplehaata@gmail.com>
parents:
diff changeset
7 * copies of the Software, and to permit persons to whom the Software is
43dfb6e4e697 Initial Commit
Jacob Alexander <triplehaata@gmail.com>
parents:
diff changeset
8 * furnished to do so, subject to the following conditions:
43dfb6e4e697 Initial Commit
Jacob Alexander <triplehaata@gmail.com>
parents:
diff changeset
9 *
43dfb6e4e697 Initial Commit
Jacob Alexander <triplehaata@gmail.com>
parents:
diff changeset
10 * The above copyright notice and this permission notice shall be included in
43dfb6e4e697 Initial Commit
Jacob Alexander <triplehaata@gmail.com>
parents:
diff changeset
11 * all copies or substantial portions of the Software.
43dfb6e4e697 Initial Commit
Jacob Alexander <triplehaata@gmail.com>
parents:
diff changeset
12 *
43dfb6e4e697 Initial Commit
Jacob Alexander <triplehaata@gmail.com>
parents:
diff changeset
13 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
43dfb6e4e697 Initial Commit
Jacob Alexander <triplehaata@gmail.com>
parents:
diff changeset
14 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
43dfb6e4e697 Initial Commit
Jacob Alexander <triplehaata@gmail.com>
parents:
diff changeset
15 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
43dfb6e4e697 Initial Commit
Jacob Alexander <triplehaata@gmail.com>
parents:
diff changeset
16 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
43dfb6e4e697 Initial Commit
Jacob Alexander <triplehaata@gmail.com>
parents:
diff changeset
17 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
43dfb6e4e697 Initial Commit
Jacob Alexander <triplehaata@gmail.com>
parents:
diff changeset
18 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
43dfb6e4e697 Initial Commit
Jacob Alexander <triplehaata@gmail.com>
parents:
diff changeset
19 * THE SOFTWARE.
43dfb6e4e697 Initial Commit
Jacob Alexander <triplehaata@gmail.com>
parents:
diff changeset
20 */
43dfb6e4e697 Initial Commit
Jacob Alexander <triplehaata@gmail.com>
parents:
diff changeset
21
24
2d65da455ef3 Formalizing code module structure and inheritance (Large Commit)
Jacob Alexander <triplehaata@gmail.com>
parents: 18
diff changeset
22 // ----- Includes -----
2d65da455ef3 Formalizing code module structure and inheritance (Large Commit)
Jacob Alexander <triplehaata@gmail.com>
parents: 18
diff changeset
23
67
9ad7c1a28661 Preparing for Teensy 3 (ARM) integration, abstracting code hierarchy
Jacob Alexander <triplehaata@gmail.com>
parents: 40
diff changeset
24 // Compiler Includes
9ad7c1a28661 Preparing for Teensy 3 (ARM) integration, abstracting code hierarchy
Jacob Alexander <triplehaata@gmail.com>
parents: 40
diff changeset
25 #include <Lib/MainLib.h>
24
2d65da455ef3 Formalizing code module structure and inheritance (Large Commit)
Jacob Alexander <triplehaata@gmail.com>
parents: 18
diff changeset
26
2d65da455ef3 Formalizing code module structure and inheritance (Large Commit)
Jacob Alexander <triplehaata@gmail.com>
parents: 18
diff changeset
27 // Project Includes
25
c2ef3daf39e1 Cleaning up main.c
Jacob Alexander <haata@users.sf.net>
parents: 24
diff changeset
28 #include <macro.h>
c2ef3daf39e1 Cleaning up main.c
Jacob Alexander <haata@users.sf.net>
parents: 24
diff changeset
29 #include <scan_loop.h>
c2ef3daf39e1 Cleaning up main.c
Jacob Alexander <haata@users.sf.net>
parents: 24
diff changeset
30 #include <usb_com.h>
2
c3b2eaa4a89d Significant progress made.
Jacob Alexander <triplehaata@gmail.com>
parents: 1
diff changeset
31
25
c2ef3daf39e1 Cleaning up main.c
Jacob Alexander <haata@users.sf.net>
parents: 24
diff changeset
32 #include <led.h>
c2ef3daf39e1 Cleaning up main.c
Jacob Alexander <haata@users.sf.net>
parents: 24
diff changeset
33 #include <print.h>
0
43dfb6e4e697 Initial Commit
Jacob Alexander <triplehaata@gmail.com>
parents:
diff changeset
34
6
9df636be6feb Keyboard functionally working with very very good debouncing.
Jacob Alexander <triplehaata@gmail.com>
parents: 5
diff changeset
35
9df636be6feb Keyboard functionally working with very very good debouncing.
Jacob Alexander <triplehaata@gmail.com>
parents: 5
diff changeset
36
24
2d65da455ef3 Formalizing code module structure and inheritance (Large Commit)
Jacob Alexander <triplehaata@gmail.com>
parents: 18
diff changeset
37 // ----- Defines -----
6
9df636be6feb Keyboard functionally working with very very good debouncing.
Jacob Alexander <triplehaata@gmail.com>
parents: 5
diff changeset
38
9df636be6feb Keyboard functionally working with very very good debouncing.
Jacob Alexander <triplehaata@gmail.com>
parents: 5
diff changeset
39 // Verified Keypress Defines
9df636be6feb Keyboard functionally working with very very good debouncing.
Jacob Alexander <triplehaata@gmail.com>
parents: 5
diff changeset
40 #define USB_TRANSFER_DIVIDER 10 // 1024 == 1 Send of keypresses per second, 1 == 1 Send of keypresses per ~1 millisecond
1
0f88e9aad77a Initial macro line filler design for multiple keyboards matrices.
Jacob Alexander <triplehaata@gmail.com>
parents: 0
diff changeset
41
24
2d65da455ef3 Formalizing code module structure and inheritance (Large Commit)
Jacob Alexander <triplehaata@gmail.com>
parents: 18
diff changeset
42
2d65da455ef3 Formalizing code module structure and inheritance (Large Commit)
Jacob Alexander <triplehaata@gmail.com>
parents: 18
diff changeset
43
2d65da455ef3 Formalizing code module structure and inheritance (Large Commit)
Jacob Alexander <triplehaata@gmail.com>
parents: 18
diff changeset
44 // ----- Macros -----
67
9ad7c1a28661 Preparing for Teensy 3 (ARM) integration, abstracting code hierarchy
Jacob Alexander <triplehaata@gmail.com>
parents: 40
diff changeset
45 #if defined(_at90usb162_) || defined(_atmega32u4_) || defined(_at90usb646_) || defined(_at90usb1286_)
24
2d65da455ef3 Formalizing code module structure and inheritance (Large Commit)
Jacob Alexander <triplehaata@gmail.com>
parents: 18
diff changeset
46 #define CPU_PRESCALE(n) (CLKPR = 0x80, CLKPR = (n))
67
9ad7c1a28661 Preparing for Teensy 3 (ARM) integration, abstracting code hierarchy
Jacob Alexander <triplehaata@gmail.com>
parents: 40
diff changeset
47 #endif
2
c3b2eaa4a89d Significant progress made.
Jacob Alexander <triplehaata@gmail.com>
parents: 1
diff changeset
48
c3b2eaa4a89d Significant progress made.
Jacob Alexander <triplehaata@gmail.com>
parents: 1
diff changeset
49
c3b2eaa4a89d Significant progress made.
Jacob Alexander <triplehaata@gmail.com>
parents: 1
diff changeset
50
24
2d65da455ef3 Formalizing code module structure and inheritance (Large Commit)
Jacob Alexander <triplehaata@gmail.com>
parents: 18
diff changeset
51 // ----- Variables -----
2d65da455ef3 Formalizing code module structure and inheritance (Large Commit)
Jacob Alexander <triplehaata@gmail.com>
parents: 18
diff changeset
52
2d65da455ef3 Formalizing code module structure and inheritance (Large Commit)
Jacob Alexander <triplehaata@gmail.com>
parents: 18
diff changeset
53 // Timer Interrupt for flagging a send of the sampled key detection data to the USB host
2d65da455ef3 Formalizing code module structure and inheritance (Large Commit)
Jacob Alexander <triplehaata@gmail.com>
parents: 18
diff changeset
54 uint16_t sendKeypressCounter = 0;
2d65da455ef3 Formalizing code module structure and inheritance (Large Commit)
Jacob Alexander <triplehaata@gmail.com>
parents: 18
diff changeset
55
2d65da455ef3 Formalizing code module structure and inheritance (Large Commit)
Jacob Alexander <triplehaata@gmail.com>
parents: 18
diff changeset
56 // Flag generated by the timer interrupt
2d65da455ef3 Formalizing code module structure and inheritance (Large Commit)
Jacob Alexander <triplehaata@gmail.com>
parents: 18
diff changeset
57 volatile uint8_t sendKeypresses = 0;
2d65da455ef3 Formalizing code module structure and inheritance (Large Commit)
Jacob Alexander <triplehaata@gmail.com>
parents: 18
diff changeset
58
2d65da455ef3 Formalizing code module structure and inheritance (Large Commit)
Jacob Alexander <triplehaata@gmail.com>
parents: 18
diff changeset
59
2d65da455ef3 Formalizing code module structure and inheritance (Large Commit)
Jacob Alexander <triplehaata@gmail.com>
parents: 18
diff changeset
60
2d65da455ef3 Formalizing code module structure and inheritance (Large Commit)
Jacob Alexander <triplehaata@gmail.com>
parents: 18
diff changeset
61 // ----- Functions -----
2d65da455ef3 Formalizing code module structure and inheritance (Large Commit)
Jacob Alexander <triplehaata@gmail.com>
parents: 18
diff changeset
62
2d65da455ef3 Formalizing code module structure and inheritance (Large Commit)
Jacob Alexander <triplehaata@gmail.com>
parents: 18
diff changeset
63 // Initial Pin Setup, make sure they are sane
6
9df636be6feb Keyboard functionally working with very very good debouncing.
Jacob Alexander <triplehaata@gmail.com>
parents: 5
diff changeset
64 inline void pinSetup(void)
2
c3b2eaa4a89d Significant progress made.
Jacob Alexander <triplehaata@gmail.com>
parents: 1
diff changeset
65 {
27
8b8cad3db8db Basic matrix module for the hall effect keypad now working.
Jacob Alexander <triplehaata@gmail.com>
parents: 26
diff changeset
66
67
9ad7c1a28661 Preparing for Teensy 3 (ARM) integration, abstracting code hierarchy
Jacob Alexander <triplehaata@gmail.com>
parents: 40
diff changeset
67 // AVR
9ad7c1a28661 Preparing for Teensy 3 (ARM) integration, abstracting code hierarchy
Jacob Alexander <triplehaata@gmail.com>
parents: 40
diff changeset
68 #if defined(_at90usb162_) || defined(_atmega32u4_) || defined(_at90usb646_) || defined(_at90usb1286_)
9ad7c1a28661 Preparing for Teensy 3 (ARM) integration, abstracting code hierarchy
Jacob Alexander <triplehaata@gmail.com>
parents: 40
diff changeset
69
2
c3b2eaa4a89d Significant progress made.
Jacob Alexander <triplehaata@gmail.com>
parents: 1
diff changeset
70 // For each pin, 0=input, 1=output
27
8b8cad3db8db Basic matrix module for the hall effect keypad now working.
Jacob Alexander <triplehaata@gmail.com>
parents: 26
diff changeset
71 #if defined(__AVR_AT90USB1286__)
2
c3b2eaa4a89d Significant progress made.
Jacob Alexander <triplehaata@gmail.com>
parents: 1
diff changeset
72 DDRA = 0x00;
27
8b8cad3db8db Basic matrix module for the hall effect keypad now working.
Jacob Alexander <triplehaata@gmail.com>
parents: 26
diff changeset
73 #endif
5
a8be29294c26 Updating for the latest pinout
Jacob Alexander <triplehaata@gmail.com>
parents: 4
diff changeset
74 DDRB = 0x00;
a8be29294c26 Updating for the latest pinout
Jacob Alexander <triplehaata@gmail.com>
parents: 4
diff changeset
75 DDRC = 0x00;
24
2d65da455ef3 Formalizing code module structure and inheritance (Large Commit)
Jacob Alexander <triplehaata@gmail.com>
parents: 18
diff changeset
76 DDRD = 0x00;
16
f74b797ac060 Parts of the upcoming rewrite
Jacob Alexander <triplehaata@gmail.com>
parents: 15
diff changeset
77 DDRE = 0x00;
5
a8be29294c26 Updating for the latest pinout
Jacob Alexander <triplehaata@gmail.com>
parents: 4
diff changeset
78 DDRF = 0x00;
2
c3b2eaa4a89d Significant progress made.
Jacob Alexander <triplehaata@gmail.com>
parents: 1
diff changeset
79
6
9df636be6feb Keyboard functionally working with very very good debouncing.
Jacob Alexander <triplehaata@gmail.com>
parents: 5
diff changeset
80
2
c3b2eaa4a89d Significant progress made.
Jacob Alexander <triplehaata@gmail.com>
parents: 1
diff changeset
81 // Setting pins to either high or pull-up resistor
27
8b8cad3db8db Basic matrix module for the hall effect keypad now working.
Jacob Alexander <triplehaata@gmail.com>
parents: 26
diff changeset
82 #if defined(__AVR_AT90USB1286__)
16
f74b797ac060 Parts of the upcoming rewrite
Jacob Alexander <triplehaata@gmail.com>
parents: 15
diff changeset
83 PORTA = 0x00;
27
8b8cad3db8db Basic matrix module for the hall effect keypad now working.
Jacob Alexander <triplehaata@gmail.com>
parents: 26
diff changeset
84 #endif
16
f74b797ac060 Parts of the upcoming rewrite
Jacob Alexander <triplehaata@gmail.com>
parents: 15
diff changeset
85 PORTB = 0x00;
f74b797ac060 Parts of the upcoming rewrite
Jacob Alexander <triplehaata@gmail.com>
parents: 15
diff changeset
86 PORTC = 0x00;
24
2d65da455ef3 Formalizing code module structure and inheritance (Large Commit)
Jacob Alexander <triplehaata@gmail.com>
parents: 18
diff changeset
87 PORTD = 0x00;
16
f74b797ac060 Parts of the upcoming rewrite
Jacob Alexander <triplehaata@gmail.com>
parents: 15
diff changeset
88 PORTE = 0x00;
f74b797ac060 Parts of the upcoming rewrite
Jacob Alexander <triplehaata@gmail.com>
parents: 15
diff changeset
89 PORTF = 0x00;
67
9ad7c1a28661 Preparing for Teensy 3 (ARM) integration, abstracting code hierarchy
Jacob Alexander <triplehaata@gmail.com>
parents: 40
diff changeset
90
9ad7c1a28661 Preparing for Teensy 3 (ARM) integration, abstracting code hierarchy
Jacob Alexander <triplehaata@gmail.com>
parents: 40
diff changeset
91 // ARM
9ad7c1a28661 Preparing for Teensy 3 (ARM) integration, abstracting code hierarchy
Jacob Alexander <triplehaata@gmail.com>
parents: 40
diff changeset
92 #elif defined(_mk20dx128_)
72
4c2712f25157 Main USB timer now working, basic Teensy 3 support working.
Jacob Alexander <triplehaata@gmail.com>
parents: 70
diff changeset
93 // TODO - Should be cleared, but not that necessary due to the pin layout
67
9ad7c1a28661 Preparing for Teensy 3 (ARM) integration, abstracting code hierarchy
Jacob Alexander <triplehaata@gmail.com>
parents: 40
diff changeset
94 #endif
2
c3b2eaa4a89d Significant progress made.
Jacob Alexander <triplehaata@gmail.com>
parents: 1
diff changeset
95 }
7
18e424630cbd Adding basic per line keypad detection
Jacob Alexander <haata@users.sf.net>
parents: 6
diff changeset
96
67
9ad7c1a28661 Preparing for Teensy 3 (ARM) integration, abstracting code hierarchy
Jacob Alexander <triplehaata@gmail.com>
parents: 40
diff changeset
97
9ad7c1a28661 Preparing for Teensy 3 (ARM) integration, abstracting code hierarchy
Jacob Alexander <triplehaata@gmail.com>
parents: 40
diff changeset
98 inline void usbTimerSetup(void)
9ad7c1a28661 Preparing for Teensy 3 (ARM) integration, abstracting code hierarchy
Jacob Alexander <triplehaata@gmail.com>
parents: 40
diff changeset
99 {
9ad7c1a28661 Preparing for Teensy 3 (ARM) integration, abstracting code hierarchy
Jacob Alexander <triplehaata@gmail.com>
parents: 40
diff changeset
100 // AVR
9ad7c1a28661 Preparing for Teensy 3 (ARM) integration, abstracting code hierarchy
Jacob Alexander <triplehaata@gmail.com>
parents: 40
diff changeset
101 #if defined(_at90usb162_) || defined(_atmega32u4_) || defined(_at90usb646_) || defined(_at90usb1286_)
9ad7c1a28661 Preparing for Teensy 3 (ARM) integration, abstracting code hierarchy
Jacob Alexander <triplehaata@gmail.com>
parents: 40
diff changeset
102
9ad7c1a28661 Preparing for Teensy 3 (ARM) integration, abstracting code hierarchy
Jacob Alexander <triplehaata@gmail.com>
parents: 40
diff changeset
103 // Setup with 16 MHz clock
9ad7c1a28661 Preparing for Teensy 3 (ARM) integration, abstracting code hierarchy
Jacob Alexander <triplehaata@gmail.com>
parents: 40
diff changeset
104 CPU_PRESCALE( 0 );
9ad7c1a28661 Preparing for Teensy 3 (ARM) integration, abstracting code hierarchy
Jacob Alexander <triplehaata@gmail.com>
parents: 40
diff changeset
105
9ad7c1a28661 Preparing for Teensy 3 (ARM) integration, abstracting code hierarchy
Jacob Alexander <triplehaata@gmail.com>
parents: 40
diff changeset
106 // Setup ISR Timer for flagging a kepress send to USB
9ad7c1a28661 Preparing for Teensy 3 (ARM) integration, abstracting code hierarchy
Jacob Alexander <triplehaata@gmail.com>
parents: 40
diff changeset
107 // Set to 256 * 1024 (8 bit timer with Clock/1024 prescalar) timer
9ad7c1a28661 Preparing for Teensy 3 (ARM) integration, abstracting code hierarchy
Jacob Alexander <triplehaata@gmail.com>
parents: 40
diff changeset
108 TCCR0A = 0x00;
9ad7c1a28661 Preparing for Teensy 3 (ARM) integration, abstracting code hierarchy
Jacob Alexander <triplehaata@gmail.com>
parents: 40
diff changeset
109 TCCR0B = 0x03;
9ad7c1a28661 Preparing for Teensy 3 (ARM) integration, abstracting code hierarchy
Jacob Alexander <triplehaata@gmail.com>
parents: 40
diff changeset
110 TIMSK0 = (1 << TOIE0);
9ad7c1a28661 Preparing for Teensy 3 (ARM) integration, abstracting code hierarchy
Jacob Alexander <triplehaata@gmail.com>
parents: 40
diff changeset
111
9ad7c1a28661 Preparing for Teensy 3 (ARM) integration, abstracting code hierarchy
Jacob Alexander <triplehaata@gmail.com>
parents: 40
diff changeset
112 // ARM
9ad7c1a28661 Preparing for Teensy 3 (ARM) integration, abstracting code hierarchy
Jacob Alexander <triplehaata@gmail.com>
parents: 40
diff changeset
113 #elif defined(_mk20dx128_)
70
23600aaa5e15 Adding initial Teensy 3 support, compiles, but not fully functional yet.
Jacob Alexander <triplehaata@gmail.com>
parents: 67
diff changeset
114 // 48 MHz clock by default
23600aaa5e15 Adding initial Teensy 3 support, compiles, but not fully functional yet.
Jacob Alexander <triplehaata@gmail.com>
parents: 67
diff changeset
115
72
4c2712f25157 Main USB timer now working, basic Teensy 3 support working.
Jacob Alexander <triplehaata@gmail.com>
parents: 70
diff changeset
116 // System Clock Gating Register Disable
4c2712f25157 Main USB timer now working, basic Teensy 3 support working.
Jacob Alexander <triplehaata@gmail.com>
parents: 70
diff changeset
117 SIM_SCGC6 |= SIM_SCGC6_PIT;
4c2712f25157 Main USB timer now working, basic Teensy 3 support working.
Jacob Alexander <triplehaata@gmail.com>
parents: 70
diff changeset
118
70
23600aaa5e15 Adding initial Teensy 3 support, compiles, but not fully functional yet.
Jacob Alexander <triplehaata@gmail.com>
parents: 67
diff changeset
119 // Enable Timers
23600aaa5e15 Adding initial Teensy 3 support, compiles, but not fully functional yet.
Jacob Alexander <triplehaata@gmail.com>
parents: 67
diff changeset
120 PIT_MCR = 0x00;
23600aaa5e15 Adding initial Teensy 3 support, compiles, but not fully functional yet.
Jacob Alexander <triplehaata@gmail.com>
parents: 67
diff changeset
121
23600aaa5e15 Adding initial Teensy 3 support, compiles, but not fully functional yet.
Jacob Alexander <triplehaata@gmail.com>
parents: 67
diff changeset
122 // Setup ISR Timer for flagging a kepress send to USB
23600aaa5e15 Adding initial Teensy 3 support, compiles, but not fully functional yet.
Jacob Alexander <triplehaata@gmail.com>
parents: 67
diff changeset
123 // 1 ms / (1 / 48 MHz) - 1 = 47999 cycles -> 0xBB7F
23600aaa5e15 Adding initial Teensy 3 support, compiles, but not fully functional yet.
Jacob Alexander <triplehaata@gmail.com>
parents: 67
diff changeset
124 PIT_LDVAL0 = 0x0000BB7F;
23600aaa5e15 Adding initial Teensy 3 support, compiles, but not fully functional yet.
Jacob Alexander <triplehaata@gmail.com>
parents: 67
diff changeset
125 PIT_TCTRL0 = 0x3; // Enable Timer 0 interrupts, and Enable Timer 0
72
4c2712f25157 Main USB timer now working, basic Teensy 3 support working.
Jacob Alexander <triplehaata@gmail.com>
parents: 70
diff changeset
126
4c2712f25157 Main USB timer now working, basic Teensy 3 support working.
Jacob Alexander <triplehaata@gmail.com>
parents: 70
diff changeset
127 // Insert the required vector for Timer 0
4c2712f25157 Main USB timer now working, basic Teensy 3 support working.
Jacob Alexander <triplehaata@gmail.com>
parents: 70
diff changeset
128 NVIC_ENABLE_IRQ( IRQ_PIT_CH0 );
67
9ad7c1a28661 Preparing for Teensy 3 (ARM) integration, abstracting code hierarchy
Jacob Alexander <triplehaata@gmail.com>
parents: 40
diff changeset
129 #endif
9ad7c1a28661 Preparing for Teensy 3 (ARM) integration, abstracting code hierarchy
Jacob Alexander <triplehaata@gmail.com>
parents: 40
diff changeset
130 }
9ad7c1a28661 Preparing for Teensy 3 (ARM) integration, abstracting code hierarchy
Jacob Alexander <triplehaata@gmail.com>
parents: 40
diff changeset
131
9ad7c1a28661 Preparing for Teensy 3 (ARM) integration, abstracting code hierarchy
Jacob Alexander <triplehaata@gmail.com>
parents: 40
diff changeset
132
24
2d65da455ef3 Formalizing code module structure and inheritance (Large Commit)
Jacob Alexander <triplehaata@gmail.com>
parents: 18
diff changeset
133 int main(void)
0
43dfb6e4e697 Initial Commit
Jacob Alexander <triplehaata@gmail.com>
parents:
diff changeset
134 {
43dfb6e4e697 Initial Commit
Jacob Alexander <triplehaata@gmail.com>
parents:
diff changeset
135 // Configuring Pins
2
c3b2eaa4a89d Significant progress made.
Jacob Alexander <triplehaata@gmail.com>
parents: 1
diff changeset
136 pinSetup();
25
c2ef3daf39e1 Cleaning up main.c
Jacob Alexander <haata@users.sf.net>
parents: 24
diff changeset
137 init_errorLED();
0
43dfb6e4e697 Initial Commit
Jacob Alexander <triplehaata@gmail.com>
parents:
diff changeset
138
24
2d65da455ef3 Formalizing code module structure and inheritance (Large Commit)
Jacob Alexander <triplehaata@gmail.com>
parents: 18
diff changeset
139 // Setup USB Module
2d65da455ef3 Formalizing code module structure and inheritance (Large Commit)
Jacob Alexander <triplehaata@gmail.com>
parents: 18
diff changeset
140 usb_setup();
0
43dfb6e4e697 Initial Commit
Jacob Alexander <triplehaata@gmail.com>
parents:
diff changeset
141
6
9df636be6feb Keyboard functionally working with very very good debouncing.
Jacob Alexander <triplehaata@gmail.com>
parents: 5
diff changeset
142 // Setup ISR Timer for flagging a kepress send to USB
67
9ad7c1a28661 Preparing for Teensy 3 (ARM) integration, abstracting code hierarchy
Jacob Alexander <triplehaata@gmail.com>
parents: 40
diff changeset
143 usbTimerSetup();
4
b97797936037 Redefining pinouts and adding key sending code.
Jacob Alexander <triplehaata@gmail.com>
parents: 3
diff changeset
144
0
43dfb6e4e697 Initial Commit
Jacob Alexander <triplehaata@gmail.com>
parents:
diff changeset
145 // Main Detection Loop
72
4c2712f25157 Main USB timer now working, basic Teensy 3 support working.
Jacob Alexander <triplehaata@gmail.com>
parents: 70
diff changeset
146 uint8_t ledTimer = F_CPU / 1000000; // Enable LED for a short time
25
c2ef3daf39e1 Cleaning up main.c
Jacob Alexander <haata@users.sf.net>
parents: 24
diff changeset
147 while ( 1 )
c2ef3daf39e1 Cleaning up main.c
Jacob Alexander <haata@users.sf.net>
parents: 24
diff changeset
148 {
26
c06a5ebb4fca Tandy 1000 Converter, basicly works, except for packet mismatches
Jacob Alexander <triplehaata@gmail.com>
parents: 25
diff changeset
149 // Setup the scanning module
c06a5ebb4fca Tandy 1000 Converter, basicly works, except for packet mismatches
Jacob Alexander <triplehaata@gmail.com>
parents: 25
diff changeset
150 scan_setup();
c06a5ebb4fca Tandy 1000 Converter, basicly works, except for packet mismatches
Jacob Alexander <triplehaata@gmail.com>
parents: 25
diff changeset
151
25
c2ef3daf39e1 Cleaning up main.c
Jacob Alexander <haata@users.sf.net>
parents: 24
diff changeset
152 while ( 1 )
c2ef3daf39e1 Cleaning up main.c
Jacob Alexander <haata@users.sf.net>
parents: 24
diff changeset
153 {
c2ef3daf39e1 Cleaning up main.c
Jacob Alexander <haata@users.sf.net>
parents: 24
diff changeset
154 // Acquire Key Indices
26
c06a5ebb4fca Tandy 1000 Converter, basicly works, except for packet mismatches
Jacob Alexander <triplehaata@gmail.com>
parents: 25
diff changeset
155 // Loop continuously until scan_loop returns 0
c06a5ebb4fca Tandy 1000 Converter, basicly works, except for packet mismatches
Jacob Alexander <triplehaata@gmail.com>
parents: 25
diff changeset
156 cli();
c06a5ebb4fca Tandy 1000 Converter, basicly works, except for packet mismatches
Jacob Alexander <triplehaata@gmail.com>
parents: 25
diff changeset
157 while ( scan_loop() );
c06a5ebb4fca Tandy 1000 Converter, basicly works, except for packet mismatches
Jacob Alexander <triplehaata@gmail.com>
parents: 25
diff changeset
158 sei();
25
c2ef3daf39e1 Cleaning up main.c
Jacob Alexander <haata@users.sf.net>
parents: 24
diff changeset
159
27
8b8cad3db8db Basic matrix module for the hall effect keypad now working.
Jacob Alexander <triplehaata@gmail.com>
parents: 26
diff changeset
160 // Run Macros over Key Indices and convert to USB Keys
8b8cad3db8db Basic matrix module for the hall effect keypad now working.
Jacob Alexander <triplehaata@gmail.com>
parents: 26
diff changeset
161 process_macros();
8b8cad3db8db Basic matrix module for the hall effect keypad now working.
Jacob Alexander <triplehaata@gmail.com>
parents: 26
diff changeset
162
25
c2ef3daf39e1 Cleaning up main.c
Jacob Alexander <haata@users.sf.net>
parents: 24
diff changeset
163 // Send keypresses over USB if the ISR has signalled that it's time
c2ef3daf39e1 Cleaning up main.c
Jacob Alexander <haata@users.sf.net>
parents: 24
diff changeset
164 if ( !sendKeypresses )
c2ef3daf39e1 Cleaning up main.c
Jacob Alexander <haata@users.sf.net>
parents: 24
diff changeset
165 continue;
c2ef3daf39e1 Cleaning up main.c
Jacob Alexander <haata@users.sf.net>
parents: 24
diff changeset
166
c2ef3daf39e1 Cleaning up main.c
Jacob Alexander <haata@users.sf.net>
parents: 24
diff changeset
167 // Send USB Data
c2ef3daf39e1 Cleaning up main.c
Jacob Alexander <haata@users.sf.net>
parents: 24
diff changeset
168 usb_send();
c2ef3daf39e1 Cleaning up main.c
Jacob Alexander <haata@users.sf.net>
parents: 24
diff changeset
169
c2ef3daf39e1 Cleaning up main.c
Jacob Alexander <haata@users.sf.net>
parents: 24
diff changeset
170 // Clear sendKeypresses Flag
c2ef3daf39e1 Cleaning up main.c
Jacob Alexander <haata@users.sf.net>
parents: 24
diff changeset
171 sendKeypresses = 0;
c2ef3daf39e1 Cleaning up main.c
Jacob Alexander <haata@users.sf.net>
parents: 24
diff changeset
172
c2ef3daf39e1 Cleaning up main.c
Jacob Alexander <haata@users.sf.net>
parents: 24
diff changeset
173 // Indicate Error, if valid
c2ef3daf39e1 Cleaning up main.c
Jacob Alexander <haata@users.sf.net>
parents: 24
diff changeset
174 errorLED( ledTimer );
26
c06a5ebb4fca Tandy 1000 Converter, basicly works, except for packet mismatches
Jacob Alexander <triplehaata@gmail.com>
parents: 25
diff changeset
175
c06a5ebb4fca Tandy 1000 Converter, basicly works, except for packet mismatches
Jacob Alexander <triplehaata@gmail.com>
parents: 25
diff changeset
176 if ( ledTimer > 0 )
c06a5ebb4fca Tandy 1000 Converter, basicly works, except for packet mismatches
Jacob Alexander <triplehaata@gmail.com>
parents: 25
diff changeset
177 ledTimer--;
25
c2ef3daf39e1 Cleaning up main.c
Jacob Alexander <haata@users.sf.net>
parents: 24
diff changeset
178 }
16
f74b797ac060 Parts of the upcoming rewrite
Jacob Alexander <triplehaata@gmail.com>
parents: 15
diff changeset
179
f74b797ac060 Parts of the upcoming rewrite
Jacob Alexander <triplehaata@gmail.com>
parents: 15
diff changeset
180 // Loop should never get here (indicate error)
25
c2ef3daf39e1 Cleaning up main.c
Jacob Alexander <haata@users.sf.net>
parents: 24
diff changeset
181 ledTimer = 255;
16
f74b797ac060 Parts of the upcoming rewrite
Jacob Alexander <triplehaata@gmail.com>
parents: 15
diff changeset
182
17
85bc68be98df Code re-factor now compiles.
Jacob Alexander <triplehaata@gmail.com>
parents: 16
diff changeset
183 // HID Debug Error message
85bc68be98df Code re-factor now compiles.
Jacob Alexander <triplehaata@gmail.com>
parents: 16
diff changeset
184 erro_print("Detection loop error, this is very bad...bug report!");
16
f74b797ac060 Parts of the upcoming rewrite
Jacob Alexander <triplehaata@gmail.com>
parents: 15
diff changeset
185 }
f74b797ac060 Parts of the upcoming rewrite
Jacob Alexander <triplehaata@gmail.com>
parents: 15
diff changeset
186 }
0
43dfb6e4e697 Initial Commit
Jacob Alexander <triplehaata@gmail.com>
parents:
diff changeset
187
67
9ad7c1a28661 Preparing for Teensy 3 (ARM) integration, abstracting code hierarchy
Jacob Alexander <triplehaata@gmail.com>
parents: 40
diff changeset
188
9ad7c1a28661 Preparing for Teensy 3 (ARM) integration, abstracting code hierarchy
Jacob Alexander <triplehaata@gmail.com>
parents: 40
diff changeset
189 // ----- Interrupts -----
9ad7c1a28661 Preparing for Teensy 3 (ARM) integration, abstracting code hierarchy
Jacob Alexander <triplehaata@gmail.com>
parents: 40
diff changeset
190
70
23600aaa5e15 Adding initial Teensy 3 support, compiles, but not fully functional yet.
Jacob Alexander <triplehaata@gmail.com>
parents: 67
diff changeset
191 // USB Keyboard Data Send Counter Interrupt
23600aaa5e15 Adding initial Teensy 3 support, compiles, but not fully functional yet.
Jacob Alexander <triplehaata@gmail.com>
parents: 67
diff changeset
192 #if defined(_at90usb162_) || defined(_atmega32u4_) || defined(_at90usb646_) || defined(_at90usb1286_) // AVR
6
9df636be6feb Keyboard functionally working with very very good debouncing.
Jacob Alexander <triplehaata@gmail.com>
parents: 5
diff changeset
193 ISR( TIMER0_OVF_vect )
70
23600aaa5e15 Adding initial Teensy 3 support, compiles, but not fully functional yet.
Jacob Alexander <triplehaata@gmail.com>
parents: 67
diff changeset
194 #elif defined(_mk20dx128_) // ARM
23600aaa5e15 Adding initial Teensy 3 support, compiles, but not fully functional yet.
Jacob Alexander <triplehaata@gmail.com>
parents: 67
diff changeset
195 void pit0_isr(void)
23600aaa5e15 Adding initial Teensy 3 support, compiles, but not fully functional yet.
Jacob Alexander <triplehaata@gmail.com>
parents: 67
diff changeset
196 #endif
6
9df636be6feb Keyboard functionally working with very very good debouncing.
Jacob Alexander <triplehaata@gmail.com>
parents: 5
diff changeset
197 {
9df636be6feb Keyboard functionally working with very very good debouncing.
Jacob Alexander <triplehaata@gmail.com>
parents: 5
diff changeset
198 sendKeypressCounter++;
9df636be6feb Keyboard functionally working with very very good debouncing.
Jacob Alexander <triplehaata@gmail.com>
parents: 5
diff changeset
199 if ( sendKeypressCounter > USB_TRANSFER_DIVIDER ) {
9df636be6feb Keyboard functionally working with very very good debouncing.
Jacob Alexander <triplehaata@gmail.com>
parents: 5
diff changeset
200 sendKeypressCounter = 0;
9df636be6feb Keyboard functionally working with very very good debouncing.
Jacob Alexander <triplehaata@gmail.com>
parents: 5
diff changeset
201 sendKeypresses = 1;
9df636be6feb Keyboard functionally working with very very good debouncing.
Jacob Alexander <triplehaata@gmail.com>
parents: 5
diff changeset
202 }
72
4c2712f25157 Main USB timer now working, basic Teensy 3 support working.
Jacob Alexander <triplehaata@gmail.com>
parents: 70
diff changeset
203
4c2712f25157 Main USB timer now working, basic Teensy 3 support working.
Jacob Alexander <triplehaata@gmail.com>
parents: 70
diff changeset
204 #if defined(_mk20dx128_) // ARM
4c2712f25157 Main USB timer now working, basic Teensy 3 support working.
Jacob Alexander <triplehaata@gmail.com>
parents: 70
diff changeset
205 // Clear the interrupt flag
4c2712f25157 Main USB timer now working, basic Teensy 3 support working.
Jacob Alexander <triplehaata@gmail.com>
parents: 70
diff changeset
206 PIT_TFLG0 = 1;
4c2712f25157 Main USB timer now working, basic Teensy 3 support working.
Jacob Alexander <triplehaata@gmail.com>
parents: 70
diff changeset
207 #endif
6
9df636be6feb Keyboard functionally working with very very good debouncing.
Jacob Alexander <triplehaata@gmail.com>
parents: 5
diff changeset
208 }
9df636be6feb Keyboard functionally working with very very good debouncing.
Jacob Alexander <triplehaata@gmail.com>
parents: 5
diff changeset
209