Mercurial > hg > beaglert
comparison projects/oscillator_bank/render.cpp @ 47:643cbee74eda newapi
First draft of Doxygen documentation
author | andrewm |
---|---|
date | Thu, 28 May 2015 17:06:03 -0400 |
parents | 579c86316008 |
children | a6d223473ea2 |
comparison
equal
deleted
inserted
replaced
46:eac5d8f40b48 | 47:643cbee74eda |
---|---|
139 | 139 |
140 freq += increment; | 140 freq += increment; |
141 } | 141 } |
142 | 142 |
143 // Initialise auxiliary tasks | 143 // Initialise auxiliary tasks |
144 if((gFrequencyUpdateTask = createAuxiliaryTaskLoop(&recalculate_frequencies, 90, "beaglert-update-frequencies")) == 0) | 144 if((gFrequencyUpdateTask = createAuxiliaryTask(&recalculate_frequencies, 90, "beaglert-update-frequencies")) == 0) |
145 return false; | 145 return false; |
146 | 146 |
147 for(int n = 0; n < gNumOscillators; n++) | 147 for(int n = 0; n < gNumOscillators; n++) |
148 rt_printf("%f\n", gFrequencies[n]); | 148 rt_printf("%f\n", gFrequencies[n]); |
149 | 149 |