Go to file
dependabot[bot] e69d4c40bf Bump wiiu-env/devkitppc from 20230417 to 20230621
Bumps wiiu-env/devkitppc from 20230417 to 20230621.

---
updated-dependencies:
- dependency-name: wiiu-env/devkitppc
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-07-24 13:22:01 +02:00
.github Bump actions/checkout from 2 to 3 2023-07-24 13:19:54 +02:00
source Add .clang-format 2023-04-07 19:52:22 +02:00
.clang-format Add .clang-format 2023-04-07 19:52:22 +02:00
.gitignore first commit 2021-12-26 10:20:12 +01:00
Dockerfile Bump wiiu-env/devkitppc from 20230417 to 20230621 2023-07-24 13:22:01 +02:00
LICENSE Add LICENSE 2022-09-05 12:14:10 +02:00
Makefile first commit 2021-12-26 10:20:12 +01:00
README.md Add .clang-format 2023-04-07 19:52:22 +02:00

README.md

USB Serial Logging

Usage

Place the 20_usb_serial_logging.rpx in the [ENVIRONMENT]/modules/setup folder and run the EnvironmentLoader. Requires MochaPayload as a setup module in [ENVIRONMENT]/modules/setup.

Requires a USB serial cable with FTDI FT232 chipset (e.g. Digitus DA-70156) and TeraTerm, or similar serial terminal program.

Settings:

  • Speed: 57600
  • Data: 8 bit
  • Parity: none
  • Stop bits: 1 bit
  • Flow control: none
  • New-line Receive: CR+LF
  • New-line Transmit: CR+LF

The IOP-Shell is not supported.

Building

For building you just need wut installed, then use the make command.

Building using the Dockerfile

It's possible to use a docker image for building. This way you don't need anything installed on your host system.

# Build docker image (only needed once)
docker build . -t usb_serial_logging-builder

# make 
docker run -it --rm -v ${PWD}:/project usb_serial_logging-builder make

# make clean
docker run -it --rm -v ${PWD}:/project usb_serial_logging-builder make clean

Format the code via docker

docker run --rm -v ${PWD}:/src ghcr.io/wiiu-env/clang-format:13.0.0-2 -r ./source -i

Credits

Maschell