aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Brassel <nick@tzarc.org>2021-05-11 11:01:58 +1000
committerGitHub <noreply@github.com>2021-05-11 11:01:58 +1000
commitf41fc6b70c48b7fde36a4af1da99033edf4ffc74 (patch)
tree2f5799eb37d40d9d494d178fd8454dff87b2d8f1
parent0432bde9626b657b42e29741ffa862b043311a42 (diff)
downloadqmk_firmware-f41fc6b70c48b7fde36a4af1da99033edf4ffc74.tar.gz
qmk_firmware-f41fc6b70c48b7fde36a4af1da99033edf4ffc74.zip
Fixup build errors on `develop` branch. (#12723)
-rw-r--r--keyboards/monarch/config.h2
-rw-r--r--keyboards/monarch/halconf.h1
-rw-r--r--keyboards/monarch/mcuconf.h3
3 files changed, 6 insertions, 0 deletions
diff --git a/keyboards/monarch/config.h b/keyboards/monarch/config.h
index ca9e2646b..6822b2f78 100644
--- a/keyboards/monarch/config.h
+++ b/keyboards/monarch/config.h
@@ -46,6 +46,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
46#define BACKLIGHT_BREATHING 46#define BACKLIGHT_BREATHING
47#define BREATHING_PERIOD 6 47#define BREATHING_PERIOD 6
48 48
49#define SLEEP_LED_GPT_DRIVER GPTD1
50
49/* define if matrix has ghost */ 51/* define if matrix has ghost */
50//#define MATRIX_HAS_GHOST 52//#define MATRIX_HAS_GHOST
51 53
diff --git a/keyboards/monarch/halconf.h b/keyboards/monarch/halconf.h
index c4a89408a..d27e21ad7 100644
--- a/keyboards/monarch/halconf.h
+++ b/keyboards/monarch/halconf.h
@@ -21,6 +21,7 @@
21 21
22#pragma once 22#pragma once
23 23
24#define HAL_USE_GPT TRUE
24#define HAL_USE_PWM TRUE 25#define HAL_USE_PWM TRUE
25 26
26#include_next <halconf.h> 27#include_next <halconf.h>
diff --git a/keyboards/monarch/mcuconf.h b/keyboards/monarch/mcuconf.h
index c16c3889a..ebb298572 100644
--- a/keyboards/monarch/mcuconf.h
+++ b/keyboards/monarch/mcuconf.h
@@ -23,6 +23,9 @@
23 23
24#include_next <mcuconf.h> 24#include_next <mcuconf.h>
25 25
26#undef STM32_GPT_USE_TIM1
27#define STM32_GPT_USE_TIM1 TRUE
28
26#undef STM32_PWM_USE_TIM3 29#undef STM32_PWM_USE_TIM3
27#define STM32_PWM_USE_TIM3 TRUE 30#define STM32_PWM_USE_TIM3 TRUE
28 31