diff options
author | MechMerlin <30334081+mechmerlin@users.noreply.github.com> | 2019-02-13 19:49:04 -0800 |
---|---|---|
committer | Drashna Jaelre <drashna@live.com> | 2019-02-13 19:49:04 -0800 |
commit | 64712731495b241dcab29c96c2ccb650a3aa39fd (patch) | |
tree | ed74dd9211a6fdb67fe4bfe9052ca1d49dcbb478 /keyboards/kbdfans/kbd19x/kbd19x.h | |
parent | 31b75c75fd0408c7ef15d15892a369f8a271e551 (diff) |
[Keyboard] KBD19x Bootmagic Enable (lite) and other fixes (#5126)
* set bootmagic from no to lite and put in a note in the readme
* use pragma once
* discovered a compile error when testing with default keymap. The inlined led functions need to be externed in the .c file
* might as well turn on mouse keys as well
Diffstat (limited to 'keyboards/kbdfans/kbd19x/kbd19x.h')
-rw-r--r-- | keyboards/kbdfans/kbd19x/kbd19x.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/keyboards/kbdfans/kbd19x/kbd19x.h b/keyboards/kbdfans/kbd19x/kbd19x.h index 728c7ca5ca..73f3cbe16c 100644 --- a/keyboards/kbdfans/kbd19x/kbd19x.h +++ b/keyboards/kbdfans/kbd19x/kbd19x.h @@ -15,8 +15,7 @@ You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#ifndef KBD19X_H -#define KBD19X_H +#pragma once #include "quantum.h" #include "led.h" @@ -100,4 +99,3 @@ inline void kbd19x_nmlk_led_off(void) { DDRB &= ~(1<<2); PORTB &= ~(1<<2); } {k05, k06, k07, k08, k15, k16, k17, k18, k25, k26, k27, k28, k36},\ {XXX, k1e, k0e, k2e, k4e, k37, k38, k39, k45, k46, k47, k48, XXX},\ } -#endif |