From ff702c8fd5361c1530c2623150f79080c4dd1bae Mon Sep 17 00:00:00 2001 From: thajohns Date: Mon, 28 Feb 2022 11:16:25 -0500 Subject: added documentation for mapped file structure --- render.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/render.py b/render.py index 0030969..2d7a68f 100644 --- a/render.py +++ b/render.py @@ -1,5 +1,15 @@ # A visualizer for the Python client (or any other client) rendering to a mapped file +# The map file format should look like the following C structure: +# struct mapping { +# float disp_factor; // scales the response to a note +# float last_samples[MAP_SAMPLES]; // samples from the waveform being played +# struct { +# unsigned long frequency; +# float amplitude; +# } values[STREAMS]; +# } + import optparse import mmap import os -- cgit v1.2.3-70-g09d2 From c446d6977b6b696b19aa4bba912634a621fa5479 Mon Sep 17 00:00:00 2001 From: thajohns Date: Mon, 28 Feb 2022 11:28:15 -0500 Subject: fixed documentation of disp_factor --- render.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/render.py b/render.py index 2d7a68f..aa0b75a 100644 --- a/render.py +++ b/render.py @@ -2,7 +2,7 @@ # The map file format should look like the following C structure: # struct mapping { -# float disp_factor; // scales the response to a note +# float disp_factor; // a factor to be displayed onscreen # float last_samples[MAP_SAMPLES]; // samples from the waveform being played # struct { # unsigned long frequency; -- cgit v1.2.3-70-g09d2