comparison examples/basic_blink/render.cpp @ 380:9dc5a0ccad25 prerelease

Fixed missing ) in Makefile, and removed unnecessary Utilities.h includes
author andrewm
date Sun, 12 Jun 2016 23:03:57 +0100
parents db2fe4e1b88e
children
comparison
equal deleted inserted replaced
379:24c3a0663d54 380:9dc5a0ccad25
38 value. In this case the limit is `context->digitalSampleRate*interval` which 38 value. In this case the limit is `context->digitalSampleRate*interval` which
39 allows us to write the desired interval in seconds, stored in `interval`. 39 allows us to write the desired interval in seconds, stored in `interval`.
40 */ 40 */
41 41
42 #include <Bela.h> 42 #include <Bela.h>
43 #include <Utilities.h>
44 #include <cmath> 43 #include <cmath>
45 #include <rtdk.h> 44 #include <rtdk.h>
46 45
47 // setup() is called once before the audio rendering starts. 46 // setup() is called once before the audio rendering starts.
48 // Use it to perform any initialisation and allocation which is dependent 47 // Use it to perform any initialisation and allocation which is dependent