aboutsummaryrefslogtreecommitdiff
path: root/keyboards/wilba_tech
diff options
context:
space:
mode:
authorWilba <wilba@wilba.tech>2021-04-03 14:48:26 +1100
committerGitHub <noreply@github.com>2021-04-02 20:48:26 -0700
commit70540a1f744d350913b332a59571e899ea4556f3 (patch)
tree7c0d85a14dd28ce58d14e854d05abaf620bf937e /keyboards/wilba_tech
parentf0dc2067844a9045ffbd423c48b32abcceca742e (diff)
downloadqmk_firmware-70540a1f744d350913b332a59571e899ea4556f3.tar.gz
qmk_firmware-70540a1f744d350913b332a59571e899ea4556f3.zip
[Keyboard] Added RAMA WORKS KARA (#12346)
Co-authored-by: Ryan <fauxpark@gmail.com>
Diffstat (limited to 'keyboards/wilba_tech')
-rw-r--r--keyboards/wilba_tech/rama_works_kara/config.h123
-rw-r--r--keyboards/wilba_tech/rama_works_kara/info.json12
-rw-r--r--keyboards/wilba_tech/rama_works_kara/keymaps/default/keymap.c55
-rw-r--r--keyboards/wilba_tech/rama_works_kara/keymaps/via/keymap.c1
-rw-r--r--keyboards/wilba_tech/rama_works_kara/keymaps/via/rules.mk1
-rw-r--r--keyboards/wilba_tech/rama_works_kara/rama_works_kara.c18
-rw-r--r--keyboards/wilba_tech/rama_works_kara/rama_works_kara.h37
-rw-r--r--keyboards/wilba_tech/rama_works_kara/readme.md13
-rw-r--r--keyboards/wilba_tech/rama_works_kara/rules.mk38
9 files changed, 298 insertions, 0 deletions
diff --git a/keyboards/wilba_tech/rama_works_kara/config.h b/keyboards/wilba_tech/rama_works_kara/config.h
new file mode 100644
index 000000000..724098257
--- /dev/null
+++ b/keyboards/wilba_tech/rama_works_kara/config.h
@@ -0,0 +1,123 @@
1/* Copyright 2021 Jason Williams (Wilba)
2 *
3 * This program is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation, either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16#pragma once
17
18#include "config_common.h"
19
20// USB Device descriptor parameter
21#define VENDOR_ID 0x5241 // "RA"
22#define PRODUCT_ID 0x4B52 // "KR"
23#define DEVICE_VER 0x0001
24#define MANUFACTURER RAMA WORKS
25#define PRODUCT RAMA WORKS KARA
26
27// key matrix size
28#define MATRIX_ROWS 5
29#define MATRIX_COLS 14
30
31// M60-A PCB default pin-out
32#define MATRIX_ROW_PINS { F0, F1, F4, F6, F7 }
33#define MATRIX_COL_PINS { F5, D5, B1, B2, B3, D3, D2, C7, C6, B6, B5, B4, D7, D6 }
34#define UNUSED_PINS
35
36// IS31FL3731 driver
37#define DRIVER_COUNT 2
38#define DRIVER_LED_TOTAL 72
39
40// COL2ROW or ROW2COL
41#define DIODE_DIRECTION COL2ROW
42
43// Set 0 if debouncing isn't needed
44#define DEBOUNCE 5
45
46// Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap
47#define LOCKING_SUPPORT_ENABLE
48// Locking resynchronize hack
49#define LOCKING_RESYNC_ENABLE
50
51/*
52 * Feature disable options
53 * These options are also useful to firmware size reduction.
54 */
55
56// disable debug print
57//#define NO_DEBUG
58
59// disable print
60//#define NO_PRINT
61
62// disable action features
63//#define NO_ACTION_LAYER
64//#define NO_ACTION_TAPPING
65//#define NO_ACTION_ONESHOT
66//#define NO_ACTION_MACRO
67//#define NO_ACTION_FUNCTION
68
69#define RGB_BACKLIGHT_ENABLED 1
70
71// This conditionally compiles the backlight code for M60-A specifics
72#define RGB_BACKLIGHT_M60_A
73
74// enable/disable LEDs based on layout
75// they aren't really used if RGB_BACKLIGHT_M60_A defined
76#define RGB_BACKLIGHT_USE_SPLIT_BACKSPACE 1
77#define RGB_BACKLIGHT_USE_SPLIT_LEFT_SHIFT 0
78#define RGB_BACKLIGHT_USE_SPLIT_RIGHT_SHIFT 1
79#define RGB_BACKLIGHT_USE_7U_SPACEBAR 1
80#define RGB_BACKLIGHT_USE_ISO_ENTER 0
81#define RGB_BACKLIGHT_DISABLE_HHKB_BLOCKER_LEDS 1
82
83// disable backlight when USB suspended (PC sleep/hibernate/shutdown)
84#define RGB_BACKLIGHT_DISABLE_WHEN_USB_SUSPENDED 0
85
86// disable backlight after timeout in minutes, 0 = no timeout
87#define RGB_BACKLIGHT_DISABLE_AFTER_TIMEOUT 0
88
89// the default brightness
90#define RGB_BACKLIGHT_BRIGHTNESS 255
91
92// the default effect (RGB test)
93#define RGB_BACKLIGHT_EFFECT 255
94
95// the default effect speed (0-3)
96#define RGB_BACKLIGHT_EFFECT_SPEED 0
97
98// the default color1 and color2
99#define RGB_BACKLIGHT_COLOR_1 { .h = 0, .s = 255 }
100#define RGB_BACKLIGHT_COLOR_2 { .h = 127, .s = 255 }
101
102// These define which keys in the matrix are alphas/mods
103// Used for backlight effects so colors are different for
104// alphas vs. mods
105// Each value is for a row, bit 0 is column 0
106// Alpha=0 Mod=1
107#define RGB_BACKLIGHT_ALPHAS_MODS_ROW_0 0b0000000000000001
108#define RGB_BACKLIGHT_ALPHAS_MODS_ROW_1 0b0010000000000001
109#define RGB_BACKLIGHT_ALPHAS_MODS_ROW_2 0b0011000000000001
110#define RGB_BACKLIGHT_ALPHAS_MODS_ROW_3 0b0011000000000001
111#define RGB_BACKLIGHT_ALPHAS_MODS_ROW_4 0b0011100000000111
112
113#define RGB_BACKLIGHT_CAPS_LOCK_INDICATOR { .color = { .h = 0, .s = 0 }, .index = 255 }
114#define RGB_BACKLIGHT_LAYER_1_INDICATOR { .color = { .h = 0, .s = 0 }, .index = 255 }
115#define RGB_BACKLIGHT_LAYER_2_INDICATOR { .color = { .h = 0, .s = 0 }, .index = 255 }
116#define RGB_BACKLIGHT_LAYER_3_INDICATOR { .color = { .h = 0, .s = 0 }, .index = 255 }
117
118// Backlight config starts after VIA's EEPROM usage,
119// dynamic keymaps start after this.
120#define VIA_EEPROM_CUSTOM_CONFIG_SIZE 31
121
122// VIA lighting is handled by the keyboard-level code
123#define VIA_CUSTOM_LIGHTING_ENABLE
diff --git a/keyboards/wilba_tech/rama_works_kara/info.json b/keyboards/wilba_tech/rama_works_kara/info.json
new file mode 100644
index 000000000..c064f9c29
--- /dev/null
+++ b/keyboards/wilba_tech/rama_works_kara/info.json
@@ -0,0 +1,12 @@
1{
2 "keyboard_name": "RAMA WORKS KARA",
3 "url": "http://rama.works",
4 "maintainer": "Wilba",
5 "width": 15,
6 "height": 5,
7 "layouts": {
8 "LAYOUT_60_hhkb": {
9 "layout": [{"label":"Esc", "x":0, "y":0}, {"label":"!", "x":1, "y":0}, {"label":"@", "x":2, "y":0}, {"label":"#", "x":3, "y":0}, {"label":"$", "x":4, "y":0}, {"label":"%", "x":5, "y":0}, {"label":"^", "x":6, "y":0}, {"label":"&", "x":7, "y":0}, {"label":"*", "x":8, "y":0}, {"label":"(", "x":9, "y":0}, {"label":")", "x":10, "y":0}, {"label":"_", "x":11, "y":0}, {"label":"+", "x":12, "y":0}, {"label":"|", "x":13, "y":0}, {"label":"~", "x":14, "y":0}, {"label":"Tab", "x":0, "y":1, "w":1.5}, {"label":"Q", "x":1.5, "y":1}, {"label":"W", "x":2.5, "y":1}, {"label":"E", "x":3.5, "y":1}, {"label":"R", "x":4.5, "y":1}, {"label":"T", "x":5.5, "y":1}, {"label":"Y", "x":6.5, "y":1}, {"label":"U", "x":7.5, "y":1}, {"label":"I", "x":8.5, "y":1}, {"label":"O", "x":9.5, "y":1}, {"label":"P", "x":10.5, "y":1}, {"label":"{", "x":11.5, "y":1}, {"label":"}", "x":12.5, "y":1}, {"label":"Delete", "x":13.5, "y":1, "w":1.5}, {"label":"Control", "x":0, "y":2, "w":1.75}, {"label":"A", "x":1.75, "y":2}, {"label":"S", "x":2.75, "y":2}, {"label":"D", "x":3.75, "y":2}, {"label":"F", "x":4.75, "y":2}, {"label":"G", "x":5.75, "y":2}, {"label":"H", "x":6.75, "y":2}, {"label":"J", "x":7.75, "y":2}, {"label":"K", "x":8.75, "y":2}, {"label":"L", "x":9.75, "y":2}, {"label":":", "x":10.75, "y":2}, {"label":"\"", "x":11.75, "y":2}, {"label":"Enter", "x":12.75, "y":2, "w":2.25}, {"label":"Shift", "x":0, "y":3, "w":2.25}, {"label":"Z", "x":2.25, "y":3}, {"label":"X", "x":3.25, "y":3}, {"label":"C", "x":4.25, "y":3}, {"label":"V", "x":5.25, "y":3}, {"label":"B", "x":6.25, "y":3}, {"label":"N", "x":7.25, "y":3}, {"label":"M", "x":8.25, "y":3}, {"label":"<", "x":9.25, "y":3}, {"label":">", "x":10.25, "y":3}, {"label":"?", "x":11.25, "y":3}, {"label":"Shift", "x":12.25, "y":3, "w":1.75}, {"label":"Fn", "x":14, "y":3}, {"label":"Os", "x":1.5, "y":4}, {"label":"Alt", "x":2.5, "y":4, "w":1.5}, {"x":4, "y":4, "w":7}, {"label":"Alt", "x":11, "y":4, "w":1.5}, {"label":"Os", "x":12.5, "y":4}]
10 }
11 }
12} \ No newline at end of file
diff --git a/keyboards/wilba_tech/rama_works_kara/keymaps/default/keymap.c b/keyboards/wilba_tech/rama_works_kara/keymaps/default/keymap.c
new file mode 100644
index 000000000..15f654de0
--- /dev/null
+++ b/keyboards/wilba_tech/rama_works_kara/keymaps/default/keymap.c
@@ -0,0 +1,55 @@
1/* Copyright 2021 Jason Williams (Wilba)
2 *
3 * This program is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation, either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16// Default layout for RAMA WORKS KARA
17#include QMK_KEYBOARD_H
18
19const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
20
21 // Default layer
22 [0] = LAYOUT_60_hhkb(
23 KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_BSLS, KC_DEL,
24 KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC, KC_BSPC,
25 KC_LCTL, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_ENT,
26 KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, FN_MO13,
27 KC_LGUI, KC_LALT, KC_SPC, KC_RALT, FN_MO23),
28
29 // Fn1 Layer
30 [1] = LAYOUT_60_hhkb(
31 KC_GRV, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_INS, KC_DEL,
32 KC_CAPS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_PSCR, KC_SLCK, KC_PAUS, KC_UP, KC_TRNS, KC_TRNS,
33 KC_TRNS, KC_VOLD, KC_VOLU, KC_MUTE, KC_EJCT, KC_TRNS, KC_PAST, KC_PSLS, KC_HOME, KC_PGUP, KC_LEFT, KC_RGHT, KC_TRNS,
34 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_PPLS, KC_PMNS, KC_END, KC_PGDN, KC_DOWN, KC_TRNS, KC_TRNS,
35 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS),
36
37 // Fn2 Layer
38 [2] = LAYOUT_60_hhkb(
39 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
40 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
41 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
42 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
43 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS),
44
45 // Fn3 Layer
46 [3] = LAYOUT_60_hhkb(
47 KC_TRNS, EF_DEC, EF_INC, H1_DEC, H1_INC, H2_DEC, H2_INC, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, BR_DEC, BR_INC, KC_TRNS, KC_TRNS,
48 KC_TRNS, KC_TRNS, KC_TRNS, S1_DEC, S1_INC, S2_DEC, S2_INC, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, ES_DEC, ES_INC, KC_TRNS,
49 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
50 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
51 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS),
52
53};
54
55
diff --git a/keyboards/wilba_tech/rama_works_kara/keymaps/via/keymap.c b/keyboards/wilba_tech/rama_works_kara/keymaps/via/keymap.c
new file mode 100644
index 000000000..1f9d213f0
--- /dev/null
+++ b/keyboards/wilba_tech/rama_works_kara/keymaps/via/keymap.c
@@ -0,0 +1 @@
#include "../default/keymap.c" \ No newline at end of file
diff --git a/keyboards/wilba_tech/rama_works_kara/keymaps/via/rules.mk b/keyboards/wilba_tech/rama_works_kara/keymaps/via/rules.mk
new file mode 100644
index 000000000..1e5b99807
--- /dev/null
+++ b/keyboards/wilba_tech/rama_works_kara/keymaps/via/rules.mk
@@ -0,0 +1 @@
VIA_ENABLE = yes
diff --git a/keyboards/wilba_tech/rama_works_kara/rama_works_kara.c b/keyboards/wilba_tech/rama_works_kara/rama_works_kara.c
new file mode 100644
index 000000000..787a85492
--- /dev/null
+++ b/keyboards/wilba_tech/rama_works_kara/rama_works_kara.c
@@ -0,0 +1,18 @@
1/* Copyright 2021 Jason Williams (Wilba)
2 *
3 * This program is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation, either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16#ifndef RGB_BACKLIGHT_M60_A
17#error RGB_BACKLIGHT_M60_A not defined
18#endif
diff --git a/keyboards/wilba_tech/rama_works_kara/rama_works_kara.h b/keyboards/wilba_tech/rama_works_kara/rama_works_kara.h
new file mode 100644
index 000000000..c3e06f852
--- /dev/null
+++ b/keyboards/wilba_tech/rama_works_kara/rama_works_kara.h
@@ -0,0 +1,37 @@
1/* Copyright 2021 Jason Williams (Wilba)
2 *
3 * This program is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation, either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16#pragma once
17
18#include "quantum.h"
19#include "keyboards/wilba_tech/wt_rgb_backlight_keycodes.h"
20#include "via.h"
21
22#define XXX KC_NO
23
24#define LAYOUT_60_hhkb( \
25 K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0D, K2D, \
26 K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1D, \
27 K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, K2C, \
28 K30, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, K3C, K3D, \
29 K41, K42, K47, K4B, K4C \
30) { \
31 { K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0D }, \
32 { K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1D }, \
33 { K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, K2C, K2D }, \
34 { K30, XXX, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, K3C, K3D }, \
35 { XXX, K41, K42, XXX, XXX, XXX, XXX, K47, XXX, XXX, XXX, K4B, K4C, XXX } \
36}
37
diff --git a/keyboards/wilba_tech/rama_works_kara/readme.md b/keyboards/wilba_tech/rama_works_kara/readme.md
new file mode 100644
index 000000000..967cfd5e7
--- /dev/null
+++ b/keyboards/wilba_tech/rama_works_kara/readme.md
@@ -0,0 +1,13 @@
1# RAMA WORKS KARA
2
3KARA is a keyboard PCB supporting HHKB layout and daughterboard USB-C. [More info at RAMA WORKS](https://rama.works/kara/)
4
5* Keyboard Maintainer: [Wilba6582](https://github.com/Wilba6582)
6* Hardware Supported: RAMA WORKS KARA PCB
7* Hardware Availability: [RAMA WORKS Store](https://ramaworks.store/)
8
9Make example for this keyboard (after setting up your build environment):
10
11 make wilba_tech/rama_works_kara:default
12
13See the [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) and the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. Brand new to QMK? Start with our [Complete Newbs Guide](https://docs.qmk.fm/#/newbs).
diff --git a/keyboards/wilba_tech/rama_works_kara/rules.mk b/keyboards/wilba_tech/rama_works_kara/rules.mk
new file mode 100644
index 000000000..8af9101d3
--- /dev/null
+++ b/keyboards/wilba_tech/rama_works_kara/rules.mk
@@ -0,0 +1,38 @@
1# MCU name
2MCU = atmega32u4
3
4# Bootloader selection
5BOOTLOADER = atmel-dfu
6
7# Do not put the microcontroller into power saving mode
8# when we get USB suspend event. We want it to keep updating
9# backlight effects.
10OPT_DEFS += -DNO_SUSPEND_POWER_DOWN
11
12# Build Options
13# change yes to no to disable
14#
15BOOTMAGIC_ENABLE = lite # Virtual DIP switch configuration
16MOUSEKEY_ENABLE = no # Mouse keys
17EXTRAKEY_ENABLE = yes # Audio control and System control
18CONSOLE_ENABLE = no # Console for debug
19COMMAND_ENABLE = no # Commands for debug and configuration
20# Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE
21SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
22# if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work
23NKRO_ENABLE = yes # USB Nkey Rollover
24BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
25RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow
26BLUETOOTH_ENABLE = no # Enable Bluetooth
27AUDIO_ENABLE = no # Audio output
28
29CIE1931_CURVE = yes
30
31LAYOUTS = 60_hhkb
32
33# project specific files
34SRC = keyboards/wilba_tech/wt_main.c \
35 keyboards/wilba_tech/wt_rgb_backlight.c \
36 quantum/color.c \
37 drivers/issi/is31fl3731.c \
38 drivers/avr/i2c_master.c