forked from qmk/qmk_firmware
-
Notifications
You must be signed in to change notification settings - Fork 81
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
18 changed files
with
4,416 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,189 @@ | ||
// Copyright 2023 Persama (@Persama) | ||
// SPDX-License-Identifier: GPL-2.0-or-later | ||
#pragma once | ||
|
||
#include "quantum.h" | ||
|
||
|
||
#define MAC_PRT G(S(KC_3)) | ||
#define MAC_PRTA G(S(KC_4)) | ||
#define WIN_PRTA G(S(KC_S)) | ||
|
||
#define RF_IDLE 0 | ||
#define RF_PAIRING 1 | ||
#define RF_LINKING 2 | ||
#define RF_CONNECT 3 | ||
#define RF_DISCONNECT 4 | ||
#define RF_SLEEP 5 | ||
#define RF_SNIF 6 | ||
#define RF_INVAILD 0XFE | ||
#define RF_ERR_STATE 0XFF | ||
|
||
#define CMD_POWER_UP 0XF0 | ||
#define CMD_SLEEP 0XF1 | ||
#define CMD_HAND 0XF2 | ||
#define CMD_SNIF 0XF3 | ||
#define CMD_24G_SUSPEND 0XF4 | ||
#define CMD_IDLE_EXIT 0XFE | ||
|
||
#define CMD_RPT_MS 0XE0 | ||
#define CMD_RPT_BYTE_KB 0XE1 | ||
#define CMD_RPT_BIT_KB 0XE2 | ||
#define CMD_RPT_CONSUME 0XE3 | ||
#define CMD_RPT_SYS 0XE4 | ||
|
||
#define CMD_SET_LINK 0XC0 | ||
#define CMD_SET_CONFIG 0XC1 | ||
#define CMD_GET_CONFIG 0XC2 | ||
#define CMD_SET_NAME 0XC3 | ||
#define CMD_GET_NAME 0XC4 | ||
#define CMD_CLR_DEVICE 0XC5 | ||
#define CMD_NEW_ADV 0XC7 | ||
#define CMD_RF_STS_SYSC 0XC9 | ||
#define CMD_SET_24G_NAME 0XCA | ||
#define CMD_GO_TEST 0XCF | ||
#define CMD_RF_DFU 0XB1 | ||
|
||
#define CMD_WRITE_DATA 0X80 | ||
#define CMD_READ_DATA 0X81 | ||
|
||
#define LINK_RF_24 0 | ||
#define LINK_BT_1 1 | ||
#define LINK_BT_2 2 | ||
#define LINK_BT_3 3 | ||
#define LINK_USB 4 | ||
|
||
#define UART_HEAD 0x5A | ||
#define FUNC_VALID_LEN 32 | ||
#define UART_MAX_LEN 64 | ||
|
||
#define SYS_SW_WIN 0xa1 | ||
#define SYS_SW_MAC 0xa2 | ||
|
||
#define RF_LINK_SHOW_TIME 300 | ||
|
||
#define HOST_USB_TYPE 0 | ||
#define HOST_BLE_TYPE 1 | ||
#define HOST_RF_TYPE 2 | ||
|
||
#define LINK_TIMEOUT (100 * 120) | ||
#define SLEEP_TIME_DELAY (100 * 360) | ||
#define POWER_DOWN_DELAY (24) | ||
|
||
#define RF_LONG_PRESS_DELAY 30 | ||
#define DEV_RESET_PRESS_DELAY 30 | ||
|
||
enum custom_keycodes { | ||
RF_DFU = QK_KB_0, | ||
LNK_USB, | ||
LNK_RF, | ||
LNK_BLE1, | ||
LNK_BLE2, | ||
LNK_BLE3, | ||
|
||
MAC_TASK, | ||
MAC_SEARCH, | ||
MAC_VOICE, | ||
MAC_CONSOLE, | ||
MAC_DND, | ||
|
||
WIN_LOCK, | ||
DEV_RESET, | ||
SLEEP_MODE, | ||
BAT_SHOW, | ||
RGB_TEST, | ||
SHIFT_GRV, | ||
|
||
SIDE_VAI, | ||
SIDE_VAD, | ||
SIDE_MOD, | ||
SIDE_HUI, | ||
SIDE_SPI, | ||
SIDE_SPD, | ||
|
||
LOGO_VAI, | ||
LOGO_VAD, | ||
LOGO_MOD, | ||
LOGO_HUI, | ||
LOGO_SPI, | ||
LOGO_SPD | ||
}; | ||
|
||
|
||
typedef enum { | ||
RX_Idle, | ||
RX_Receiving, | ||
RX_Done, | ||
RX_Fail, | ||
RX_OV_ERR, | ||
RX_SUM_ERR, | ||
RX_CMD_ERR, | ||
RX_DATA_ERR, | ||
RX_DATA_OV, | ||
RX_FORMAT_ERR, | ||
|
||
TX_OK = 0XE0, | ||
TX_DONE, | ||
TX_BUSY, | ||
TX_TIMEOUT, | ||
TX_DATA_ERR, | ||
|
||
} TYPE_RX_STATE; | ||
|
||
typedef struct | ||
{ | ||
uint8_t RXDState; | ||
uint8_t RXDLen; | ||
uint8_t RXDOverTime; | ||
uint8_t TXDLenBack; | ||
uint8_t TXDOffset; | ||
uint8_t TXDBuf[UART_MAX_LEN]; | ||
uint8_t RXDBuf[UART_MAX_LEN]; | ||
} USART_MGR_STRUCT; | ||
|
||
typedef struct | ||
{ | ||
uint8_t link_mode; | ||
uint8_t rf_channel; | ||
uint8_t ble_channel; | ||
uint8_t rf_state; | ||
uint8_t rf_charge; | ||
uint8_t rf_led; | ||
uint8_t rf_baterry; | ||
uint8_t sys_sw_state; | ||
} DEV_INFO_STRUCT; | ||
|
||
|
||
typedef struct | ||
{ | ||
uint8_t bit0: 1; | ||
uint8_t bit1: 1; | ||
uint8_t bit2: 1; | ||
uint8_t bit3: 1; | ||
uint8_t bit4: 1; | ||
uint8_t bit5: 1; | ||
uint8_t bit6: 1; | ||
uint8_t bit7: 1; | ||
}m_8bit; | ||
|
||
|
||
typedef struct | ||
{ | ||
uint8_t default_brightness_flag; | ||
uint8_t ee_side_mode; | ||
uint8_t ee_side_light; | ||
uint8_t ee_side_speed; | ||
uint8_t ee_side_rgb; | ||
uint8_t ee_side_colour; | ||
uint8_t ee_logo_mode; | ||
uint8_t ee_logo_light; | ||
uint8_t ee_logo_speed; | ||
uint8_t ee_logo_rgb; | ||
uint8_t ee_logo_colour; | ||
m_8bit ee_dev_config; | ||
} user_config_t; | ||
|
||
|
||
|
||
extern user_config_t user_config; | ||
#define f_dev_sleep_enable user_config.ee_dev_config.bit0 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
|
||
#pragma once | ||
|
||
#define USB_MODE 0 | ||
#define THREE_MODE 1 | ||
#define WORK_MODE THREE_MODE | ||
#define TAP_CODE_DELAY 8 | ||
#define DYNAMIC_KEYMAP_MACRO_DELAY 8 | ||
#define EECONFIG_USER_DATA_SIZE 12 | ||
#define DEV_MODE_PIN C0 | ||
#define SYS_MODE_PIN C1 | ||
#define DC_BOOST_PIN C2 | ||
#define NRF_RESET_PIN B4 | ||
#define NRF_BOOT_PIN B5 | ||
#define NRF_WAKEUP_PIN B8 | ||
#define WS2812_PWM_DRIVER PWMD3 | ||
#define WS2812_PWM_CHANNEL 2 | ||
#define WS2812_PWM_PAL_MODE 1 | ||
#define WS2812_DMA_STREAM STM32_DMA1_STREAM3 | ||
#define WS2812_DMA_CHANNEL 3 | ||
#define WS2812_PWM_TARGET_PERIOD 800000 | ||
#define DRIVER_RGB_DI_PIN A7 | ||
#define DRIVER_LED_CS_PIN C6 | ||
#define DRIVER_SIDE_PIN C8 | ||
#define DRIVER_SIDE_CS_PIN C9 | ||
#define SERIAL_DRIVER SD1 | ||
#define SD1_TX_PIN B6 | ||
#define SD1_TX_PAL_MODE 0 | ||
#define SD1_RX_PIN B7 | ||
#define SD1_RX_PAL_MODE 0 | ||
#define RGB_MATRIX_DEFAULT_MODE RGB_MATRIX_CUSTOM_position_mode | ||
#define RGB_DEFAULT_COLOUR 168 | ||
#define RGB_DISABLE_WHEN_USB_SUSPENDED | ||
|
||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#pragma once | ||
|
||
#include_next <halconf.h> | ||
|
||
#undef HAL_USE_PWM | ||
#define HAL_USE_PWM TRUE | ||
|
||
#undef HAL_USE_SERIAL | ||
#define HAL_USE_SERIAL TRUE |
Oops, something went wrong.