You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
84 lines
3.4 KiB
84 lines
3.4 KiB
6 years ago
|
/* -*- mode: c++ -*-
|
||
|
* Kaleidoscope-Hardware-KBDFans-KBD4x -- KBD4x hardware support for Kaleidoscope
|
||
4 years ago
|
* Copyright (C) 2019, 2020 Keyboard.io, Inc
|
||
6 years ago
|
*
|
||
|
* This program is free software: you can redistribute it and/or modify
|
||
|
* it under the terms of version 3 of the GNU General Public License as
|
||
|
* published by the Free Software Foundation.
|
||
|
*
|
||
|
* This program is distributed in the hope that it will be useful,
|
||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
* GNU General Public License for more details.
|
||
|
*
|
||
|
* You should have received a copy of the GNU General Public License
|
||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#ifdef ARDUINO_AVR_KBD4X
|
||
|
|
||
5 years ago
|
#define KALEIDOSCOPE_BOOTLOADER_FLIP_WORKAROUND 1
|
||
6 years ago
|
|
||
5 years ago
|
#include <Arduino.h>
|
||
6 years ago
|
|
||
5 years ago
|
#include "kaleidoscope/driver/keyscanner/ATmega.h"
|
||
5 years ago
|
#include "kaleidoscope/driver/bootloader/avr/FLIP.h"
|
||
5 years ago
|
#include "kaleidoscope/device/ATmega32U4Keyboard.h"
|
||
6 years ago
|
|
||
|
namespace kaleidoscope {
|
||
5 years ago
|
namespace device {
|
||
6 years ago
|
namespace kbdfans {
|
||
5 years ago
|
|
||
5 years ago
|
struct KBD4xProps : kaleidoscope::device::ATmega32U4KeyboardProps {
|
||
5 years ago
|
struct MCUProps: public kaleidoscope::driver::mcu::ATmega32U4Props {
|
||
|
static constexpr bool disable_jtag = true;
|
||
|
static constexpr bool disable_clock_division = true;
|
||
|
};
|
||
|
typedef kaleidoscope::driver::mcu::ATmega32U4<MCUProps> MCU;
|
||
5 years ago
|
struct KeyScannerProps : public kaleidoscope::driver::keyscanner::ATmegaProps {
|
||
4 years ago
|
static constexpr uint8_t matrix_rows = 4;
|
||
|
static constexpr uint8_t matrix_columns = 12;
|
||
|
typedef MatrixAddr<matrix_rows, matrix_columns> KeyAddr;
|
||
|
#ifndef KALEIDOSCOPE_VIRTUAL_BUILD
|
||
|
static constexpr uint8_t matrix_row_pins[matrix_rows] = {PIN_D0, PIN_D1, PIN_D2, PIN_D3};
|
||
|
static constexpr uint8_t matrix_col_pins[matrix_columns] = { PIN_F0, PIN_F1, PIN_F4, PIN_F5, PIN_F6, PIN_F7, PIN_B3, PIN_B1, PIN_B0, PIN_D5, PIN_B7, PIN_C7 };
|
||
|
#endif // KALEIDOSCOPE_VIRTUAL_BUILD
|
||
5 years ago
|
};
|
||
5 years ago
|
typedef kaleidoscope::driver::keyscanner::ATmega<KeyScannerProps> KeyScanner;
|
||
5 years ago
|
typedef kaleidoscope::driver::bootloader::avr::FLIP Bootloader;
|
||
5 years ago
|
static constexpr const char *short_name = "kbd4x";
|
||
5 years ago
|
};
|
||
|
|
||
5 years ago
|
#ifndef KALEIDOSCOPE_VIRTUAL_BUILD
|
||
4 years ago
|
class KBD4x: public kaleidoscope::device::ATmega32U4Keyboard<KBD4xProps> {};
|
||
5 years ago
|
#else // ifndef KALEIDOSCOPE_VIRTUAL_BUILD
|
||
4 years ago
|
/* Device definition omitted for virtual device builds.
|
||
|
* We need to forward declare the device name, though, as there are
|
||
|
* some legacy extern references to boards whose definition
|
||
|
* depends on this.
|
||
|
*/
|
||
5 years ago
|
class KBD4x;
|
||
4 years ago
|
|
||
5 years ago
|
#endif // ifndef KALEIDOSCOPE_VIRTUAL_BUILD
|
||
6 years ago
|
|
||
6 years ago
|
#define PER_KEY_DATA(dflt, \
|
||
6 years ago
|
R0C0, R0C1, R0C2, R0C3, R0C4, R0C5, R0C6, R0C7, R0C8, R0C9, R0C10, R0C11, \
|
||
|
R1C0, R1C1, R1C2, R1C3, R1C4, R1C5, R1C6, R1C7, R1C8, R1C9, R1C10, R1C11, \
|
||
|
R2C0, R2C1, R2C2, R2C3, R2C4, R2C5, R2C6, R2C7, R2C8, R2C9, R2C10, R2C11, \
|
||
6 years ago
|
R3C0, R3C1, R3C2, R3C3, R3C4, R3C5, R3C7, R3C8, R3C9, R3C10, R3C11 \
|
||
|
) \
|
||
|
R0C0, R0C1, R0C2, R0C3, R0C4, R0C5, R0C6, R0C7, R0C8, R0C9, R0C10, R0C11, \
|
||
|
R1C0, R1C1, R1C2, R1C3, R1C4, R1C5, R1C6, R1C7, R1C8, R1C9, R1C10, R1C11, \
|
||
|
R2C0, R2C1, R2C2, R2C3, R2C4, R2C5, R2C6, R2C7, R2C8, R2C9, R2C10, R2C11, \
|
||
|
R3C0, R3C1, R3C2, R3C3, R3C4, R3C5, R3C5, R3C7, R3C8, R3C9, R3C10, R3C11
|
||
6 years ago
|
}
|
||
|
}
|
||
5 years ago
|
|
||
5 years ago
|
EXPORT_DEVICE(kaleidoscope::device::kbdfans::KBD4x)
|
||
5 years ago
|
|
||
6 years ago
|
}
|
||
|
|
||
|
#endif
|