-
Notifications
You must be signed in to change notification settings - Fork 22
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
5 changed files
with
109 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
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,18 @@ | ||
# Copyright (C) 2016 Richard Hughes <[email protected]> | ||
|
||
VENDOR=8Bitdo | ||
PROJECT_NAME=SN30_Pro+ | ||
VERSION=3.02 | ||
FIRMWARE_FILES=Firmware_SN30_Pro+_V$(VERSION).dat | ||
METAINFO_FILES=sn30pro_plus.metainfo.xml | ||
|
||
all: $(VENDOR)-$(PROJECT_NAME)-$(VERSION).cab | ||
|
||
clean: | ||
rm *.cab | ||
|
||
check: $(METAINFO_FILES) | ||
appstream-util validate-relax $(METAINFO_FILES) | ||
|
||
%.cab: $(FIRMWARE_FILES) $(METAINFO_FILES) | ||
gcab --create --nopath $@ "$(FIRMWARE_FILES)" $(METAINFO_FILES) |
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,18 @@ | ||
2019-11-25 Firmware v3.02 | ||
1. 增加 Switch 模式的插线配对。 | ||
2. 修复 Switch 模式 USB 连接时电量显示错误的问题。 | ||
3. 优化摇杆的精准性。 | ||
|
||
---------------------------------------- | ||
工作模式: | ||
|
||
1. 按 Y+START 开机为 SWITCH 模式。 | ||
2. 按 A+START 开机为 MAC 模式。 | ||
3. 按 B+START 开机为 Android 模式。 | ||
4. 按 X+START 开机为 XINPUT模式。 | ||
|
||
手柄升级方法: | ||
|
||
1. 按住手柄 L1+R1+START 开机,顶部红灯闪烁。 | ||
2. 插入 USB 线连接 PC。 | ||
3. 点击 USB 升级按钮然后选择升级文件升级。 |
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,18 @@ | ||
2019-11-25 Firmware v3.02 | ||
1. Added bluetooth pairing function via USB cable on Switch mode. | ||
2. Fixed the battery indication error when connected to Switch. | ||
3. Enhance the accuracy of joystick. | ||
|
||
---------------------------------------------------------- | ||
Mode: | ||
1. Hold Y+START button POWER ON as SWITCH mode. | ||
2. Hold A+START button POWER ON as MAC mode. | ||
3. Hold B+START button POWER ON as Android mode. | ||
4. Hold X+START button POWER ON as Xinput mode. | ||
|
||
|
||
Firmware update instruction | ||
1. Press and hold L1+R1+START buttons on the controller to put it on its update mode. LED on the top will blink in red. | ||
2. Connect the controller to your PC via the USB cable. | ||
3. Click on "USB Upgrade" on your device, search for bluetooth_firmware.dat in the pop-up window and run it; | ||
4. Un-plug the gamepad when the upgrade process is done, then restart it before using. |
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,55 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- Copyright 2016 Richard Hughes <[email protected]> --> | ||
<!-- Copyright 2019 Mario Limonciello <[email protected]> --> | ||
<component type="firmware"> | ||
<id>com.8bitdo.sn30pro_plus.firmware</id> | ||
<name>SN30 Pro+</name> | ||
<summary>Firmware for the 8Bitdo SN30 Pro+ Game Controller</summary> | ||
<description> | ||
<p> | ||
Updating the firmware on your SN30 Pro+ device improves performance and | ||
adds new features. | ||
</p> | ||
</description> | ||
<provides> | ||
<!-- USB\VID_2DC8&PID_6002&REV_0001 --> | ||
<firmware type="flashed">64eb3e9c-e79c-50d0-984b-21a1641f37c5</firmware> | ||
<!-- USB\VID_2DC8&PID_6002 --> | ||
<firmware type="flashed">a9a82ee0-7fdc-5d80-bd73-6b39f7a4f061</firmware> | ||
</provides> | ||
<url type="homepage">http://www.8bitdo.com/sn30pro-plus/</url> | ||
<metadata_license>CC0-1.0</metadata_license> | ||
<project_license>Proprietary</project_license> | ||
<developer_name>8Bitdo</developer_name> | ||
<releases> | ||
<release urgency="medium" version="3.02" date="2019-11-07" timestamp="1573159318"> | ||
<checksum filename="Firmware_SN30_Pro+_V3.02.dat" target="content"/> | ||
<description> | ||
<p>This stable release fixes the following issues:</p> | ||
<ul> | ||
<li>Added bluetooth pairing function via USB cable on Switch mode.</li> | ||
<li>Fixed the battery indication error when connected to Switch.</li> | ||
<li>Enhance the accuracy of joystick.</li> | ||
</ul> | ||
</description> | ||
</release> | ||
</releases> | ||
<screenshots> | ||
<screenshot type="default"> | ||
<image type="source">https://raw.githubusercontent.com/fwupd/8bitdo-firmware/master/screenshots/sn30-pro.png</image> | ||
<caption>Unplug the controller, hold down L1 + R1 + START until the red LED on top of the controller is flashing and then reconnect the controller.</caption> | ||
</screenshot> | ||
</screenshots> | ||
|
||
<!-- only newer versions of fwupd know about the new controller --> | ||
<requires> | ||
<id compare="ge" version="1.0.3">org.freedesktop.fwupd</id> | ||
</requires> | ||
|
||
<categories> | ||
<category>X-Device</category> | ||
</categories> | ||
<custom> | ||
<value key="LVFS::UpdateProtocol">com.8bitdo</value> | ||
</custom> | ||
</component> |