Update ginkgo65hot to allow use of community layouts (#17911)
This commit is contained in:
parent
e938c663e5
commit
5408334083
14 changed files with 181 additions and 74 deletions
|
@ -1,3 +1,6 @@
|
|||
// Copyright 2022 Joshua Diamond josh@windowoffire.com (@spidey3)
|
||||
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||
|
||||
#pragma once
|
||||
|
||||
#define LED_DISABLE_WHEN_USB_SUSPENDED
|
||||
|
@ -40,3 +43,9 @@
|
|||
|
||||
#undef MANUFACTURER
|
||||
#define MANUFACTURER Window of Fire
|
||||
|
||||
// Some keyboards enable BACKLIGHT_CAPS_LOCK without checking if backlight is enabled.
|
||||
// Undef as appropriate to avoid compiler warnings in that case.
|
||||
#ifndef BACKLIGHT_ENABLE
|
||||
#undef BACKLIGHT_CAPS_LOCK
|
||||
#endif
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
// Copyright 2022 Joshua Diamond josh@windowoffire.com (@spidey3)
|
||||
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||
|
||||
#include "spidey3.h"
|
||||
|
||||
void keyboard_post_init_user(void) {
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
// Copyright 2022 Joshua Diamond josh@windowoffire.com (@spidey3)
|
||||
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||
|
||||
#include QMK_KEYBOARD_H
|
||||
|
||||
#include "spidey3.h"
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
// Copyright 2022 Joshua Diamond josh@windowoffire.com (@spidey3)
|
||||
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||
|
||||
#include QMK_KEYBOARD_H
|
||||
|
||||
#include "spidey3.h"
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
// Copyright 2022 Joshua Diamond josh@windowoffire.com (@spidey3)
|
||||
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||
|
||||
#pragma once
|
||||
|
||||
#include QMK_KEYBOARD_H
|
||||
|
@ -10,6 +13,7 @@ enum userspace_layers {
|
|||
_BASE = 0,
|
||||
_NUMPAD,
|
||||
_FN,
|
||||
_GLYPH,
|
||||
};
|
||||
|
||||
enum custom_keycodes {
|
||||
|
@ -32,10 +36,7 @@ enum custom_keycodes {
|
|||
SPI_MATH,
|
||||
SPI_GFLOCK,
|
||||
SPI_KP_00,
|
||||
|
||||
#ifdef RGBLIGHT_ENABLE
|
||||
SPI_GLO,
|
||||
#endif
|
||||
};
|
||||
|
||||
#ifdef RGBLIGHT_ENABLE
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
// Copyright 2022 Joshua Diamond josh@windowoffire.com (@spidey3)
|
||||
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||
|
||||
|
||||
#include "unicode.h"
|
||||
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
// Copyright 2022 Joshua Diamond josh@windowoffire.com (@spidey3)
|
||||
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||
|
||||
#pragma once
|
||||
|
||||
#include QMK_KEYBOARD_H
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue