-
Notifications
You must be signed in to change notification settings - Fork 323
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into one-pin-multiple-buttons-ui-revamp
# Conflicts: # proto/config.proto # www/package-lock.json # www/package.json # www/src/Addons/Wii.tsx # www/src/Pages/InputMacroAddonPage.tsx
- Loading branch information
Showing
145 changed files
with
4,812 additions
and
2,282 deletions.
There are no files selected for viewing
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
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
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
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,36 @@ | ||
/* | ||
* SPDX-License-Identifier: MIT | ||
* SPDX-FileCopyrightText: Copyright (c) 2024 OpenStickCommunity (gp2040-ce.info) | ||
*/ | ||
|
||
#ifndef PICO_BOARD_CONFIG_H_ | ||
#define PICO_BOARD_CONFIG_H_ | ||
|
||
#include "enums.pb.h" | ||
#include "class/hid/hid.h" | ||
|
||
#define BOARD_CONFIG_LABEL "Blank Configuration" | ||
|
||
// Keyboard Mapping Configuration | ||
// // GP2040 | Xinput | Switch | PS3/4/5 | Dinput | Arcade | | ||
#define KEY_DPAD_UP HID_KEY_ARROW_UP // UP | UP | UP | UP | UP | UP | | ||
#define KEY_DPAD_DOWN HID_KEY_ARROW_DOWN // DOWN | DOWN | DOWN | DOWN | DOWN | DOWN | | ||
#define KEY_DPAD_RIGHT HID_KEY_ARROW_RIGHT // RIGHT | RIGHT | RIGHT | RIGHT | RIGHT | RIGHT | | ||
#define KEY_DPAD_LEFT HID_KEY_ARROW_LEFT // LEFT | LEFT | LEFT | LEFT | LEFT | LEFT | | ||
#define KEY_BUTTON_B1 HID_KEY_SHIFT_LEFT // B1 | A | B | Cross | 2 | K1 | | ||
#define KEY_BUTTON_B2 HID_KEY_Z // B2 | B | A | Circle | 3 | K2 | | ||
#define KEY_BUTTON_R2 HID_KEY_X // R2 | RT | ZR | R2 | 8 | K3 | | ||
#define KEY_BUTTON_L2 HID_KEY_V // L2 | LT | ZL | L2 | 7 | K4 | | ||
#define KEY_BUTTON_B3 HID_KEY_CONTROL_LEFT // B3 | X | Y | Square | 1 | P1 | | ||
#define KEY_BUTTON_B4 HID_KEY_ALT_LEFT // B4 | Y | X | Triangle | 4 | P2 | | ||
#define KEY_BUTTON_R1 HID_KEY_SPACE // R1 | RB | R | R1 | 6 | P3 | | ||
#define KEY_BUTTON_L1 HID_KEY_C // L1 | LB | L | L1 | 5 | P4 | | ||
#define KEY_BUTTON_S1 HID_KEY_5 // S1 | Back | Minus | Select | 9 | Coin | | ||
#define KEY_BUTTON_S2 HID_KEY_1 // S2 | Start | Plus | Start | 10 | Start | | ||
#define KEY_BUTTON_L3 HID_KEY_EQUAL // L3 | LS | LS | L3 | 11 | LS | | ||
#define KEY_BUTTON_R3 HID_KEY_MINUS // R3 | RS | RS | R3 | 12 | RS | | ||
#define KEY_BUTTON_A1 HID_KEY_9 // A1 | Guide | Home | PS | 13 | ~ | | ||
#define KEY_BUTTON_A2 HID_KEY_F2 // A2 | ~ | Capture | ~ | 14 | ~ | | ||
#define KEY_BUTTON_FN -1 // Hotkey Function | | ||
|
||
#endif |
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,3 @@ | ||
#add_executable(Pico | ||
#${CMAKE_SOURCE_DIR}/src/main.cpp) | ||
#link_libraries(${PROJECT_NAME}) |
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,5 @@ | ||
# GP2040 Blank Configuration | ||
|
||
This is a blank configuration file. It will not map any pins by defualt. | ||
|
||
This is good for builders who want to setup from scratch or those that want to experiment. It is recommended to the the `force_webconfig.uf2` to get into web-config so you can set a `start` button. |
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
File renamed without changes.
File renamed without changes.
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
File renamed without changes
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
File renamed without changes
File renamed without changes
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,182 @@ | ||
/* | ||
* SPDX-License-Identifier: MIT | ||
* SPDX-FileCopyrightText: Copyright (c) 2024 OpenStickCommunity (gp2040-ce.info) | ||
*/ | ||
|
||
#ifndef MAVERCADE_CONFIG_H_ | ||
#define MAVERCADE_CONFIG_H_ | ||
|
||
#include "enums.pb.h" | ||
#include "class/hid/hid.h" | ||
|
||
#define BOARD_CONFIG_LABEL "Mavercade Rev2" | ||
|
||
// Main pin mapping Configuration | ||
// // GP2040 | Xinput | Switch | PS3/4/5 | Dinput | Arcade | | ||
#define GPIO_PIN_11 GpioAction::BUTTON_PRESS_UP // UP | UP | UP | UP | UP | UP | | ||
#define GPIO_PIN_20 GpioAction::BUTTON_PRESS_UP // UP | UP | UP | UP | UP | UP | | ||
#define GPIO_PIN_08 GpioAction::BUTTON_PRESS_DOWN // DOWN | DOWN | DOWN | DOWN | DOWN | DOWN | | ||
#define GPIO_PIN_10 GpioAction::BUTTON_PRESS_RIGHT // RIGHT | RIGHT | RIGHT | RIGHT | RIGHT | RIGHT | | ||
#define GPIO_PIN_07 GpioAction::BUTTON_PRESS_LEFT // LEFT | LEFT | LEFT | LEFT | LEFT | LEFT | | ||
#define GPIO_PIN_12 GpioAction::BUTTON_PRESS_B1 // B1 | A | B | Cross | 2 | K1 | | ||
#define GPIO_PIN_17 GpioAction::BUTTON_PRESS_B2 // B2 | B | A | Circle | 3 | K2 | | ||
#define GPIO_PIN_18 GpioAction::BUTTON_PRESS_R2 // R2 | RT | ZR | R2 | 8 | K3 | | ||
#define GPIO_PIN_09 GpioAction::BUTTON_PRESS_L2 // L2 | LT | ZL | L2 | 7 | K4 | | ||
#define GPIO_PIN_16 GpioAction::BUTTON_PRESS_B3 // B3 | X | Y | Square | 1 | P1 | | ||
#define GPIO_PIN_14 GpioAction::BUTTON_PRESS_B4 // B4 | Y | X | Triangle | 4 | P2 | | ||
#define GPIO_PIN_15 GpioAction::BUTTON_PRESS_R1 // R1 | RB | R | R1 | 6 | P3 | | ||
#define GPIO_PIN_19 GpioAction::BUTTON_PRESS_L1 // L1 | LB | L | L1 | 5 | P4 | | ||
#define GPIO_PIN_23 GpioAction::BUTTON_PRESS_S1 // S1 | Back | Minus | Select | 9 | Coin | | ||
#define GPIO_PIN_24 GpioAction::BUTTON_PRESS_S2 // S2 | Start | Plus | Start | 10 | Start | | ||
#define GPIO_PIN_06 GpioAction::BUTTON_PRESS_L3 // L3 | LS | LS | L3 | 11 | LS | | ||
#define GPIO_PIN_13 GpioAction::BUTTON_PRESS_R3 // R3 | RS | RS | R3 | 12 | RS | | ||
#define GPIO_PIN_22 GpioAction::BUTTON_PRESS_A1 // A1 | Guide | Home | PS | 13 | ~ | | ||
#define GPIO_PIN_21 GpioAction::BUTTON_PRESS_A2 // A2 | ~ | Capture | ~ | 14 | ~ | | ||
|
||
// Setting GPIO pins to assigned by add-on | ||
// | ||
#define GPIO_PIN_01 GpioAction::ASSIGNED_TO_ADDON | ||
#define GPIO_PIN_02 GpioAction::ASSIGNED_TO_ADDON | ||
#define GPIO_PIN_03 GpioAction::ASSIGNED_TO_ADDON | ||
#define GPIO_PIN_04 GpioAction::ASSIGNED_TO_ADDON | ||
#define GPIO_PIN_05 GpioAction::ASSIGNED_TO_ADDON | ||
#define GPIO_PIN_29 GpioAction::ASSIGNED_TO_ADDON | ||
|
||
// Keyboard Mapping Configuration | ||
// // GP2040 | Xinput | Switch | PS3/4/5 | Dinput | Arcade | | ||
#define KEY_DPAD_UP HID_KEY_ARROW_UP // UP | UP | UP | UP | UP | UP | | ||
#define KEY_DPAD_DOWN HID_KEY_ARROW_DOWN // DOWN | DOWN | DOWN | DOWN | DOWN | DOWN | | ||
#define KEY_DPAD_RIGHT HID_KEY_ARROW_RIGHT // RIGHT | RIGHT | RIGHT | RIGHT | RIGHT | RIGHT | | ||
#define KEY_DPAD_LEFT HID_KEY_ARROW_LEFT // LEFT | LEFT | LEFT | LEFT | LEFT | LEFT | | ||
#define KEY_BUTTON_B1 HID_KEY_SHIFT_LEFT // B1 | A | B | Cross | 2 | K1 | | ||
#define KEY_BUTTON_B2 HID_KEY_Z // B2 | B | A | Circle | 3 | K2 | | ||
#define KEY_BUTTON_R2 HID_KEY_X // R2 | RT | ZR | R2 | 8 | K3 | | ||
#define KEY_BUTTON_L2 HID_KEY_V // L2 | LT | ZL | L2 | 7 | K4 | | ||
#define KEY_BUTTON_B3 HID_KEY_CONTROL_LEFT // B3 | X | Y | Square | 1 | P1 | | ||
#define KEY_BUTTON_B4 HID_KEY_ALT_LEFT // B4 | Y | X | Triangle | 4 | P2 | | ||
#define KEY_BUTTON_R1 HID_KEY_SPACE // R1 | RB | R | R1 | 6 | P3 | | ||
#define KEY_BUTTON_L1 HID_KEY_C // L1 | LB | L | L1 | 5 | P4 | | ||
#define KEY_BUTTON_S1 HID_KEY_5 // S1 | Back | Minus | Select | 9 | Coin | | ||
#define KEY_BUTTON_S2 HID_KEY_1 // S2 | Start | Plus | Start | 10 | Start | | ||
#define KEY_BUTTON_L3 HID_KEY_EQUAL // L3 | LS | LS | L3 | 11 | LS | | ||
#define KEY_BUTTON_R3 HID_KEY_MINUS // R3 | RS | RS | R3 | 12 | RS | | ||
#define KEY_BUTTON_A1 HID_KEY_9 // A1 | Guide | Home | PS | 13 | ~ | | ||
#define KEY_BUTTON_A2 HID_KEY_F2 // A2 | ~ | Capture | ~ | 14 | ~ | | ||
#define KEY_BUTTON_FN -1 // Hotkey Function | | ||
|
||
#define USB_PERIPHERAL_ENABLED 1 | ||
#define USB_PERIPHERAL_PIN_DPLUS 1 | ||
|
||
#define DEFAULT_INPUT_MODE_R1 INPUT_MODE_XBONE | ||
#define DEFAULT_INPUT_MODE_B4 INPUT_MODE_PS5 | ||
#define DEFAULT_PS5AUTHENTICATION_TYPE INPUT_MODE_AUTH_TYPE_USB | ||
|
||
#define BOARD_LEDS_PIN 3 | ||
|
||
#define LED_BRIGHTNESS_MAXIMUM 50 | ||
#define LEDS_PER_PIXEL 1 | ||
#define LEDS_BASE_ANIMATION_INDEX 1 | ||
#define LEDS_BUTTON_A2 0 | ||
#define LEDS_BUTTON_L3 1 | ||
#define LEDS_DPAD_LEFT 2 | ||
#define LEDS_DPAD_DOWN 3 | ||
#define LEDS_DPAD_RIGHT 4 | ||
#define LEDS_BUTTON_B3 5 | ||
#define LEDS_BUTTON_B4 6 | ||
#define LEDS_BUTTON_R1 7 | ||
#define LEDS_BUTTON_L1 8 | ||
#define LEDS_BUTTON_L2 9 | ||
#define LEDS_BUTTON_R2 10 | ||
#define LEDS_BUTTON_B2 11 | ||
#define LEDS_BUTTON_B1 12 | ||
#define LEDS_BUTTON_R3 13 | ||
#define LEDS_DPAD_UP 14 | ||
|
||
#define HAS_I2C_DISPLAY 1 | ||
#define I2C0_ENABLED 1 | ||
#define I2C0_PIN_SDA 4 | ||
#define I2C0_PIN_SCL 5 | ||
#define DISPLAY_I2C_BLOCK i2c0 | ||
|
||
#define REVERSE_UP_DEFAULT 1 | ||
#define REVERSE_DOWN_DEFAULT 1 | ||
#define REVERSE_LEFT_DEFAULT 1 | ||
#define REVERSE_RIGHT_DEFAULT 1 | ||
|
||
#define BUTTON_LAYOUT BUTTON_LAYOUT_STICKLESS | ||
#define BUTTON_LAYOUT_RIGHT BUTTON_LAYOUT_STICKLESSB | ||
#define SPLASH_MODE SPLASH_MODE_STATIC | ||
#define SPLASH_DURATION 3000 | ||
|
||
#define FOCUS_MODE_ENABLED 1 | ||
#define FOCUS_MODE_BUTTON_MASK GAMEPAD_MASK_S1 | GAMEPAD_MASK_S2 | GAMEPAD_MASK_A1 | GAMEPAD_MASK_A2 | ||
#define FOCUS_MODE_PIN 29 | ||
#define FOCUS_MODE_BUTTON_LOCK_ENABLED 1 | ||
|
||
#define DEFAULT_SPLASH \ | ||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, \ | ||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, \ | ||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, \ | ||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, \ | ||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, \ | ||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, \ | ||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, \ | ||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, \ | ||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, \ | ||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, \ | ||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, \ | ||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, \ | ||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, \ | ||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, \ | ||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, \ | ||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, \ | ||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, \ | ||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, \ | ||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, \ | ||
0x00,0x00,0x00,0x00,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, \ | ||
0x00,0x00,0x00,0x00,0x00,0x10,0x00,0x00,0x00,0x00,0x40,0x00,0x00,0x00,0x00,0x00, \ | ||
0x00,0x00,0x70,0x00,0x00,0x30,0x00,0x00,0x00,0x00,0xE0,0x00,0x00,0x00,0x00,0x00, \ | ||
0x00,0xE1,0xF0,0x00,0x00,0x70,0x00,0x00,0x00,0x00,0xE0,0x00,0x00,0x00,0x00,0x00, \ | ||
0x03,0xE1,0xF0,0x3F,0xE0,0x61,0xFF,0x8C,0x00,0x06,0xF0,0x3E,0x1F,0x00,0x3F,0xE0, \ | ||
0x03,0xE3,0xF0,0x7F,0xE0,0xDF,0xFF,0xEF,0xF8,0x0F,0xF0,0x7C,0xFF,0xC7,0xFF,0xFC, \ | ||
0x03,0xE3,0xF0,0xFF,0xE1,0xDF,0xFF,0xDF,0xFC,0x1F,0xF0,0xFD,0xFF,0xE7,0xFF,0xF8, \ | ||
0x03,0xC7,0xE1,0xFF,0xE1,0xDF,0xF8,0x3F,0xFE,0x3F,0xE0,0xFF,0xF1,0xF3,0xFF,0x00, \ | ||
0x07,0xC7,0xE1,0xFB,0xE3,0xC7,0x00,0x1E,0x0F,0x3D,0xE1,0xFC,0x70,0xF8,0xE0,0x00, \ | ||
0x07,0xCF,0xC3,0xF9,0xE3,0xC7,0x00,0x1E,0x1F,0x7D,0x83,0xF8,0x70,0x79,0xE0,0x00, \ | ||
0x07,0xDF,0xC3,0xFB,0xF7,0x9F,0xFF,0x1E,0xFF,0xF9,0x03,0xF8,0x60,0x7F,0xFF,0xC0, \ | ||
0x07,0xDF,0xC7,0xB9,0xFF,0xFF,0xF4,0x7F,0xFF,0xF8,0x07,0xB8,0xE0,0x67,0xFE,0x80, \ | ||
0x0F,0xDF,0x87,0x31,0xFF,0x7E,0x00,0xFF,0xFC,0xF8,0x07,0x38,0xE0,0xF7,0xC0,0x00, \ | ||
0x0F,0xFF,0x8F,0x7F,0xFE,0x1E,0x00,0xFF,0xF0,0xF0,0x0F,0x3F,0xE1,0xF3,0x80,0x00, \ | ||
0x0E,0xEF,0x8F,0xFD,0xFE,0x1E,0x00,0xFF,0x01,0xF0,0x0F,0xFF,0xE3,0xE7,0x80,0x00, \ | ||
0x0E,0x0F,0x1F,0xF9,0xFC,0x3C,0x03,0xFF,0x81,0xF0,0x3F,0xF9,0xC7,0xE7,0x80,0x70, \ | ||
0x1E,0x1F,0x1F,0x71,0xFC,0x3C,0x7F,0xBF,0xE1,0xF0,0xEF,0x73,0xCF,0xC7,0x0F,0xF0, \ | ||
0x1C,0x1F,0x1C,0x71,0xF8,0x3D,0xFF,0xBF,0xF9,0xF3,0xFC,0x73,0xDF,0x0F,0x7F,0xE0, \ | ||
0x1C,0x1E,0x38,0x60,0xF0,0x3F,0xFF,0x3F,0xFD,0xFF,0xFC,0x63,0xFE,0x0F,0xFF,0xE0, \ | ||
0x1C,0x1E,0x38,0xE0,0xE0,0x3F,0xFC,0x38,0xFF,0xFF,0xB8,0xE7,0xFC,0x07,0xFF,0x80, \ | ||
0x1C,0x1E,0x30,0xE0,0xC0,0x3F,0xE0,0x38,0x0F,0x7F,0x30,0xEF,0xC0,0x07,0xF8,0x00, \ | ||
0x00,0x3E,0x20,0xE0,0x00,0x1E,0x00,0x00,0x00,0x0E,0x20,0xE0,0x00,0x03,0xC0,0x00, \ | ||
0x00,0x3C,0x00,0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xC0,0x00,0x00,0x00,0x00, \ | ||
0x00,0x3C,0x01,0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xC0,0x00,0x00,0x00,0x00, \ | ||
0x00,0x7C,0x01,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x40,0x00,0x00,0x00,0x00, \ | ||
0x00,0x7C,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, \ | ||
0x00,0x7C,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, \ | ||
0x00,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, \ | ||
0x00,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, \ | ||
0x00,0xF0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, \ | ||
0x00,0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, \ | ||
0x00,0x80,0x00,0x00,0x0F,0x3C,0x78,0xF8,0x31,0xF0,0x0E,0x78,0x00,0x00,0x00,0x00, \ | ||
0x00,0x00,0x00,0x00,0x10,0x32,0x04,0x08,0x50,0x10,0x10,0x40,0x00,0x00,0x00,0x00, \ | ||
0x00,0x00,0x00,0x00,0x10,0x22,0x05,0x08,0x52,0x10,0x10,0x40,0x00,0x00,0x00,0x00, \ | ||
0x00,0x00,0x00,0x00,0x10,0x22,0x09,0x08,0x92,0x10,0x10,0x60,0x00,0x00,0x00,0x00, \ | ||
0x00,0x00,0x00,0x00,0x13,0x36,0x31,0x08,0x92,0x13,0x90,0x60,0x00,0x00,0x00,0x00, \ | ||
0x00,0x00,0x00,0x00,0x11,0x30,0x41,0x09,0xFA,0x10,0x10,0x40,0x00,0x00,0x00,0x00, \ | ||
0x00,0x00,0x00,0x00,0x11,0x20,0x41,0x88,0x13,0x10,0x10,0x40,0x00,0x00,0x00,0x00, \ | ||
0x00,0x00,0x00,0x00,0x1F,0x20,0x7C,0xF8,0x11,0xF0,0x1E,0x78,0x00,0x00,0x00,0x00, \ | ||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, \ | ||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, \ | ||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, \ | ||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, \ | ||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, \ | ||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 | ||
|
||
#endif |
Oops, something went wrong.