Skip to content

This is a UDP debug logger for reading logs broadcasted by Wii U homebrew projects

License

Notifications You must be signed in to change notification settings

BullyWiiPlaza/UDP-Debug-Reader

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

UDP-Debug-Reader

This is a modernized version of the UDP-Debug-Reader project by Dimok by using the C++20 standard and CMake as build system.

The UDP-Debug-Reader is a PC program which can read UDP debug logs sent from Wii U homebrew applications to your PC which is very useful for homebrew development.

The Wii U sided logging code itself can e.g. be found in libutilswut or directly in wut (preferable).

Compiling

This project uses a standard CMakeLists.txt file so compiling should be straight-forward for any platform.

Windows

mkdir WindowsBuild
cd WindowsBuild
cmake ../

Now you can enter the WindowsBuild folder and open the .sln file in Visual Studio to build from the IDE.

Linux

mkdir LinuxBuild
cd LinuxBuild
cmake ../
make

Now your binary should be built successfully.

macOS

The same approach as for Linux may be used to compile for macOS.

Usage

The UDP-Debug-Reader is a command line application which can be started via double-click (on Windows) or from the command line/terminal. Read the instructions printed on the command line/terminal to learn about the provided features like logging to a file, clearing the output or quitting the UDP-Debug-Reader.