From 16fb1ea9061c405e5fbf071afb2b63fd8a784c6b Mon Sep 17 00:00:00 2001 From: Christoph Jabs Date: Mon, 23 Aug 2021 16:07:40 +0300 Subject: [PATCH] requested changes - small changes to defines - licence headers --- keyboards/handwired/ortho_brass/config.h | 5 ++--- keyboards/handwired/ortho_brass/ortho_brass.c | 16 ++++++++++++++++ keyboards/handwired/ortho_brass/ortho_brass.h | 16 ++++++++++++++++ 3 files changed, 34 insertions(+), 3 deletions(-) diff --git a/keyboards/handwired/ortho_brass/config.h b/keyboards/handwired/ortho_brass/config.h index 0c72dec5644..816a8fe5979 100644 --- a/keyboards/handwired/ortho_brass/config.h +++ b/keyboards/handwired/ortho_brass/config.h @@ -23,8 +23,7 @@ #define PRODUCT_ID 0x6060 #define DEVICE_VER 0x0001 #define MANUFACTURER BifbofII -#define PRODUCT "Ortho Brass" -#define DESCRIPTION "Handwired Ortho 4x12 Keyboard" +#define PRODUCT Ortho Brass /* key matrix size */ #define MATRIX_ROWS 4 @@ -42,4 +41,4 @@ #define DIODE_DIRECTION COL2ROW /* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */ -#define DEBOUNCING_DELAY 5 +#define DEBOUNCE 5 diff --git a/keyboards/handwired/ortho_brass/ortho_brass.c b/keyboards/handwired/ortho_brass/ortho_brass.c index 9ffc6d0463a..d124bbfca23 100644 --- a/keyboards/handwired/ortho_brass/ortho_brass.c +++ b/keyboards/handwired/ortho_brass/ortho_brass.c @@ -1,3 +1,19 @@ +/* Copyright 2021 Christoph Jabs (BifbofII) + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 2 of the License, or + * (at your option) any later version. + * + * 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 . + */ + #include "ortho_brass.h" #ifdef SWAP_HANDS_ENABLE diff --git a/keyboards/handwired/ortho_brass/ortho_brass.h b/keyboards/handwired/ortho_brass/ortho_brass.h index 1b25db5b841..0bcff0db510 100644 --- a/keyboards/handwired/ortho_brass/ortho_brass.h +++ b/keyboards/handwired/ortho_brass/ortho_brass.h @@ -1,3 +1,19 @@ +/* Copyright 2021 Christoph Jabs (BifbofII) + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 2 of the License, or + * (at your option) any later version. + * + * 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 . + */ + #pragma once #include "quantum.h"