From 6ccff10f8c99e3a61b0364ddb279c0e2e53efa47 Mon Sep 17 00:00:00 2001 From: JackyJia73 Date: Tue, 10 Sep 2024 11:31:54 +0800 Subject: [PATCH] format al68.c --- keyboards/yunzii/al68/al68.c | 25 +++++++++---------------- 1 file changed, 9 insertions(+), 16 deletions(-) diff --git a/keyboards/yunzii/al68/al68.c b/keyboards/yunzii/al68/al68.c index 1ecf6b1cb45..be318e7b269 100644 --- a/keyboards/yunzii/al68/al68.c +++ b/keyboards/yunzii/al68/al68.c @@ -6,31 +6,24 @@ #include "common/smart_ble.h" #include "al68.h" - void keyboard_pre_init_kb(void) { AFIO->MAPR = (AFIO->MAPR & ~AFIO_MAPR_SWJ_CFG_Msk); - AFIO->MAPR|= AFIO_MAPR_SWJ_CFG_DISABLE; //diable JTAG (GD32 different to STM32) + AFIO->MAPR |= AFIO_MAPR_SWJ_CFG_DISABLE; // diable JTAG (GD32 different to STM32) gpio_set_pin_output(A8); - gpio_write_pin_high(A8); //ENABLE USB + gpio_write_pin_high(A8); // ENABLE USB uart_init(460800); wait_ms(400); } -bool process_record_kb(uint16_t keycode, keyrecord_t* record) -{ - if (record->event.pressed){ - if ((keycode>=KC_BLE1) && (keycode<=KC_24G)) - { - wireless_start(keycode-KC_USB); - return false; - } - else if (keycode == KC_USB) - { +bool process_record_kb(uint16_t keycode, keyrecord_t* record) { + if (record->event.pressed) { + if ((keycode >= KC_BLE1) && (keycode <= KC_24G)) { + wireless_start(keycode - KC_USB); + return false; + } else if (keycode == KC_USB) { wireless_stop(); return false; } } - return process_record_user(keycode, record); + return process_record_user(keycode, record); } - -