-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathDSP_Wing.ino
36 lines (31 loc) · 1.02 KB
/
DSP_Wing.ino
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/*
Gadget Factory
Use this to edit your libraries.
To design your own DesignLab library do the following steps:
1) Define your Chip:
sketchdir://Chip_Designer.xise
2) Define your Circuit:
sketchdir://circuit/PSL_Papilio_Pro_LX9.xise
sketchdir://circuit/PSL_Papilio_DUO_LX9.xise
sketchdir://circuit/PSL_Papilio_One_500K.xise
sketchdir://circuit/PSL_Papilio_One_250k.xise
3) Define your Arduino style library
Modify the .cpp and .h tabs of this sketch
4) Make an example sketch for the library
Open the sketch under the examples folder - it should have automatically opened with this sketch.
4) Share your library
http://forum.gadgetfactory.net/index.php?/page/articles.html
created 2014
by Jack Gassett
http://www.gadgetfactory.net
There is no actual code that can be run from this sketch.
DSP sketch example:
#include <DSP_Wing.h>
DSP_Wing dsp;
void setup() {
dsp.setup(6); // Initialize wing on wishbone slot 6
}
void loop(){
delay(1000);
}
*/