Go to file
dependabot[bot] 67b8fb42b9
Bump actions/checkout from 3 to 4
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v3...v4)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-09-04 21:00:56 +00:00
.github Bump actions/checkout from 3 to 4 2023-09-04 21:00:56 +00: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

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