1
This commit is contained in:
Evan Pratten 2022-06-23 14:06:56 -04:00
parent 46d8c52892
commit da7cd7c5a1
6 changed files with 118 additions and 1 deletions

View File

@ -3,6 +3,7 @@
"callsign",
"callsigns",
"centimetre",
"configurability",
"grayscale",
"inpainting",
"rotoscope"

View File

@ -13,6 +13,12 @@ extra:
<img style="max-width:400px;" src="https://bgp.tools/pathimg/204466-default" alt="Routing overview is currently unavailable for display">
</div>
<br>
You may find the following links useful:
- [bgp.tools](https://bgp.tools/as/204466)
- [PeeringDB](https://www.peeringdb.com/asn/204466)
## Network goals
- Focus on IPv6 adoption
@ -30,7 +36,14 @@ Looking to peer with the network? [Send me a message](/contact), and I'll work s
| [`44.31.62.0/24`](https://bgp.tools/prefix/44.31.62.0/24) | London, UK | AMPRNet address block |
| [`2a06:a005:d2b::/48`](https://bgp.tools/prefix/2a06:a005:d2b::/48) | Toronto, CA | North America - General use |
| [`2a12:dd47:8040::/48`](https://bgp.tools/prefix/2a12:dd47:8040::/48) | London, UK | General use & Infrastructure |
| [`2a06:a005:ed1::/48`](https://bgp.tools/prefix/2a06:a005:ed1::/48) | London, UK | Europe - General use |
| [`2a06:a005:edf::/48`](https://bgp.tools/prefix/2a06:a005:edf::/48) | N/A | Anycast Prefix |
### Anycast addresses
I am making use of anycast addresses to provide simple geographically routed endpoints for various services. The following are what I have set up so far:
- `2a06:a005:edf::1`: Best router
- `2a06:a005:edf::614c`: Best 6in4 tunnel
## Requests and employment opportunities

View File

@ -0,0 +1,9 @@
---
title: Setup Notes
---
```sh
apt install neovim wireguard-tools bird2 net-tools openresolv
wget https://github.com/coredns/coredns/releases/download/v1.9.3/coredns_1.9.3_linux_amd64.tgz -O /tmp/coredns.tgz
tar -xzf /tmp/coredns.tgz -C /usr/local/bin
```

View File

@ -0,0 +1,94 @@
---
layout: page
title: "Using a Steam Controller with the Nintendo Switch"
description: "An unreasonably cursed setup for zero gain"
date: 2022-06-23
tags: random
draft: false
extra:
uses_katex: false
auto_center_images: true
excerpt: How to flash custom firmware to the Steam Controller, allowing it to connect to the Nintendo Switch
---
Remember the [Steam Controller](https://store.steampowered.com/app/353370/Steam_Controller/)?
![Image of the Steam Controller](/images/posts/steam-switch/sc.png)
As it turns out, pretty much nobody does. I picked mine up back in elementary school at a good ol' [EB Games](https://en.wikipedia.org/wiki/EB_Games) shop, and remember being blown away by the extensible configurability of the thing. Shooting portals with gyro aim really *was* a cool thing to experience.
## What do you do with an old Steam Controller?
Well, I ended up surrounding myself with [Nintendo Switch](https://en.wikipedia.org/wiki/Nintendo_Switch) owners, and instantly disliking the feel of the [Joy-Con](https://en.wikipedia.org/wiki/Nintendo_Switch#Joy-Con) controllers (seriously, who makes digital triggers!?). Thus the thought:
> I wonder if I can pair third-party controllers to the switch?
It turns out that, yes, with some effort this is possible. Firstly, I tried an [Xbox Wireless Controller](https://en.wikipedia.org/wiki/Xbox_Wireless_Controller) which should *in theory* be compatible with the switch. According to various people on Reddit, later versions of the Nintendo Switch firmware contain a driver for the Xbox dongle, when plugged into the back of the switch dock, but I left my bluetooth dongle at my old highschool in another city, so that plan isn't going very far.
Back to the Steam Controller. I thought, surely a completely configurable input device like this could be set up in a way to trick the switch into thinking its a supported controller.
## I was *almost* wrong
As it turns out, I was not alone in wanting to Nintendo-ify a Steam Controller, and someone has already done most of the work.
**Disclaimer:** The following is about to be a guide in doing rather questionable things with a Steam Controller. If you aren't 100% sure what you are doing with these types of devices, do not try any of this.
### The OpenSteamController project
[OpenSteamController](https://github.com/greggersaurus/OpenSteamController) is a now-abandoned project that completely re-implements the core functionality of the Steam Controller through reverse-engineered code.
With just a bit of work (and selling your soul to [NXP](https://www.nxp.com/)), you can compile the custom firmware, and swap out the existing firmware for your own with patched switch support!
#### The steps
1) Clone the [OpenSteamController](https://github.com/greggersaurus/OpenSteamController) repository
2) Head over to the [LPCXpresso IDE](https://www.nxp.com/design/microcontrollers-developer-resources/lpcxpresso-ide-v8-2-2:LPCXPRESSO) download page, press the download button, create an account, and install the latest IDE version
3) Open the LPCXpresso IDE
4) Do `File > Import > General > Existing Project into Workspace` for both of these directories:
- `/path/to/OpenSteamController/firmware/OpenSteamController`
- `/path/to/OpenSteamController/firmware/lpc_chip_11uxx_lib`
5) Change `FIRMWARE_BEHAVIOR` to have the value `SWITCH_WIRED_POWERA_FW` in `OpenSteamController/inc/fw_cfg.h`
6) Right click the lpc project and build it, then do the same for the OpenSteamController project
For a less terse walkthrough, see [the tutorial video](https://www.youtube.com/watch?v=VxD9rCuD9Vc).
After completing these steps, you will have a new firmware file at
```text
OpenSteamController/Debug/OpenSteamController.bin
```
### Flashing custom firmware to the Steam Controller;
Now for the fun part. It turns out the Steam Controller has a sort of [Device Firmware Upgrade](https://en.wikipedia.org/wiki/USB#Device_Firmware_Upgrade_mechanism) (DFU) mechanism that can be triggered by holding the *right trigger* while plugging the controller in.
After doing so, a new "drive" will appear on your machine called `CRP DISABLD`.
**Make a backup of the firmware file on this drive!**
At this point, the final flashing step is os-dependent. Assume your `OpenSteamController.bin` file is `${FIRMWARE}` and the path to your `CRP DISABLED` drive is `${CRP_DRV}`.
#### Linux
```sh
dd conv=nocreat,notrunc oflag=direct bs=512 if=${FIRMWARE} of=${CRP_DRV}/firmware.bin
```
#### macOS
```sh
cat ${FIRMWARE} > ${CRP_DRV}/firmware.bin
```
#### Windows
Simply copy the `OpenSteamController.bin` file to the `CRP DISABLED` drive and rename it to `firmware.bin`
### Connecting everything
Finally, with a full-sized USB to USB-C adapter (like the one that comes with most phones), you can plug the controller into the switch. Make sure to enable support for wired switch pro controllers in the settings if you have issues.
A known (and annoying) problem is that the trackpads are *wayy* too sensitive with this firmware so.. Good luck?
![My steam controller plugged into a switch](/images/posts/steam-switch/sc-switch.jpg)
If you want to revert to factory firmware, just copy the saved `firmware.bin` file back to the controller in the same way you deployed the custom one.

Binary file not shown.

After

Width:  |  Height:  |  Size: 729 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB