annotate Scan/KType/matrix.h @ 378:890a18d98c47

Initial code for KType TKL
author Jacob Alexander <haata@kiibohd.com>
date Tue, 29 Sep 2015 19:29:27 -0700
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
378
890a18d98c47 Initial code for KType TKL
Jacob Alexander <haata@kiibohd.com>
parents:
diff changeset
1 /* Copyright (C) 2014-2015 by Jacob Alexander
890a18d98c47 Initial code for KType TKL
Jacob Alexander <haata@kiibohd.com>
parents:
diff changeset
2 *
890a18d98c47 Initial code for KType TKL
Jacob Alexander <haata@kiibohd.com>
parents:
diff changeset
3 * Permission is hereby granted, free of charge, to any person obtaining a copy
890a18d98c47 Initial code for KType TKL
Jacob Alexander <haata@kiibohd.com>
parents:
diff changeset
4 * of this software and associated documentation files (the "Software"), to deal
890a18d98c47 Initial code for KType TKL
Jacob Alexander <haata@kiibohd.com>
parents:
diff changeset
5 * in the Software without restriction, including without limitation the rights
890a18d98c47 Initial code for KType TKL
Jacob Alexander <haata@kiibohd.com>
parents:
diff changeset
6 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
890a18d98c47 Initial code for KType TKL
Jacob Alexander <haata@kiibohd.com>
parents:
diff changeset
7 * copies of the Software, and to permit persons to whom the Software is
890a18d98c47 Initial code for KType TKL
Jacob Alexander <haata@kiibohd.com>
parents:
diff changeset
8 * furnished to do so, subject to the following conditions:
890a18d98c47 Initial code for KType TKL
Jacob Alexander <haata@kiibohd.com>
parents:
diff changeset
9 *
890a18d98c47 Initial code for KType TKL
Jacob Alexander <haata@kiibohd.com>
parents:
diff changeset
10 * The above copyright notice and this permission notice shall be included in
890a18d98c47 Initial code for KType TKL
Jacob Alexander <haata@kiibohd.com>
parents:
diff changeset
11 * all copies or substantial portions of the Software.
890a18d98c47 Initial code for KType TKL
Jacob Alexander <haata@kiibohd.com>
parents:
diff changeset
12 *
890a18d98c47 Initial code for KType TKL
Jacob Alexander <haata@kiibohd.com>
parents:
diff changeset
13 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
890a18d98c47 Initial code for KType TKL
Jacob Alexander <haata@kiibohd.com>
parents:
diff changeset
14 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
890a18d98c47 Initial code for KType TKL
Jacob Alexander <haata@kiibohd.com>
parents:
diff changeset
15 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
890a18d98c47 Initial code for KType TKL
Jacob Alexander <haata@kiibohd.com>
parents:
diff changeset
16 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
890a18d98c47 Initial code for KType TKL
Jacob Alexander <haata@kiibohd.com>
parents:
diff changeset
17 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
890a18d98c47 Initial code for KType TKL
Jacob Alexander <haata@kiibohd.com>
parents:
diff changeset
18 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
890a18d98c47 Initial code for KType TKL
Jacob Alexander <haata@kiibohd.com>
parents:
diff changeset
19 * THE SOFTWARE.
890a18d98c47 Initial code for KType TKL
Jacob Alexander <haata@kiibohd.com>
parents:
diff changeset
20 */
890a18d98c47 Initial code for KType TKL
Jacob Alexander <haata@kiibohd.com>
parents:
diff changeset
21
890a18d98c47 Initial code for KType TKL
Jacob Alexander <haata@kiibohd.com>
parents:
diff changeset
22 #pragma once
890a18d98c47 Initial code for KType TKL
Jacob Alexander <haata@kiibohd.com>
parents:
diff changeset
23
890a18d98c47 Initial code for KType TKL
Jacob Alexander <haata@kiibohd.com>
parents:
diff changeset
24 // ----- Includes -----
890a18d98c47 Initial code for KType TKL
Jacob Alexander <haata@kiibohd.com>
parents:
diff changeset
25
890a18d98c47 Initial code for KType TKL
Jacob Alexander <haata@kiibohd.com>
parents:
diff changeset
26 // Project Includes
890a18d98c47 Initial code for KType TKL
Jacob Alexander <haata@kiibohd.com>
parents:
diff changeset
27 #include <matrix_setup.h>
890a18d98c47 Initial code for KType TKL
Jacob Alexander <haata@kiibohd.com>
parents:
diff changeset
28
890a18d98c47 Initial code for KType TKL
Jacob Alexander <haata@kiibohd.com>
parents:
diff changeset
29
890a18d98c47 Initial code for KType TKL
Jacob Alexander <haata@kiibohd.com>
parents:
diff changeset
30
890a18d98c47 Initial code for KType TKL
Jacob Alexander <haata@kiibohd.com>
parents:
diff changeset
31 // ----- Matrix Definition -----
890a18d98c47 Initial code for KType TKL
Jacob Alexander <haata@kiibohd.com>
parents:
diff changeset
32
890a18d98c47 Initial code for KType TKL
Jacob Alexander <haata@kiibohd.com>
parents:
diff changeset
33 // Freescale ARM MK20's support GPIO PTA, PTB, PTC, PTD and PTE 0..31
890a18d98c47 Initial code for KType TKL
Jacob Alexander <haata@kiibohd.com>
parents:
diff changeset
34 // Not all chips have access to all of these pins (most don't have 160 pins :P)
890a18d98c47 Initial code for KType TKL
Jacob Alexander <haata@kiibohd.com>
parents:
diff changeset
35 //
890a18d98c47 Initial code for KType TKL
Jacob Alexander <haata@kiibohd.com>
parents:
diff changeset
36 // NOTE:
890a18d98c47 Initial code for KType TKL
Jacob Alexander <haata@kiibohd.com>
parents:
diff changeset
37 // Before using a pin, make sure it supports being a GPIO *and* doesn't have a default pull-up/pull-down
890a18d98c47 Initial code for KType TKL
Jacob Alexander <haata@kiibohd.com>
parents:
diff changeset
38 // Checking this is completely on the ownness of the user
890a18d98c47 Initial code for KType TKL
Jacob Alexander <haata@kiibohd.com>
parents:
diff changeset
39
890a18d98c47 Initial code for KType TKL
Jacob Alexander <haata@kiibohd.com>
parents:
diff changeset
40 // MDErgo1
890a18d98c47 Initial code for KType TKL
Jacob Alexander <haata@kiibohd.com>
parents:
diff changeset
41 //
890a18d98c47 Initial code for KType TKL
Jacob Alexander <haata@kiibohd.com>
parents:
diff changeset
42 // Column (Strobe) - 9 Total
890a18d98c47 Initial code for KType TKL
Jacob Alexander <haata@kiibohd.com>
parents:
diff changeset
43 // PTB2,3,18,19
890a18d98c47 Initial code for KType TKL
Jacob Alexander <haata@kiibohd.com>
parents:
diff changeset
44 // PTC0,9..11
890a18d98c47 Initial code for KType TKL
Jacob Alexander <haata@kiibohd.com>
parents:
diff changeset
45 // PTD0
890a18d98c47 Initial code for KType TKL
Jacob Alexander <haata@kiibohd.com>
parents:
diff changeset
46 //
890a18d98c47 Initial code for KType TKL
Jacob Alexander <haata@kiibohd.com>
parents:
diff changeset
47 // Rows (Sense) - 5 Total
890a18d98c47 Initial code for KType TKL
Jacob Alexander <haata@kiibohd.com>
parents:
diff changeset
48 // PTD1,4..7
890a18d98c47 Initial code for KType TKL
Jacob Alexander <haata@kiibohd.com>
parents:
diff changeset
49
890a18d98c47 Initial code for KType TKL
Jacob Alexander <haata@kiibohd.com>
parents:
diff changeset
50 // Define Rows (Sense) and Columns (Strobes)
890a18d98c47 Initial code for KType TKL
Jacob Alexander <haata@kiibohd.com>
parents:
diff changeset
51 // TODO
890a18d98c47 Initial code for KType TKL
Jacob Alexander <haata@kiibohd.com>
parents:
diff changeset
52 GPIO_Pin Matrix_cols[] = { gpio(B,2), gpio(B,3), gpio(B,18), gpio(B,19), gpio(C,0), gpio(C,8), gpio(C,9), gpio(C,10), gpio(C,11) };
890a18d98c47 Initial code for KType TKL
Jacob Alexander <haata@kiibohd.com>
parents:
diff changeset
53 GPIO_Pin Matrix_rows[] = { gpio(D,0), gpio(D,1), gpio(D,4), gpio(D,5), gpio(D,6), gpio(D,7), gpio(C,1), gpio(C,2) };
890a18d98c47 Initial code for KType TKL
Jacob Alexander <haata@kiibohd.com>
parents:
diff changeset
54
890a18d98c47 Initial code for KType TKL
Jacob Alexander <haata@kiibohd.com>
parents:
diff changeset
55 // Define type of scan matrix
890a18d98c47 Initial code for KType TKL
Jacob Alexander <haata@kiibohd.com>
parents:
diff changeset
56 Config Matrix_type = Config_Pulldown;
890a18d98c47 Initial code for KType TKL
Jacob Alexander <haata@kiibohd.com>
parents:
diff changeset
57