diff options
author | bonmas14 <bonmas14@gmail.com> | 2025-09-20 22:28:15 +0300 |
---|---|---|
committer | bonmas14 <bonmas14@gmail.com> | 2025-09-20 22:28:15 +0300 |
commit | cdda4c4182c9ee068567529715e4a5c68a8efb58 (patch) | |
tree | 38a63f62a64018a2d35fc33354f8589fd33b7514 /README.md | |
download | c_wizard-cdda4c4182c9ee068567529715e4a5c68a8efb58.tar.gz c_wizard-cdda4c4182c9ee068567529715e4a5c68a8efb58.zip |
Init commit v1.0
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..c53443e --- /dev/null +++ b/README.md @@ -0,0 +1,30 @@ +# C-Wizard + +Tool to encode LPC10 audio into tms5220 audio stream. + +# Notice + +Inspired by python_wizard and BlueWizard: + +- https://github.com/ptwz/python_wizard +- https://github.com/patrick99e99/BlueWizard + +# LPC10 library + +Contains header-only library for encoding/decoding audio streams called: `lpc10_enc_dec.h`. + +# Building + +Tested on: +## Windows 10, Visual Studio 2022 msvc version 19.39.33523 for x64 + +0. Open terminal and run vcvars64.exe to setup environment. +1. execute: +```cmd +full_rebuild.bat rel +``` +2. done! + +to build debug version run `full_rebuild.bat` without `rel`. + +## Arch linux, to be tested... |