SN32F268 | ATmega32U4 | AT90USB1286 | Proton C - STM32F303xC | Blackpill - STM32F411 | RP2040 | Nice Nano (nRF52840) | |
---|---|---|---|---|---|---|---|
Speed | 48MHz | 16MHz | 16MHz | 72MHz | ~96MHz | 2@ 133MHz | 64MHz |
Voltage | 3.3V | 5V | 5V | 3.3V with some 5V capable pins | 3.3V with 5V capable pins | 3.3v | 3.3v |
Flash size | 32kB (~28kB usable) | 32kB (28kB usable) | 128kB (120kB usable) | 256kB | 512kB | off-chip flash, up to 16MB | 1MB |
EEPROM si |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"configurations": [ | |
{ | |
"name": "Mac", | |
"includePath": [ | |
"/usr/include", | |
"/usr/local/include", | |
"${workspaceRoot}" | |
], | |
"defines": [], |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/common_features.mk b/common_features.mk | |
index 6c835abde..65ff6b5b3 100644 | |
--- a/common_features.mk | |
+++ b/common_features.mk | |
@@ -115,7 +115,7 @@ ifeq ($(strip $(RGBLIGHT_ENABLE)), yes) | |
endif | |
RGB_MATRIX_ENABLE ?= no | |
-VALID_MATRIX_TYPES := yes IS31FL3731L IS31FL3733L custom | |
+VALID_MATRIX_TYPES := yes IS31FL3731 IS31FL3733 custom |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
enum custom_keycodes { | |
MY_CUSTOM_MACRO = SAFE_RANGE | |
}; | |
//... | |
bool process_record_user(uint16_t keycode, keyrecord_t *record) { | |
switch(keycode) { | |
case MY_CUSTOM_MACRO: | |
if (record->event.pressed) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"configurations": [ | |
{ | |
"name": "Mac", | |
"includePath": [ | |
"/usr/include", | |
"/usr/local/include", | |
"${workspaceFolder}" | |
], | |
"defines": [], |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"configurations": [ | |
{ | |
"name": "Mac", | |
"includePath": [ | |
"/usr/include", | |
"/usr/local/include", | |
"${workspaceFolder}" | |
], | |
"defines": [], |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"configurations": [ | |
{ | |
"name": "Mac", | |
"includePath": [ | |
"/usr/local/Cellar/arm-gcc-bin@8/8-2019-q3-update_1/arm-none-eabi/include/**", | |
"/usr/local/Cellar/arm-gcc-bin@8/8-2019-q3-update_1/lib/gcc/arm-none-eabi/8.3.1/include/**", | |
"/usr/local/Cellar/arm-gcc-bin@8/8-2019-q3-update_1/lib/gcc/arm-none-eabi/8.3.1/include-fixed/**", | |
"/usr/local/Cellar/avr-gcc@8/8.4.0_2/avr/include/**", | |
"/usr/local/Cellar/avr-gcc@8/8.4.0_2/lib/avr-gcc/8/gcc/avr/8.4.0/include/**", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copyright 2021 Google LLC | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# | |
# https://www.apache.org/licenses/LICENSE-2.0 | |
# | |
# Unless required by applicable law or agreed to in writing, software | |
# distributed under the License is distributed on an "AS IS" BASIS, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include QMK_KEYBOARD_H | |
#include "dancing_brackets.h" | |
void tap_dance_dancing_bracket_on_each_tap(qk_tap_dance_state_t *state, void *user_data) { | |
if (state->count > 3) { | |
// There can't be reached any other state here. Stop tap dance. | |
timer_clear(); | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#define ENABLE_RGB_MATRIX_ALPHAS_MODS | |
#define ENABLE_RGB_MATRIX_GRADIENT_UP_DOWN | |
#define ENABLE_RGB_MATRIX_GRADIENT_LEFT_RIGHT | |
#define ENABLE_RGB_MATRIX_CYCLE_ALL | |
#define ENABLE_RGB_MATRIX_CYCLE_LEFT_RIGHT | |
#define ENABLE_RGB_MATRIX_CYCLE_UP_DOWN | |
#define ENABLE_RGB_MATRIX_RAINDROPS | |
#define ENABLE_RGB_MATRIX_JELLYBEAN_RAINDROPS | |
#define ENABLE_RGB_MATRIX_CYCLE_OUT_IN | |
#define ENABLE_RGB_MATRIX_CYCLE_OUT_IN_DUAL |
OlderNewer