Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: mbed
variables.hpp@4:e56a755aeaf1, 2019-07-24 (annotated)
- Committer:
- benparkes
- Date:
- Wed Jul 24 15:06:20 2019 +0000
- Revision:
- 4:e56a755aeaf1
- Parent:
- 1:5b491fa83cb7
- Child:
- 12:c77c80e92dc1
Loop first trial
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
liam_grazier | 1:5b491fa83cb7 | 1 | #ifndef __variables__ |
liam_grazier | 1:5b491fa83cb7 | 2 | #define __variables__ |
benparkes | 4:e56a755aeaf1 | 3 | |
benparkes | 4:e56a755aeaf1 | 4 | #define MAX_SAMPLES 18 |
benparkes | 4:e56a755aeaf1 | 5 | |
liam_grazier | 1:5b491fa83cb7 | 6 | float vc; |
liam_grazier | 1:5b491fa83cb7 | 7 | float vcshp; |
liam_grazier | 1:5b491fa83cb7 | 8 | float vd; |
liam_grazier | 1:5b491fa83cb7 | 9 | float vdshp; |
liam_grazier | 1:5b491fa83cb7 | 10 | float ve; |
liam_grazier | 1:5b491fa83cb7 | 11 | float vf; |
liam_grazier | 1:5b491fa83cb7 | 12 | float vfshp; |
liam_grazier | 1:5b491fa83cb7 | 13 | float vg; |
liam_grazier | 1:5b491fa83cb7 | 14 | float vgshp; |
liam_grazier | 1:5b491fa83cb7 | 15 | float va; |
liam_grazier | 1:5b491fa83cb7 | 16 | float vashp; |
liam_grazier | 1:5b491fa83cb7 | 17 | float vb; |
liam_grazier | 1:5b491fa83cb7 | 18 | float vtempo; |
liam_grazier | 1:5b491fa83cb7 | 19 | float vplustwo; |
liam_grazier | 1:5b491fa83cb7 | 20 | float vplusone; |
liam_grazier | 1:5b491fa83cb7 | 21 | float vzero; |
liam_grazier | 1:5b491fa83cb7 | 22 | float vnegone; |
liam_grazier | 1:5b491fa83cb7 | 23 | float vnegtwo; |
liam_grazier | 1:5b491fa83cb7 | 24 | float vtwo; |
liam_grazier | 1:5b491fa83cb7 | 25 | float vone; |
liam_grazier | 1:5b491fa83cb7 | 26 | float vhalf; |
liam_grazier | 1:5b491fa83cb7 | 27 | float vquater; |
liam_grazier | 1:5b491fa83cb7 | 28 | float vsixthteenth; |
liam_grazier | 1:5b491fa83cb7 | 29 | float veigth; |
liam_grazier | 1:5b491fa83cb7 | 30 | int sumnotes2 = 0; |
liam_grazier | 1:5b491fa83cb7 | 31 | int sumoctives2 = 0; |
liam_grazier | 1:5b491fa83cb7 | 32 | int sumduration2 = 0; |
benparkes | 4:e56a755aeaf1 | 33 | |
benparkes | 4:e56a755aeaf1 | 34 | int bufferHeader = 0; |
benparkes | 4:e56a755aeaf1 | 35 | int bufferTail = MAX_SAMPLES-1; |
benparkes | 4:e56a755aeaf1 | 36 | int dataHeader = 0; |
benparkes | 4:e56a755aeaf1 | 37 | int dataTail = MAX_SAMPLES-1; |
benparkes | 4:e56a755aeaf1 | 38 | bool loop = 0; //where 1 is looping |
benparkes | 4:e56a755aeaf1 | 39 | int PlayPos = 0; |
benparkes | 4:e56a755aeaf1 | 40 | int ToPlay = 0; |
liam_grazier | 1:5b491fa83cb7 | 41 | #endif |