├── .gitignore ├── .vscode ├── c_cpp_properties.json ├── cmake-kits.json ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── CMakeLists.txt ├── LICENSE ├── PicoUltranetDecoder.jpg ├── README.md ├── core1.c ├── pico_sdk_import.cmake ├── ultranet.c ├── ultranet.h └── ultranet.pio /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doughadfield/Ultranet-to-I2S/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doughadfield/Ultranet-to-I2S/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/cmake-kits.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doughadfield/Ultranet-to-I2S/HEAD/.vscode/cmake-kits.json -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doughadfield/Ultranet-to-I2S/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doughadfield/Ultranet-to-I2S/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doughadfield/Ultranet-to-I2S/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doughadfield/Ultranet-to-I2S/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doughadfield/Ultranet-to-I2S/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doughadfield/Ultranet-to-I2S/HEAD/LICENSE -------------------------------------------------------------------------------- /PicoUltranetDecoder.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doughadfield/Ultranet-to-I2S/HEAD/PicoUltranetDecoder.jpg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doughadfield/Ultranet-to-I2S/HEAD/README.md -------------------------------------------------------------------------------- /core1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doughadfield/Ultranet-to-I2S/HEAD/core1.c -------------------------------------------------------------------------------- /pico_sdk_import.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doughadfield/Ultranet-to-I2S/HEAD/pico_sdk_import.cmake -------------------------------------------------------------------------------- /ultranet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doughadfield/Ultranet-to-I2S/HEAD/ultranet.c -------------------------------------------------------------------------------- /ultranet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doughadfield/Ultranet-to-I2S/HEAD/ultranet.h -------------------------------------------------------------------------------- /ultranet.pio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doughadfield/Ultranet-to-I2S/HEAD/ultranet.pio --------------------------------------------------------------------------------