Compare commits

..

No commits in common. "cf5626e0246b66879b03a18115a19a566e839f48" and "a41f6a3e07793eaa72448c9e565f06074b04e687" have entirely different histories.

7 changed files with 5 additions and 9 deletions

View File

@ -809,9 +809,9 @@ endif
ifeq ($(strip $(PS2_MOUSE_ENABLE)), yes)
PS2_ENABLE := yes
MOUSE_ENABLE := yes
SRC += ps2_mouse.c
OPT_DEFS += -DPS2_MOUSE_ENABLE
OPT_DEFS += -DMOUSE_ENABLE
endif
VALID_PS2_DRIVER_TYPES := busywait interrupt usart vendor

View File

@ -47,7 +47,6 @@ POSSIBILITY OF SUCH DAMAGE.
// chibiOS headers
# include "ch.h"
# include "hal.h"
# include "gpio.h"
#endif
#include "ps2.h"

View File

@ -2,8 +2,7 @@
* Keyboard Maintainer: [peepeetee](https://github.com/peepeetee)
* Hardware Supported: Tap Duo
* Hardware Availability: [Momokai](https://www.momokai.com/)
Make example for this keyboard (after setting up your build environment):

View File

@ -2,8 +2,7 @@
* Keyboard Maintainer: [peepeetee](https://github.com/peepeetee)
* Hardware Supported: Tap Trio
* Hardware Availability: [Momokai](https://www.momokai.com/)
Make example for this keyboard (after setting up your build environment):

View File

@ -16,6 +16,7 @@
#pragma once
#define RGB_DI_PIN B9
#define RGB_MATRIX_LED_COUNT 89
#define RGB_DISABLE_WHEN_USB_SUSPENDED

View File

@ -18,8 +18,7 @@
},
"processor": "STM32F103",
"ws2812": {
"driver": "pwm",
"pin": "B9"
"driver": "pwm"
},
"rgb_matrix": {
"animations": {

View File

@ -4,7 +4,6 @@
// chibiOS headers
#include "ch.h"
#include "hal.h"
#include "gpio.h"
/* Check port settings for clock and data line */
#if !(defined(PS2_CLOCK_PIN))