Go to file
Maschell 5dce3afa17 Create dependabot.yml 2023-07-23 10:10:42 +02:00
.github Create dependabot.yml 2023-07-23 10:10:42 +02:00
source Bump version 2023-07-22 11:22:50 +02:00
.clang-format Format the code via clang-format 2022-02-04 18:05:14 +01:00
.gitignore Use WUMS 0.2.1 2021-10-31 16:35:33 +01:00
Dockerfile Update Dockerfile 2023-07-19 16:18:17 +02:00
LICENSE Add LICENSE 2022-09-04 22:49:56 +02:00
Makefile Update Makefile to be compatible with CLion 2023-01-07 13:55:14 +01:00
README.md Change docker registry to ghcr.io 2023-07-15 10:23:54 +02:00

README.md

CI-Release

Usage

([ENVIRONMENT] is a placeholder for the actual environment name.)

  1. Copy the file USBSerialLoggingModule.wms into sd:/wiiu/environments/[ENVIRONMENT]/modules.
  2. Requires the WUMSLoader in sd:/wiiu/environments/[ENVIRONMENT]/modules/setup.

Buildflags

Logging

Building via make only logs errors (via OSReport). To enable logging via the LoggingModule set DEBUG to 1 or VERBOSE.

make Logs errors only (via OSReport).
make DEBUG=1 Enables information and error logging via LoggingModule.
make DEBUG=VERBOSE Enables verbose information and error logging via LoggingModule.

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 usbserialloggermodule-builder

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

# make clean
docker run -it --rm -v ${PWD}:/project usbserialloggermodule-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