aboutsummaryrefslogtreecommitdiffstats
path: root/keyboards/monsgeek
diff options
context:
space:
mode:
authorRyan2024-05-03 07:21:29 +0200
committerGitHub2024-05-03 07:21:29 +0200
commitd09a06a1b354760fd0e64a453abade972900e885 (patch)
tree88d94640f4507ac8d7f570607423825bec3c6f89 /keyboards/monsgeek
parent5426a7a129acf2ff5c8b435014747f1238e17965 (diff)
Update GPIO API usage in keyboard code (#23361)
Diffstat (limited to 'keyboards/monsgeek')
-rw-r--r--keyboards/monsgeek/m3/m3.c14
-rw-r--r--keyboards/monsgeek/m5/m5.c6
2 files changed, 10 insertions, 10 deletions
diff --git a/keyboards/monsgeek/m3/m3.c b/keyboards/monsgeek/m3/m3.c
index 9a93a7d7d4..04a9f0ca96 100644
--- a/keyboards/monsgeek/m3/m3.c
+++ b/keyboards/monsgeek/m3/m3.c
@@ -136,15 +136,15 @@ enum __layers {
};
void matrix_init_kb(void) {
- setPinOutput(LED_MAC_OS_PIN); // LDE2 MAC\WIN
- writePinLow(LED_MAC_OS_PIN);
- setPinOutput(LED_WIN_LOCK_PIN); // LED3 Win Lock
- writePinLow(LED_WIN_LOCK_PIN);
+ gpio_set_pin_output(LED_MAC_OS_PIN); // LDE2 MAC\WIN
+ gpio_write_pin_low(LED_MAC_OS_PIN);
+ gpio_set_pin_output(LED_WIN_LOCK_PIN); // LED3 Win Lock
+ gpio_write_pin_low(LED_WIN_LOCK_PIN);
}
void housekeeping_task_kb(void){
- writePin(LED_MAC_OS_PIN, (get_highest_layer(default_layer_state) == 3));
- writePin(LED_WIN_LOCK_PIN, keymap_config.no_gui);
+ gpio_write_pin(LED_MAC_OS_PIN, (get_highest_layer(default_layer_state) == 3));
+ gpio_write_pin(LED_WIN_LOCK_PIN, keymap_config.no_gui);
}
bool process_record_kb(uint16_t keycode, keyrecord_t* record) {
@@ -166,7 +166,7 @@ bool process_record_kb(uint16_t keycode, keyrecord_t* record) {
return false;
case GU_TOGG:
if (record->event.pressed) {
- writePin(LED_WIN_LOCK_PIN, !keymap_config.no_gui);
+ gpio_write_pin(LED_WIN_LOCK_PIN, !keymap_config.no_gui);
}
return true;
case RGB_TOG:
diff --git a/keyboards/monsgeek/m5/m5.c b/keyboards/monsgeek/m5/m5.c
index 822214a05c..3e1d752581 100644
--- a/keyboards/monsgeek/m5/m5.c
+++ b/keyboards/monsgeek/m5/m5.c
@@ -149,15 +149,15 @@ const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = {
#endif
void keyboard_pre_init_kb(void) {
- setPinOutput(LED_WIN_LOCK_PIN); // LED3 Win Lock
- writePinLow(LED_WIN_LOCK_PIN);
+ gpio_set_pin_output(LED_WIN_LOCK_PIN); // LED3 Win Lock
+ gpio_write_pin_low(LED_WIN_LOCK_PIN);
keyboard_pre_init_user();
}
bool led_update_kb(led_t led_state) {
bool res = led_update_user(led_state);
if (res) {
- writePin(LED_WIN_LOCK_PIN, keymap_config.no_gui);
+ gpio_write_pin(LED_WIN_LOCK_PIN, keymap_config.no_gui);
}
return res;
}