~ruther/qmk_firmware

87858108b525bb3c1f40f800a560780fb12101e1 — Álvaro A. Volpato 2 years ago baa9252
Modernize M75H and M75S firmwares (#21244)

6 files changed, 7 insertions(+), 65 deletions(-)

M keyboards/mode/m75h/config.h
M keyboards/mode/m75h/halconf.h
M keyboards/mode/m75h/info.json
D keyboards/mode/m75h/m75h.c
M keyboards/mode/m75h/rules.mk
M keyboards/mode/m75s/config.h
M keyboards/mode/m75h/config.h => keyboards/mode/m75h/config.h +2 -30
@@ 17,33 17,5 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>.

#pragma once

/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
#define LOCKING_SUPPORT_ENABLE
/* Locking resynchronize hack */
#define LOCKING_RESYNC_ENABLE

#define EEPROM_I2C_24LC256
//#define I2C1_CLOCK_SPEED 400000
//#define I2C1_DUTY_CYCLE FAST_DUTY_CYCLE_2

#define EARLY_INIT_PERFORM_BOOTLOADER_JUMP TRUE

/*
 * Feature disable options
 *  These options are also useful to firmware size reduction.
 */

/* disable debug print */
//#define NO_DEBUG

/* disable print */
//#define NO_PRINT

/* disable action features */
//#define NO_ACTION_LAYER
//#define NO_ACTION_TAPPING
//#define NO_ACTION_ONESHOT

#define TAP_CODE_DELAY 50

#define DYNAMIC_KEYMAP_EEPROM_MAX_ADDR 16383 // Overriding to use more EEPROM
#define WEAR_LEVELING_LOGICAL_SIZE 2048
#define WEAR_LEVELING_BACKING_SIZE 4096

M keyboards/mode/m75h/halconf.h => keyboards/mode/m75h/halconf.h +0 -2
@@ 21,6 21,4 @@

#pragma once

#define HAL_USE_I2C TRUE

#include_next <halconf.h>

M keyboards/mode/m75h/info.json => keyboards/mode/m75h/info.json +1 -1
@@ 1,5 1,5 @@
{
    "keyboard_name": "75H",
    "keyboard_name": "M75H",
    "manufacturer": "Mode",
    "url": "",
    "maintainer": "Gondolindrim",

D keyboards/mode/m75h/m75h.c => keyboards/mode/m75h/m75h.c +0 -22
@@ 1,22 0,0 @@
/*
 Copyright 2020 Álvaro "Gondolindrim" Volpato <alvaro.volpato@usp.br>

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 2 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/

#include "quantum.h"

void board_init(void) {
    setPinInput(B10);
}

M keyboards/mode/m75h/rules.mk => keyboards/mode/m75h/rules.mk +4 -5
@@ 1,16 1,15 @@
# Build Options
#   change yes to no to disable
#
BOOTMAGIC_ENABLE = yes      # Enable Bootmagic Lite
BOOTMAGIC_ENABLE = yes     # Enable Bootmagic Lite
MOUSEKEY_ENABLE = no       # Mouse keys
EXTRAKEY_ENABLE = yes      # Audio control and System control
CONSOLE_ENABLE = no        # Console for debug
COMMAND_ENABLE = no        # Commands for debug and configuration
NKRO_ENABLE = no            # Enable N-Key Rollover
NKRO_ENABLE = yes          # Enable N-Key Rollover
BACKLIGHT_ENABLE = no      # Enable keyboard backlight functionality
RGBLIGHT_ENABLE = no        # Enable keyboard RGB underglow
AUDIO_ENABLE = no           # Audio output
EEPROM_DRIVER = i2c
RGBLIGHT_ENABLE = no       # Enable keyboard RGB underglow
AUDIO_ENABLE = no          # Audio output
LTO_ENABLE = yes

# Enter lower-power sleep mode when on the ChibiOS idle thread

M keyboards/mode/m75s/config.h => keyboards/mode/m75s/config.h +0 -5
@@ 17,11 17,6 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>.

#pragma once

/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
#define LOCKING_SUPPORT_ENABLE
/* Locking resynchronize hack */
#define LOCKING_RESYNC_ENABLE

#define BACKLIGHT_DEFAULT_LEVEL 20
#define BACKLIGHT_PWM_DRIVER PWMD3
#define BACKLIGHT_PWM_CHANNEL 1