Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enable Xbox One auth on any board that has PS auth turned on #680

Merged
merged 2 commits into from
Dec 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions configs/Haute42/BoardConfig.h
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,9 @@

#define DEFAULT_PS4CONTROLLER_TYPE PS4_CONTROLLER

// Input Mode additions section.
#define DEFAULT_INPUT_MODE_R1 INPUT_MODE_XBONE

// This is the LEDs section.
// The default `TURBO_LED_PIN` pin is set to `15` ( it is recommended to run through 3V3(OUT) with a resistor)
// The Turbo LED will flash at a speed consistant with the set speed of the Turbo when a Turbo button is active.
Expand Down Expand Up @@ -320,6 +323,8 @@

#define PSPASSTHROUGH_ENABLED 1

#define XBONEPASSTHROUGH_ENABLED 1

#define INPUT_HISTORY_ENABLED 0
#define INPUT_HISTORY_LENGTH 20

Expand Down
5 changes: 5 additions & 0 deletions configs/OpenCore0/BoardConfig.h
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,9 @@

#define DEFAULT_PS4CONTROLLER_TYPE PS4_ARCADESTICK

// Input Mode additions section.
#define DEFAULT_INPUT_MODE_R1 INPUT_MODE_XBONE

// This is the LEDs section.
// The default `TURBO_LED_PIN` pin is set to `15` ( it is recommended to run through 3V3(OUT) with a resistor)
// The Turbo LED will flash at a speed consistant with the set speed of the Turbo when a Turbo button is active.
Expand Down Expand Up @@ -252,6 +255,8 @@
#define PSPASSTHROUGH_ENABLED 1
#define PSPASSTHROUGH_PIN_DPLUS 28

#define XBONEPASSTHROUGH_ENABLED 1

// Keyboard Mapping Configuration
// List of HID keycodes can be located here: https://github.com/hathach/tinyusb/blob/3623ba1884ddff23e9b64766cb6dd032f1425846/src/class/hid/hid.h#L356
// Even for the modifier keys, HID_KEY entries should be used as the implementation expects those and will convert as necessary.
Expand Down
5 changes: 5 additions & 0 deletions configs/OpenCore0WASD/BoardConfig.h
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,9 @@

#define DEFAULT_PS4CONTROLLER_TYPE PS4_ARCADESTICK

// Input Mode additions section.
#define DEFAULT_INPUT_MODE_R1 INPUT_MODE_XBONE

// This is the LEDs section.
// The default `TURBO_LED_PIN` pin is set to `15` ( it is recommended to run through 3V3(OUT) with a resistor)
// The Turbo LED will flash at a speed consistant with the set speed of the Turbo when a Turbo button is active.
Expand Down Expand Up @@ -252,6 +255,8 @@
#define PSPASSTHROUGH_ENABLED 1
#define PSPASSTHROUGH_PIN_DPLUS 28

#define XBONEPASSTHROUGH_ENABLED 1

// Keyboard Mapping Configuration
// List of HID keycodes can be located here: https://github.com/hathach/tinyusb/blob/3623ba1884ddff23e9b64766cb6dd032f1425846/src/class/hid/hid.h#L356
// Even for the modifier keys, HID_KEY entries should be used as the implementation expects those and will convert as necessary.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,9 @@
#define DEFAULT_PS4CONTROLLER_TYPE PS4_ARCADESTICK
#define DEFAULT_INPUT_MODE INPUT_MODE_PS4

// Input Mode additions section.
#define DEFAULT_INPUT_MODE_R1 INPUT_MODE_XBONE

// This is the LEDs section.
// The default `TURBO_LED_PIN` pin is set to `15` ( it is recommended to run through 3V3(OUT) with a resistor)
// The Turbo LED will flash at a speed consistant with the set speed of the Turbo when a Turbo button is active.
Expand Down Expand Up @@ -239,6 +242,8 @@
#define PSPASSTHROUGH_ENABLED 1
#define PSPASSTHROUGH_PIN_DPLUS 23

#define XBONEPASSTHROUGH_ENABLED 1

// Keyboard Mapping Configuration
// List of HID keycodes can be located here: https://github.com/hathach/tinyusb/blob/3623ba1884ddff23e9b64766cb6dd032f1425846/src/class/hid/hid.h#L356
// Even for the modifier keys, HID_KEY entries should be used as the implementation expects those and will convert as necessary.
Expand Down
5 changes: 5 additions & 0 deletions configs/ReflexEncodeV2.0/BoardConfig.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,11 @@
#define PSPASSTHROUGH_ENABLED 1
#define PSPASSTHROUGH_PIN_DPLUS 14

#define XBONEPASSTHROUGH_ENABLED 1

// Input Mode additions section.
#define DEFAULT_INPUT_MODE_R1 INPUT_MODE_XBONE

// This is the main pin definition section.
// This will let you specify which GPIO pin each button is assigned too.
// You can set any of the main pins as `-1` to disable it.
Expand Down
5 changes: 5 additions & 0 deletions configs/SGFFaust/BoardConfig.h
Original file line number Diff line number Diff line change
Expand Up @@ -85,10 +85,15 @@

#define DEFAULT_PS4CONTROLLER_TYPE PS4_ARCADESTICK

// Input Mode additions section.
#define DEFAULT_INPUT_MODE_R1 INPUT_MODE_XBONE

// USB Passthrough settings
#define PSPASSTHROUGH_ENABLED 1
#define PSPASSTHROUGH_PIN_DPLUS 12

#define XBONEPASSTHROUGH_ENABLED 1

// This is the LEDs section.
// The default `TURBO_LED_PIN` pin is set to `15` ( it is recommended to run through 3V3(OUT) with a resistor)
// The Turbo LED will flash at a speed consistant with the set speed of the Turbo when a Turbo button is active.
Expand Down