old demo that i want to try in mbed studio

Dependencies:   mbed SDFileSystem_Copy_of_mbed_version I2S

Committer:
roryhand
Date:
Sat Sep 14 19:16:41 2019 +0000
Revision:
51:dab013a902bd
Parent:
50:78ded157e9bb
Child:
52:3372052bb105
wip - playing stuff but still not correct.  try and solve on Mon. 16/09/2019

Who changed what in which revision?

UserRevisionLine numberNew contents of line
roryhand 1:aac37edee302 1
roryhand 0:e89d7a0bfa3b 2 // 24/03/2018 update - I appear to be able to address the device and write something, as I am getting an ACK returned from the i2c write() function.
roryhand 0:e89d7a0bfa3b 3 //however if i use the write function with 4 arguments (as opposed to just 1 argument) then it doesnt work
roryhand 0:e89d7a0bfa3b 4 //only works with the 1 argument version!!!
roryhand 0:e89d7a0bfa3b 5
roryhand 0:e89d7a0bfa3b 6
roryhand 0:e89d7a0bfa3b 7 //THIS VERSION WORKED, CHANGED SOME THINGS, THEN CHANGED THEM BACK. NOW IT NO LONGER WORKS!!!!
roryhand 0:e89d7a0bfa3b 8 #include "mbed.h"
roryhand 0:e89d7a0bfa3b 9 #include "math.h"
roryhand 1:aac37edee302 10 #include "I2S.h"
roryhand 1:aac37edee302 11 #include "SDFileSystem.h"
roryhand 0:e89d7a0bfa3b 12 #include "wm8731_Config_setup.h"
roryhand 0:e89d7a0bfa3b 13 #include "WOLFSON_config_consts.h"
roryhand 37:a563899ac0df 14 #include <string>
roryhand 0:e89d7a0bfa3b 15 #include <stdlib.h>
roryhand 27:a378f1f937ee 16 #include <fstream>
roryhand 27:a378f1f937ee 17 #include <iostream>
roryhand 0:e89d7a0bfa3b 18 #include <vector>
roryhand 0:e89d7a0bfa3b 19 #include <string>
roryhand 0:e89d7a0bfa3b 20 #define sample_freq 11025
roryhand 1:aac37edee302 21 #pragma import __use_two_region_memory
roryhand 0:e89d7a0bfa3b 22 DigitalOut myled(LED1);
roryhand 0:e89d7a0bfa3b 23 DigitalOut led2(LED2);
roryhand 0:e89d7a0bfa3b 24 DigitalOut led3(LED3);
roryhand 0:e89d7a0bfa3b 25 DigitalIn NotchUp(p16);
roryhand 38:3b4c05af5f36 26 DigitalIn NotchDown(p17);//check the pin!!! Dont know if this will actually work...
roryhand 0:e89d7a0bfa3b 27 InterruptIn Horn(p16);
roryhand 0:e89d7a0bfa3b 28 Ticker sampletick;
roryhand 45:0e8e1f2ec5d2 29
roryhand 0:e89d7a0bfa3b 30 Ticker TickFadeOut;
roryhand 0:e89d7a0bfa3b 31 Timer t;
roryhand 0:e89d7a0bfa3b 32 Timer t2;
roryhand 3:6169aeeaeeb4 33 Timer NotchTimer;
roryhand 27:a378f1f937ee 34 Timer timer_open;
roryhand 0:e89d7a0bfa3b 35
roryhand 48:01490448a05a 36 int BlockFlag = 0;
roryhand 48:01490448a05a 37
roryhand 0:e89d7a0bfa3b 38 Serial pc(USBTX, USBRX); // tx, rx //FOR DEBUGGING PROGRAM USING GNU SCREEN
roryhand 0:e89d7a0bfa3b 39 DigitalOut cs(p8);
roryhand 0:e89d7a0bfa3b 40 I2S i2s(I2S_TRANSMIT, p5, p6, p7);
roryhand 0:e89d7a0bfa3b 41 SDFileSystem sd(p11, p12, p13, p8, "sd"); // the new pinout that i am using
roryhand 0:e89d7a0bfa3b 42
roryhand 0:e89d7a0bfa3b 43
roryhand 0:e89d7a0bfa3b 44 /*struct A {
roryhand 0:e89d7a0bfa3b 45 int data;
roryhand 0:e89d7a0bfa3b 46 B b;
roryhand 0:e89d7a0bfa3b 47 };*/
roryhand 0:e89d7a0bfa3b 48
roryhand 0:e89d7a0bfa3b 49
roryhand 0:e89d7a0bfa3b 50
roryhand 0:e89d7a0bfa3b 51
roryhand 0:e89d7a0bfa3b 52 class classFade
roryhand 0:e89d7a0bfa3b 53 {
roryhand 1:aac37edee302 54 public:
roryhand 1:aac37edee302 55
roryhand 0:e89d7a0bfa3b 56 float powerval;
roryhand 0:e89d7a0bfa3b 57 float FadeIteration;
roryhand 0:e89d7a0bfa3b 58 float DecayFactor;
roryhand 0:e89d7a0bfa3b 59 float Denom;
roryhand 0:e89d7a0bfa3b 60 float FadeCoeff;
roryhand 0:e89d7a0bfa3b 61 float Natural_Exp;
roryhand 0:e89d7a0bfa3b 62 int LengthSecs;
roryhand 0:e89d7a0bfa3b 63 int Length;
roryhand 1:aac37edee302 64
roryhand 0:e89d7a0bfa3b 65 //member Functions
roryhand 0:e89d7a0bfa3b 66 float FadeOut(void)
roryhand 0:e89d7a0bfa3b 67 {
roryhand 0:e89d7a0bfa3b 68 powerval = -FadeIteration/Denom;
roryhand 1:aac37edee302 69 if (FadeIteration >=Length) {
roryhand 1:aac37edee302 70 FadeCoeff = 0;
roryhand 1:aac37edee302 71
roryhand 1:aac37edee302 72 } else {
roryhand 0:e89d7a0bfa3b 73 FadeCoeff = (Length - FadeIteration)/Length;
roryhand 0:e89d7a0bfa3b 74 }
roryhand 1:aac37edee302 75 FadeIteration = FadeIteration + 1;
roryhand 1:aac37edee302 76 return FadeCoeff;
roryhand 1:aac37edee302 77
roryhand 1:aac37edee302 78 }
roryhand 1:aac37edee302 79 float FadeIn(void)
roryhand 0:e89d7a0bfa3b 80 {
roryhand 0:e89d7a0bfa3b 81 powerval = FadeIteration/Denom;
roryhand 1:aac37edee302 82 if (FadeIteration >=Length) {
roryhand 1:aac37edee302 83 FadeCoeff = 1;
roryhand 1:aac37edee302 84
roryhand 1:aac37edee302 85 } else {
roryhand 0:e89d7a0bfa3b 86 FadeCoeff = FadeIteration/Length;
roryhand 0:e89d7a0bfa3b 87 }
roryhand 0:e89d7a0bfa3b 88
roryhand 1:aac37edee302 89 FadeIteration = FadeIteration + 1;
roryhand 1:aac37edee302 90 return FadeCoeff;
roryhand 1:aac37edee302 91
roryhand 1:aac37edee302 92 }
roryhand 0:e89d7a0bfa3b 93 };
roryhand 0:e89d7a0bfa3b 94
roryhand 0:e89d7a0bfa3b 95 classFade IdleFadeOut;
roryhand 0:e89d7a0bfa3b 96 classFade N2FadeIn;
roryhand 0:e89d7a0bfa3b 97
roryhand 2:957d3b2afff4 98 classFade NotchFadeOut;
roryhand 2:957d3b2afff4 99 classFade NotchFadeIn;
roryhand 2:957d3b2afff4 100
roryhand 0:e89d7a0bfa3b 101
roryhand 0:e89d7a0bfa3b 102
roryhand 0:e89d7a0bfa3b 103
roryhand 0:e89d7a0bfa3b 104
roryhand 1:aac37edee302 105 typedef struct uFMT_STRUCT {
roryhand 1:aac37edee302 106 short comp_code;
roryhand 1:aac37edee302 107 short num_channels;
roryhand 1:aac37edee302 108 unsigned sample_rate;
roryhand 1:aac37edee302 109 unsigned avg_Bps;
roryhand 1:aac37edee302 110 short block_align;
roryhand 1:aac37edee302 111 short sig_bps;
roryhand 0:e89d7a0bfa3b 112 } FMT_STRUCT;
roryhand 0:e89d7a0bfa3b 113
roryhand 1:aac37edee302 114 typedef struct uNotch_STRUCT {
roryhand 1:aac37edee302 115 short Notch;
roryhand 1:aac37edee302 116 short NotchTransUp;
roryhand 1:aac37edee302 117 short NotchTransDown;
roryhand 1:aac37edee302 118 short NotchDirection;
roryhand 1:aac37edee302 119 } Notch_STRUCT;
roryhand 1:aac37edee302 120
roryhand 0:e89d7a0bfa3b 121 typedef struct uDATA_STRUCT {
roryhand 1:aac37edee302 122 unsigned subchunk2_ID;
roryhand 1:aac37edee302 123 unsigned subchunk2_size;
roryhand 1:aac37edee302 124 char * data_buf;
roryhand 1:aac37edee302 125 } DATA_STRUCT;
roryhand 0:e89d7a0bfa3b 126
roryhand 1:aac37edee302 127 typedef struct uWAV_FILE_STRUCT {
roryhand 1:aac37edee302 128 FILE *WavFile;
roryhand 1:aac37edee302 129 int id_number;
roryhand 1:aac37edee302 130 char *slice_buf;
roryhand 1:aac37edee302 131 int num_slices;
roryhand 1:aac37edee302 132 FMT_STRUCT FileFormat;
roryhand 1:aac37edee302 133 DATA_STRUCT FileData;
roryhand 0:e89d7a0bfa3b 134 } WAV_FILE_STRUCT;
roryhand 0:e89d7a0bfa3b 135
roryhand 0:e89d7a0bfa3b 136 /*typedef struct uWAV_FILE_STRUCT{
roryhand 1:aac37edee302 137 FILE* WavFile;
roryhand 1:aac37edee302 138
roryhand 1:aac37edee302 139
roryhand 0:e89d7a0bfa3b 140 }WAV_FILE_STRUCT;*/
roryhand 0:e89d7a0bfa3b 141 class classSoundFile
roryhand 0:e89d7a0bfa3b 142 {
roryhand 1:aac37edee302 143 public:
roryhand 1:aac37edee302 144
roryhand 44:a9e84d333a6a 145 //add a class constructor at some point in the future (perform tests in visual studio)
roryhand 1:aac37edee302 146 WAV_FILE_STRUCT FileInfo;
roryhand 2:957d3b2afff4 147 short * data_sptr;
roryhand 36:569ec4335f92 148 string file_location;
roryhand 1:aac37edee302 149 //classSoundFile(string filename);//this is the constructor
roryhand 1:aac37edee302 150 //string filename;
roryhand 0:e89d7a0bfa3b 151 };
roryhand 0:e89d7a0bfa3b 152
roryhand 1:aac37edee302 153 //class constructor;
roryhand 1:aac37edee302 154 /*classSoundFile::classSoundFile(string filename)
roryhand 1:aac37edee302 155 {
roryhand 1:aac37edee302 156 //Declare RootFolder and the directory for the appropriate file.
roryhand 1:aac37edee302 157 //How we index into filename[] from the outside of this class is another
roryhand 1:aac37edee302 158 //issue...
roryhand 1:aac37edee302 159 FileInfo.WavFile = fopen("/sd/mydir/645Engine/Startup.wav","rb");
roryhand 1:aac37edee302 160 fseek(FileInfo.WavFile,20,SEEK_SET);
roryhand 1:aac37edee302 161 fread(&FileInfo.FileFormat,sizeof(FileInfo.FileFormat),1,FileInfo.WavFile);
roryhand 1:aac37edee302 162 printf("wav_format.sample_rate: %d\n\r",FileInfo.FileFormat.sample_rate);
roryhand 1:aac37edee302 163 fread(&FileInfo.FileData,sizeof(FileInfo.FileData),1,FileInfo.WavFile);
roryhand 1:aac37edee302 164 printf("wav_data.subchunk2_size: %d\n\r",FileInfo.FileData.subchunk2_size);
roryhand 1:aac37edee302 165 FileInfo.slice_buf = ( char *)malloc(FileInfo.FileFormat.block_align);
roryhand 1:aac37edee302 166 fread(FileInfo.slice_buf,FileInfo.FileFormat.block_align,1,FileInfo.WavFile); //This isnt actually required, its just a test
roryhand 1:aac37edee302 167 FileInfo.num_slices = FileInfo.FileData.subchunk2_size/FileInfo.FileFormat.block_align;
roryhand 1:aac37edee302 168 }*/
roryhand 1:aac37edee302 169
roryhand 38:3b4c05af5f36 170 int notch_flag = 0;
roryhand 0:e89d7a0bfa3b 171 int i = 0;
roryhand 0:e89d7a0bfa3b 172 int h = 0;
roryhand 0:e89d7a0bfa3b 173 short bufflen = 1;
roryhand 0:e89d7a0bfa3b 174 int buffer[1];
roryhand 1:aac37edee302 175 int AudioFormat, NumChannels, SampleRate, BitsPerSample ;
roryhand 0:e89d7a0bfa3b 176 char *slice_buf;
roryhand 0:e89d7a0bfa3b 177 short *data_sptr;
roryhand 0:e89d7a0bfa3b 178 short *data_sptr_horn;
roryhand 0:e89d7a0bfa3b 179 short *data_sptr_IdleN2;
roryhand 0:e89d7a0bfa3b 180 short * data_sptr_bell;
roryhand 0:e89d7a0bfa3b 181 short * data_sptr_N2;
roryhand 0:e89d7a0bfa3b 182 short * data_sptr_Flange;
roryhand 0:e89d7a0bfa3b 183 unsigned char *data_bptr;
roryhand 0:e89d7a0bfa3b 184 int *data_wptr;
roryhand 0:e89d7a0bfa3b 185 unsigned channel;
roryhand 45:0e8e1f2ec5d2 186 long slice, slice1, slice2, slice3, num_slices;
roryhand 0:e89d7a0bfa3b 187 int verbosity = 0;
roryhand 0:e89d7a0bfa3b 188 int verbosity2 = 0;
roryhand 0:e89d7a0bfa3b 189 int verbosity3 = 0;
roryhand 0:e89d7a0bfa3b 190 int verbosity4 = 0;
roryhand 0:e89d7a0bfa3b 191 int verbosity5 = 0;
roryhand 0:e89d7a0bfa3b 192 int interrupt_condition = 1;
roryhand 0:e89d7a0bfa3b 193 int sampling_freq = 11025;
roryhand 0:e89d7a0bfa3b 194 const int BufferLen = 2000;
roryhand 0:e89d7a0bfa3b 195 short Buffer1[BufferLen];
roryhand 0:e89d7a0bfa3b 196 short Buffer2[BufferLen];
roryhand 0:e89d7a0bfa3b 197 short place_hold1 = 0;
roryhand 0:e89d7a0bfa3b 198 short place_hold2 = 0;
roryhand 0:e89d7a0bfa3b 199
roryhand 3:6169aeeaeeb4 200
roryhand 3:6169aeeaeeb4 201 string FOLDER;
roryhand 3:6169aeeaeeb4 202 string RootFolder = "/sd/mydir/SoundDecoder/";
roryhand 3:6169aeeaeeb4 203 string filename[25];
roryhand 3:6169aeeaeeb4 204 classSoundFile Sound[22];
roryhand 3:6169aeeaeeb4 205
roryhand 0:e89d7a0bfa3b 206 volatile int flag1 = 1;
roryhand 0:e89d7a0bfa3b 207 volatile int flag2 = 0;
roryhand 0:e89d7a0bfa3b 208 volatile int flag3 = 1;
roryhand 0:e89d7a0bfa3b 209 volatile int flag4 = 0;
roryhand 0:e89d7a0bfa3b 210 int FLAGBUFF1 = 0;
roryhand 0:e89d7a0bfa3b 211 int FLAGBUFF2 = 0;
roryhand 0:e89d7a0bfa3b 212 int BellFlag = 0;
roryhand 0:e89d7a0bfa3b 213 int BellFlag2 = 0;
roryhand 0:e89d7a0bfa3b 214 int FadeFlag = 0;
roryhand 32:6ee488c97dcc 215 int FileSwitchFlag = 0;
roryhand 0:e89d7a0bfa3b 216
roryhand 0:e89d7a0bfa3b 217
roryhand 0:e89d7a0bfa3b 218 short value[1];
roryhand 0:e89d7a0bfa3b 219 FILE *HornWav;
roryhand 0:e89d7a0bfa3b 220 FILE *edsheeran_wav;
roryhand 0:e89d7a0bfa3b 221 FILE *Startup_wav;
roryhand 0:e89d7a0bfa3b 222 FILE *IdleN2Wav;
roryhand 0:e89d7a0bfa3b 223 FILE *N2Wav;
roryhand 0:e89d7a0bfa3b 224 FILE *BellWav;
roryhand 0:e89d7a0bfa3b 225 FILE *FlangeWav;
roryhand 16:5e3420d0509b 226 FILE *HeyWav;
roryhand 0:e89d7a0bfa3b 227 //long long slice_value;
roryhand 0:e89d7a0bfa3b 228 int slice_value[1];
roryhand 0:e89d7a0bfa3b 229
roryhand 0:e89d7a0bfa3b 230
roryhand 45:0e8e1f2ec5d2 231 FILE *wavfile1;
roryhand 45:0e8e1f2ec5d2 232 FILE *wavfile2;
roryhand 45:0e8e1f2ec5d2 233 FILE *wavfile3;
roryhand 45:0e8e1f2ec5d2 234
roryhand 45:0e8e1f2ec5d2 235 classSoundFile Sound1;
roryhand 45:0e8e1f2ec5d2 236 classSoundFile Sound2;
roryhand 45:0e8e1f2ec5d2 237 classSoundFile Sound3;
roryhand 45:0e8e1f2ec5d2 238
roryhand 0:e89d7a0bfa3b 239 WAV_FILE_STRUCT WavInfo_Horn;
roryhand 0:e89d7a0bfa3b 240 WAV_FILE_STRUCT WavInfo_IdleN2;
roryhand 0:e89d7a0bfa3b 241 WAV_FILE_STRUCT WavInfo_N2;
roryhand 0:e89d7a0bfa3b 242 WAV_FILE_STRUCT WavInfo_Bell;
roryhand 0:e89d7a0bfa3b 243 WAV_FILE_STRUCT WavInfo_Flange;
roryhand 20:9cc7d825c07b 244 WAV_FILE_STRUCT WavInfo_Hey;
roryhand 32:6ee488c97dcc 245 WAV_FILE_STRUCT WavInfo_N3;
roryhand 16:5e3420d0509b 246 WAV_FILE_STRUCT WavInfo_Frustration;
roryhand 0:e89d7a0bfa3b 247 Ticker flipper;
roryhand 0:e89d7a0bfa3b 248 char * slice_buf_bell;
roryhand 0:e89d7a0bfa3b 249 char * slice_buf_ed;
roryhand 0:e89d7a0bfa3b 250 char * slice_buf_startup;
roryhand 0:e89d7a0bfa3b 251 char * slice_buf_N2;
roryhand 1:aac37edee302 252 Notch_STRUCT NotchingSet;
roryhand 0:e89d7a0bfa3b 253 //test
roryhand 0:e89d7a0bfa3b 254 //short *data_sptr_bell = 0;
roryhand 0:e89d7a0bfa3b 255 short *data_sptr_ed = 0;
roryhand 0:e89d7a0bfa3b 256 short *data_sptr_startup = 0;
roryhand 32:6ee488c97dcc 257 FILE *StartupWav;
roryhand 32:6ee488c97dcc 258 FILE *N3Wav;
roryhand 33:a75f0a30fbdc 259 int temp = 0;
roryhand 1:aac37edee302 260 void flip()
roryhand 1:aac37edee302 261 {
roryhand 0:e89d7a0bfa3b 262 led2 = !led2;
roryhand 0:e89d7a0bfa3b 263 }
roryhand 0:e89d7a0bfa3b 264
roryhand 0:e89d7a0bfa3b 265
roryhand 0:e89d7a0bfa3b 266 void isr()
roryhand 0:e89d7a0bfa3b 267 {
roryhand 1:aac37edee302 268 if(flag1 == 0) {
roryhand 0:e89d7a0bfa3b 269 value[0] = Buffer1[place_hold1]>>4;
roryhand 0:e89d7a0bfa3b 270 i2s.write(value,1);//Send next PWM value to amp
roryhand 0:e89d7a0bfa3b 271 place_hold1 = place_hold1 + 1;
roryhand 1:aac37edee302 272 if( (place_hold1 >= BufferLen)) {
roryhand 0:e89d7a0bfa3b 273 led2 = !led2;
roryhand 0:e89d7a0bfa3b 274 place_hold1 = 0;
roryhand 0:e89d7a0bfa3b 275 place_hold2 = 0;
roryhand 0:e89d7a0bfa3b 276 flag1 = 1;
roryhand 0:e89d7a0bfa3b 277 flag2 = 0;
roryhand 1:aac37edee302 278 }
roryhand 1:aac37edee302 279 } else if(flag2 == 0) {
roryhand 0:e89d7a0bfa3b 280 value[0] = Buffer2[place_hold2]>>4;
roryhand 0:e89d7a0bfa3b 281 i2s.write(value,1);//Send next PWM value to amp
roryhand 0:e89d7a0bfa3b 282 place_hold2 = place_hold2 + 1;
roryhand 1:aac37edee302 283 if( (place_hold2 >= BufferLen) ) {
roryhand 0:e89d7a0bfa3b 284 led2 = !led2;
roryhand 0:e89d7a0bfa3b 285 place_hold1 = 0;
roryhand 0:e89d7a0bfa3b 286 place_hold2 = 0;
roryhand 0:e89d7a0bfa3b 287 flag1 = 0;
roryhand 1:aac37edee302 288 flag2 = 1;
roryhand 0:e89d7a0bfa3b 289 FLAGBUFF2 = 0;
roryhand 1:aac37edee302 290 }
roryhand 0:e89d7a0bfa3b 291 }
roryhand 0:e89d7a0bfa3b 292 }
roryhand 1:aac37edee302 293
roryhand 0:e89d7a0bfa3b 294 void horn_sound()
roryhand 0:e89d7a0bfa3b 295 {
roryhand 0:e89d7a0bfa3b 296 BellFlag = 1;
roryhand 0:e89d7a0bfa3b 297 fseek(HornWav,44,SEEK_SET);
roryhand 0:e89d7a0bfa3b 298 fseek(BellWav,44,SEEK_SET);
roryhand 0:e89d7a0bfa3b 299 fseek(FlangeWav,44,SEEK_SET);
roryhand 0:e89d7a0bfa3b 300 fseek(N2Wav,44,SEEK_SET);
roryhand 0:e89d7a0bfa3b 301 }
roryhand 0:e89d7a0bfa3b 302
roryhand 0:e89d7a0bfa3b 303
roryhand 32:6ee488c97dcc 304 void FileSwitch_isr()
roryhand 0:e89d7a0bfa3b 305 {
roryhand 32:6ee488c97dcc 306 FileSwitchFlag = 1;
roryhand 33:a75f0a30fbdc 307 temp = 1;
roryhand 33:a75f0a30fbdc 308 /*FILE* testwav = fopen("/sd/mydir/SoundDecoder_second/05.wav","rb");
roryhand 33:a75f0a30fbdc 309 if(N3Wav == NULL) {
roryhand 33:a75f0a30fbdc 310 printf("Cannot Open testwav\n\r");
roryhand 33:a75f0a30fbdc 311 }
roryhand 33:a75f0a30fbdc 312 */
roryhand 32:6ee488c97dcc 313 fseek(N3Wav,44,SEEK_SET);
roryhand 32:6ee488c97dcc 314 // fclose(StartupWav);
roryhand 0:e89d7a0bfa3b 315 }
roryhand 0:e89d7a0bfa3b 316
roryhand 0:e89d7a0bfa3b 317
roryhand 0:e89d7a0bfa3b 318 void FadeOutIsr()
roryhand 0:e89d7a0bfa3b 319 {
roryhand 51:dab013a902bd 320 if(BlockFlag == 0)
roryhand 51:dab013a902bd 321
roryhand 51:dab013a902bd 322 {
roryhand 51:dab013a902bd 323
roryhand 51:dab013a902bd 324 BlockFlag = 2;
roryhand 51:dab013a902bd 325
roryhand 51:dab013a902bd 326 }
roryhand 48:01490448a05a 327 if (BlockFlag == 0) {
roryhand 48:01490448a05a 328 BlockFlag = 1;
roryhand 48:01490448a05a 329 fseek(wavfile2,44,SEEK_SET);
roryhand 48:01490448a05a 330 fseek(wavfile3,44,SEEK_SET);
roryhand 48:01490448a05a 331
roryhand 51:dab013a902bd 332 } else if(BlockFlag == 2) {
roryhand 49:ce6b36eb0d88 333 //BlockFlag = 2;
roryhand 49:ce6b36eb0d88 334 //fclose(wavfile1);
roryhand 49:ce6b36eb0d88 335 //fclose(wavfile2);
roryhand 49:ce6b36eb0d88 336 wavfile1 = fopen("/sd/mydir/SoundDecoder_second/03.wav","rb");//01
roryhand 48:01490448a05a 337 if(wavfile1 == NULL) {
roryhand 48:01490448a05a 338 printf("Cannot Open wavfile1\n\r");
roryhand 48:01490448a05a 339 }
roryhand 49:ce6b36eb0d88 340 fseek(wavfile1,44,SEEK_SET);//go to beginning of audio segment
roryhand 49:ce6b36eb0d88 341 wavfile2 = fopen("/sd/mydir/SoundDecoder_second/10.wav","rb");//22
roryhand 48:01490448a05a 342 if(wavfile2 == NULL) {
roryhand 48:01490448a05a 343 printf("Cannot Open wavfile2\n\r");
roryhand 48:01490448a05a 344 }
roryhand 49:ce6b36eb0d88 345 fseek(wavfile2,44,SEEK_SET);//go to beginning of audio segment
roryhand 50:78ded157e9bb 346 slice1 = 0;
roryhand 50:78ded157e9bb 347 slice2 = 0;
roryhand 51:dab013a902bd 348 } else {//if BlockFlag == 1
roryhand 48:01490448a05a 349
roryhand 49:ce6b36eb0d88 350 //BlockFlag = 1;
roryhand 48:01490448a05a 351 wavfile2 = fopen("/sd/mydir/SoundDecoder_second/09.wav","rb");
roryhand 48:01490448a05a 352 if(wavfile2 == NULL) {
roryhand 48:01490448a05a 353 printf("Cannot Open wavfile2\n\r");
roryhand 48:01490448a05a 354 }
roryhand 49:ce6b36eb0d88 355 fseek(wavfile2,44,SEEK_SET);//go to beginning of audio segment
roryhand 48:01490448a05a 356 wavfile3 = fopen("/sd/mydir/SoundDecoder_second/02.wav","rb");
roryhand 48:01490448a05a 357 if(wavfile3 == NULL) {
roryhand 48:01490448a05a 358 printf("Cannot Open wavfile3\n\r");
roryhand 48:01490448a05a 359 }
roryhand 49:ce6b36eb0d88 360 fseek(wavfile3,44,SEEK_SET);//go to beginning of audio segment
roryhand 50:78ded157e9bb 361 slice2 = 0;
roryhand 50:78ded157e9bb 362 slice3 = 0;
roryhand 48:01490448a05a 363 }
roryhand 1:aac37edee302 364 FadeFlag = 1;
roryhand 47:9334a8f54997 365 //printf("We are inside the FadeOut interrupt routine\n\r");
roryhand 1:aac37edee302 366
roryhand 0:e89d7a0bfa3b 367 }
roryhand 38:3b4c05af5f36 368
roryhand 38:3b4c05af5f36 369
roryhand 38:3b4c05af5f36 370
roryhand 38:3b4c05af5f36 371
roryhand 0:e89d7a0bfa3b 372
roryhand 3:6169aeeaeeb4 373 classFade FadeDataInitialise(classFade FadeData);
roryhand 3:6169aeeaeeb4 374
roryhand 3:6169aeeaeeb4 375
roryhand 3:6169aeeaeeb4 376
roryhand 3:6169aeeaeeb4 377
roryhand 3:6169aeeaeeb4 378
roryhand 3:6169aeeaeeb4 379 //function prototypes
roryhand 45:0e8e1f2ec5d2 380 classSoundFile ReadFileInfo(classSoundFile Sound, FILE * wav_file);
roryhand 3:6169aeeaeeb4 381 classSoundFile LoadFileStream(classSoundFile FileInfo, string filename);
roryhand 3:6169aeeaeeb4 382
roryhand 3:6169aeeaeeb4 383 float FadeOut(void);
roryhand 3:6169aeeaeeb4 384 void Play_WaveFile(FILE * my_wav, WAV_FILE_STRUCT FileInfo);
roryhand 32:6ee488c97dcc 385 void Play_WaveFileDual(FILE * my_wav, WAV_FILE_STRUCT FileInfo);
roryhand 3:6169aeeaeeb4 386 //void Play_WaveFileLoop(FILE * my_wav, WAV_FILE_STRUCT FileInfo);
roryhand 3:6169aeeaeeb4 387 //*********************INTERRUPT ROUTINE FOR NOTCHING***************************
roryhand 0:e89d7a0bfa3b 388
roryhand 1:aac37edee302 389 void NotchUpIsr()
roryhand 0:e89d7a0bfa3b 390 {
roryhand 1:aac37edee302 391 if(1 <= NotchingSet.Notch < 8) {
roryhand 1:aac37edee302 392
roryhand 1:aac37edee302 393 NotchingSet.Notch = NotchingSet.Notch + 1;
roryhand 1:aac37edee302 394 NotchingSet.NotchTransUp = NotchingSet.Notch + 7;
roryhand 1:aac37edee302 395 NotchingSet.NotchDirection = 1;
roryhand 3:6169aeeaeeb4 396 FadeDataInitialise(NotchFadeIn);
roryhand 3:6169aeeaeeb4 397 FadeDataInitialise(NotchFadeOut);
roryhand 1:aac37edee302 398 }
roryhand 0:e89d7a0bfa3b 399 }
roryhand 0:e89d7a0bfa3b 400
roryhand 0:e89d7a0bfa3b 401 void NotchDownIsr()
roryhand 0:e89d7a0bfa3b 402 {
roryhand 1:aac37edee302 403 if(1 < NotchingSet.Notch <= 8) {
roryhand 1:aac37edee302 404 NotchingSet.Notch = NotchingSet.Notch - 1;
roryhand 1:aac37edee302 405 NotchingSet.NotchTransDown = NotchingSet.Notch + 15;;
roryhand 1:aac37edee302 406 NotchingSet.NotchDirection = 0;
roryhand 3:6169aeeaeeb4 407 FadeDataInitialise(NotchFadeIn);
roryhand 3:6169aeeaeeb4 408 FadeDataInitialise(NotchFadeOut);
roryhand 1:aac37edee302 409 }
roryhand 1:aac37edee302 410 }
roryhand 0:e89d7a0bfa3b 411
roryhand 0:e89d7a0bfa3b 412
roryhand 3:6169aeeaeeb4 413 /**********************END OF INTERRUPT ROUTINE FOR NOTCHING*******************/
roryhand 3:6169aeeaeeb4 414
roryhand 3:6169aeeaeeb4 415
roryhand 1:aac37edee302 416
roryhand 0:e89d7a0bfa3b 417
roryhand 3:6169aeeaeeb4 418
roryhand 3:6169aeeaeeb4 419
roryhand 44:a9e84d333a6a 420 void Play_WaveFileLoop(classSoundFile Sound1, classSoundFile Sound2, classSoundFile Sound3, FILE* wavfile1,FILE* wavfile2, FILE* wavfile3);
roryhand 1:aac37edee302 421 int main()
roryhand 1:aac37edee302 422 {
roryhand 44:a9e84d333a6a 423
roryhand 0:e89d7a0bfa3b 424 NotchUp.mode(PullUp);
roryhand 38:3b4c05af5f36 425 NotchDown.mode(PullUp);
roryhand 0:e89d7a0bfa3b 426
roryhand 0:e89d7a0bfa3b 427 pc.printf("Beginning of program\n");
roryhand 32:6ee488c97dcc 428
roryhand 13:8e93396a27c5 429
roryhand 13:8e93396a27c5 430
roryhand 4:55fbbb049bae 431
roryhand 25:5336e1cf38d6 432 printf("Do we even get to this stupid bloody point\n\r");
roryhand 0:e89d7a0bfa3b 433 //Populate our class instances with some data (is there an implicit way to do this?)
roryhand 28:6b2353fad12d 434
roryhand 1:aac37edee302 435
roryhand 3:6169aeeaeeb4 436 printf("hello\n\r");
roryhand 0:e89d7a0bfa3b 437 //Set up the wolfson Audio Codec board
roryhand 0:e89d7a0bfa3b 438 wm8731_Config_setup();
roryhand 0:e89d7a0bfa3b 439 //i2s audio data transfer code??
roryhand 0:e89d7a0bfa3b 440 i2s.stereomono(I2S_STEREO);
roryhand 0:e89d7a0bfa3b 441 i2s.masterslave(I2S_MASTER);
roryhand 0:e89d7a0bfa3b 442 led3 = 1;
roryhand 0:e89d7a0bfa3b 443 led2 = 1;
roryhand 45:0e8e1f2ec5d2 444 printf("Hello i2s has started!");
roryhand 30:4a8e80b243c4 445 i2s.start();
roryhand 0:e89d7a0bfa3b 446 sampletick.attach(&isr,1.0/sampling_freq); //1/16000
roryhand 45:0e8e1f2ec5d2 447 //fileswitch_tick.attach(&FileSwitch_isr,6.0);//So we can switch between playing file 1 and file 2, including opening and closing
roryhand 45:0e8e1f2ec5d2 448 //not convinced we need this above line at the moment!!
roryhand 31:0f8c3adf09c3 449
roryhand 31:0f8c3adf09c3 450 timer_open.reset();
roryhand 32:6ee488c97dcc 451 timer_open.start();
roryhand 45:0e8e1f2ec5d2 452 wavfile1 = fopen("/sd/mydir/SoundDecoder_second/01.wav","rb");
roryhand 48:01490448a05a 453 if(wavfile1 == NULL) {
roryhand 45:0e8e1f2ec5d2 454 printf("Cannot Open wavfile1\n\r");
roryhand 32:6ee488c97dcc 455 }
roryhand 48:01490448a05a 456
roryhand 31:0f8c3adf09c3 457 timer_open.reset();
roryhand 31:0f8c3adf09c3 458 printf("It took %d useconds to open file\n\r",timer_open.read_us());
roryhand 48:01490448a05a 459
roryhand 48:01490448a05a 460
roryhand 45:0e8e1f2ec5d2 461 timer_open.start();
roryhand 47:9334a8f54997 462 wavfile2 = fopen("/sd/mydir/SoundDecoder_second/09.wav","rb");
roryhand 48:01490448a05a 463 if(wavfile2 == NULL) {
roryhand 45:0e8e1f2ec5d2 464 printf("Cannot Open wavfile2\n\r");
roryhand 45:0e8e1f2ec5d2 465 }
roryhand 32:6ee488c97dcc 466 timer_open.reset();
roryhand 45:0e8e1f2ec5d2 467 printf("It took %d useconds to open file\n\r",timer_open.read_us());
roryhand 48:01490448a05a 468
roryhand 32:6ee488c97dcc 469 timer_open.start();
roryhand 47:9334a8f54997 470 wavfile3 = fopen("/sd/mydir/SoundDecoder_second/02.wav","rb");
roryhand 48:01490448a05a 471 if(wavfile3 == NULL) {
roryhand 45:0e8e1f2ec5d2 472 printf("Cannot Open wavfile3\n\r");
roryhand 45:0e8e1f2ec5d2 473 }
roryhand 45:0e8e1f2ec5d2 474 timer_open.reset();
roryhand 45:0e8e1f2ec5d2 475 printf("It took %d useconds to open file\n\r",timer_open.read_us());
roryhand 48:01490448a05a 476
roryhand 48:01490448a05a 477
roryhand 45:0e8e1f2ec5d2 478 Sound1 = ReadFileInfo(Sound1,wavfile1);
roryhand 45:0e8e1f2ec5d2 479 Sound2 = ReadFileInfo(Sound2,wavfile2);
roryhand 45:0e8e1f2ec5d2 480 Sound3 = ReadFileInfo(Sound3,wavfile3);
roryhand 51:dab013a902bd 481 fclose(wavfile2);
roryhand 51:dab013a902bd 482 fclose(wavfile3);
roryhand 32:6ee488c97dcc 483
roryhand 47:9334a8f54997 484 NotchFadeIn.LengthSecs = 2;
roryhand 46:de390e45c2af 485 NotchFadeOut.LengthSecs = 2;
roryhand 46:de390e45c2af 486 NotchFadeIn = FadeDataInitialise(NotchFadeIn);
roryhand 46:de390e45c2af 487 NotchFadeOut = FadeDataInitialise(NotchFadeOut);
roryhand 45:0e8e1f2ec5d2 488
roryhand 45:0e8e1f2ec5d2 489
roryhand 45:0e8e1f2ec5d2 490
roryhand 45:0e8e1f2ec5d2 491 TickFadeOut.attach(&FadeOutIsr,10.0);
roryhand 45:0e8e1f2ec5d2 492
roryhand 20:9cc7d825c07b 493 printf("about to play wav file\n\r");
roryhand 51:dab013a902bd 494
roryhand 51:dab013a902bd 495 wavfile2 = fopen("/sd/mydir/SoundDecoder_second/10.wav","rb");//22
roryhand 51:dab013a902bd 496
roryhand 51:dab013a902bd 497 wait(1);
roryhand 51:dab013a902bd 498 timer_open.reset();
roryhand 51:dab013a902bd 499 timer_open.start();
roryhand 51:dab013a902bd 500 fclose(wavfile2);
roryhand 51:dab013a902bd 501 timer_open.stop();
roryhand 51:dab013a902bd 502 printf("It took %d useconds to close file\n\r",timer_open.read_us());
roryhand 51:dab013a902bd 503
roryhand 51:dab013a902bd 504
roryhand 45:0e8e1f2ec5d2 505 Play_WaveFileLoop(Sound1,Sound2,Sound3,wavfile1,wavfile2,wavfile3);
roryhand 45:0e8e1f2ec5d2 506 //Play_WaveFileDual(StartupWav,WavInfo_Startup);
roryhand 20:9cc7d825c07b 507 printf("finished playing Wav file\n\r");
roryhand 48:01490448a05a 508
roryhand 48:01490448a05a 509
roryhand 31:0f8c3adf09c3 510 timer_open.reset();
roryhand 31:0f8c3adf09c3 511 timer_open.start();
roryhand 45:0e8e1f2ec5d2 512 fclose(wavfile1);
roryhand 31:0f8c3adf09c3 513 timer_open.stop();
roryhand 31:0f8c3adf09c3 514 printf("It took %d useconds to close file\n\r",timer_open.read_us());
roryhand 48:01490448a05a 515
roryhand 45:0e8e1f2ec5d2 516 timer_open.reset();
roryhand 48:01490448a05a 517 timer_open.start();
roryhand 45:0e8e1f2ec5d2 518 fclose(wavfile2);
roryhand 45:0e8e1f2ec5d2 519 timer_open.stop();
roryhand 48:01490448a05a 520 printf("It took %d useconds to close file\n\r",timer_open.read_us());
roryhand 48:01490448a05a 521
roryhand 48:01490448a05a 522
roryhand 45:0e8e1f2ec5d2 523 timer_open.reset();
roryhand 48:01490448a05a 524 timer_open.start();
roryhand 45:0e8e1f2ec5d2 525 fclose(wavfile3);
roryhand 45:0e8e1f2ec5d2 526 timer_open.stop();
roryhand 45:0e8e1f2ec5d2 527 printf("It took %d useconds to close file\n\r",timer_open.read_us());
roryhand 48:01490448a05a 528
roryhand 48:01490448a05a 529
roryhand 48:01490448a05a 530
roryhand 9:dd9cae06b202 531 /************************************PLAY WAV FILE LOOP*******************/
roryhand 20:9cc7d825c07b 532 //Play_WaveFileLoop(Sound, NotchingSet);
roryhand 9:dd9cae06b202 533 /************************************END OF PLAY WAV FILE LOOP*************/
roryhand 13:8e93396a27c5 534
roryhand 13:8e93396a27c5 535
roryhand 1:aac37edee302 536 i2s.stop();
roryhand 0:e89d7a0bfa3b 537
roryhand 0:e89d7a0bfa3b 538 }
roryhand 0:e89d7a0bfa3b 539
roryhand 0:e89d7a0bfa3b 540
roryhand 3:6169aeeaeeb4 541
roryhand 3:6169aeeaeeb4 542
roryhand 3:6169aeeaeeb4 543
roryhand 3:6169aeeaeeb4 544
roryhand 45:0e8e1f2ec5d2 545 classSoundFile ReadFileInfo(classSoundFile Sound, FILE * wav_file)
roryhand 0:e89d7a0bfa3b 546 {
roryhand 0:e89d7a0bfa3b 547 fseek(wav_file,20,SEEK_SET);
roryhand 22:706e86dc0d45 548 printf("We have just seeked through this file\n\r");
roryhand 45:0e8e1f2ec5d2 549 fread(&Sound.FileInfo.FileFormat,sizeof(Sound.FileInfo.FileFormat),1,wav_file);
roryhand 1:aac37edee302 550 //printf("wav_format.sample_rate: %d\n\r",FileInfo.FileFormat.sample_rate);
roryhand 1:aac37edee302 551
roryhand 45:0e8e1f2ec5d2 552 fread(&Sound.FileInfo.FileData,sizeof(Sound.FileInfo.FileData),1,wav_file);
roryhand 1:aac37edee302 553 //printf("wav_data.subchunk2_size: %d\n\r",FileInfo.FileData.subchunk2_size);
roryhand 45:0e8e1f2ec5d2 554 Sound.FileInfo.slice_buf = ( char *)malloc(Sound.FileInfo.FileFormat.block_align);
roryhand 45:0e8e1f2ec5d2 555 fread(Sound.FileInfo.slice_buf,Sound.FileInfo.FileFormat.block_align,1,wav_file); //This isnt actually required, its just a test
roryhand 45:0e8e1f2ec5d2 556 Sound.FileInfo.num_slices = Sound.FileInfo.FileData.subchunk2_size/Sound.FileInfo.FileFormat.block_align;
roryhand 1:aac37edee302 557 //printf("Number of Slices: %d\n\r",FileInfo.num_slices);
roryhand 45:0e8e1f2ec5d2 558 return Sound;
roryhand 0:e89d7a0bfa3b 559 }
roryhand 1:aac37edee302 560
roryhand 1:aac37edee302 561 classSoundFile LoadFileStream(classSoundFile Sound, string filename)
roryhand 1:aac37edee302 562 {
roryhand 1:aac37edee302 563 //Declare RootFolder and the directory for the appropriate file.
roryhand 1:aac37edee302 564 //How we index into filename[] from the outside of this class is another
roryhand 1:aac37edee302 565 //issue...
roryhand 1:aac37edee302 566 //printf("FileName: %s\n\r",filename);
roryhand 1:aac37edee302 567 //string RootFolder = "/sd/mydir/SoundDecoder/";
roryhand 1:aac37edee302 568 //string Directory = RootFolder + "01.wav";// + filename[0];
roryhand 1:aac37edee302 569 //printf("%s\n\r",Directory);
roryhand 1:aac37edee302 570 //const char* DirectoryChar = Directory.c_str();
roryhand 1:aac37edee302 571 //Sound.FileInfo.WavFile = fopen(DirectoryChar,"rb");
roryhand 1:aac37edee302 572 Sound.FileInfo.WavFile = fopen("/sd/mydir/645Engine/Startup.wav","rb");
roryhand 1:aac37edee302 573 fseek(Sound.FileInfo.WavFile,20,SEEK_SET);
roryhand 1:aac37edee302 574 fread(&Sound.FileInfo.FileFormat,sizeof(Sound.FileInfo.FileFormat),1,Sound.FileInfo.WavFile);
roryhand 1:aac37edee302 575 printf("wav_format.sample_rate: %d\n\r",Sound.FileInfo.FileFormat.sample_rate);
roryhand 1:aac37edee302 576 fread(&Sound.FileInfo.FileData,sizeof(Sound.FileInfo.FileData),1,Sound.FileInfo.WavFile);
roryhand 1:aac37edee302 577 printf("wav_data.subchunk2_size: %d\n\r",Sound.FileInfo.FileData.subchunk2_size);
roryhand 1:aac37edee302 578 Sound.FileInfo.slice_buf = ( char *)malloc(Sound.FileInfo.FileFormat.block_align);
roryhand 1:aac37edee302 579 fread(Sound.FileInfo.slice_buf,Sound.FileInfo.FileFormat.block_align,1,Sound.FileInfo.WavFile); //This isnt actually required, its just a test
roryhand 1:aac37edee302 580 Sound.FileInfo.num_slices = Sound.FileInfo.FileData.subchunk2_size/Sound.FileInfo.FileFormat.block_align;
roryhand 1:aac37edee302 581 printf("Number of Slices: %d\n\r",Sound.FileInfo.num_slices);
roryhand 1:aac37edee302 582 return Sound;
roryhand 1:aac37edee302 583 }
roryhand 1:aac37edee302 584
roryhand 1:aac37edee302 585
roryhand 0:e89d7a0bfa3b 586 classFade FadeDataInitialise(classFade FadeData)
roryhand 0:e89d7a0bfa3b 587 {
roryhand 1:aac37edee302 588 FadeData.DecayFactor = 1.3;
roryhand 0:e89d7a0bfa3b 589 FadeData.FadeIteration = 1;
roryhand 0:e89d7a0bfa3b 590 //FadeData.Denom = 11025*FadeData.DecayFactor;
roryhand 0:e89d7a0bfa3b 591 FadeData.Denom = 11025*FadeData.DecayFactor;
roryhand 0:e89d7a0bfa3b 592 FadeData.Natural_Exp = 2.7183;
roryhand 0:e89d7a0bfa3b 593 FadeData.Length = 11025*FadeData.LengthSecs;
roryhand 0:e89d7a0bfa3b 594 //FadeData.Natural_Exp = 2.7;
roryhand 0:e89d7a0bfa3b 595 return FadeData;
roryhand 0:e89d7a0bfa3b 596 }
roryhand 0:e89d7a0bfa3b 597
roryhand 0:e89d7a0bfa3b 598 //Playing Files Code
roryhand 46:de390e45c2af 599 /*
roryhand 45:0e8e1f2ec5d2 600 float FadeIn(void)
roryhand 0:e89d7a0bfa3b 601 {
roryhand 0:e89d7a0bfa3b 602 powervalFadeIn = FadeIterationIn/denom;
roryhand 0:e89d7a0bfa3b 603 FadeCoeffFadeIn
roryhand 1:aac37edee302 604
roryhand 1:aac37edee302 605
roryhand 45:0e8e1f2ec5d2 606 }
roryhand 45:0e8e1f2ec5d2 607 float FadeOut(void)
roryhand 0:e89d7a0bfa3b 608 {
roryhand 0:e89d7a0bfa3b 609 powerval = -FadeIteration/denom;
roryhand 0:e89d7a0bfa3b 610 FadeCoeff = pow(natural_exp,powerval);
roryhand 1:aac37edee302 611 FadeIteration = FadeIteration + 1;
roryhand 1:aac37edee302 612 return FadeCoeff;
roryhand 1:aac37edee302 613
roryhand 45:0e8e1f2ec5d2 614 }
roryhand 46:de390e45c2af 615 */
roryhand 0:e89d7a0bfa3b 616
roryhand 0:e89d7a0bfa3b 617 void Play_WaveFile(FILE * my_wav, WAV_FILE_STRUCT FileInfo)
roryhand 0:e89d7a0bfa3b 618 {
roryhand 1:aac37edee302 619 while(slice<FileInfo.num_slices) {
roryhand 1:aac37edee302 620 fread(FileInfo.slice_buf,FileInfo.FileFormat.block_align,1,my_wav);
roryhand 1:aac37edee302 621 data_sptr=(short *)FileInfo.slice_buf; // 16 bit samples
roryhand 1:aac37edee302 622 for (channel=0; channel<FileInfo.FileFormat.num_channels; channel++) {
roryhand 1:aac37edee302 623 if(flag1 == 1) {
roryhand 1:aac37edee302 624 Buffer1[place_hold1] = data_sptr[channel];
roryhand 1:aac37edee302 625 place_hold1 = place_hold1 + 1;
roryhand 1:aac37edee302 626 if(place_hold1 >= BufferLen) {
roryhand 1:aac37edee302 627 while(1) {
roryhand 1:aac37edee302 628 if(flag1 == 0) {
roryhand 0:e89d7a0bfa3b 629
roryhand 1:aac37edee302 630 break;
roryhand 0:e89d7a0bfa3b 631 }
roryhand 1:aac37edee302 632
roryhand 0:e89d7a0bfa3b 633 }
roryhand 1:aac37edee302 634 }
roryhand 1:aac37edee302 635
roryhand 1:aac37edee302 636 } else if(flag2 == 1) {
roryhand 1:aac37edee302 637 Buffer2[place_hold2] = data_sptr[channel];
roryhand 1:aac37edee302 638 place_hold2 = place_hold2 + 1;
roryhand 1:aac37edee302 639 if(place_hold2 >= BufferLen) {
roryhand 1:aac37edee302 640
roryhand 1:aac37edee302 641 while(1) {
roryhand 1:aac37edee302 642 if(flag2 == 0) {
roryhand 1:aac37edee302 643
roryhand 1:aac37edee302 644 break;
roryhand 1:aac37edee302 645 }
roryhand 0:e89d7a0bfa3b 646 }
roryhand 1:aac37edee302 647 }
roryhand 0:e89d7a0bfa3b 648 }
roryhand 1:aac37edee302 649
roryhand 1:aac37edee302 650 }
roryhand 1:aac37edee302 651 slice = slice + 1;
roryhand 0:e89d7a0bfa3b 652 }
roryhand 0:e89d7a0bfa3b 653 }
roryhand 0:e89d7a0bfa3b 654
roryhand 0:e89d7a0bfa3b 655
roryhand 0:e89d7a0bfa3b 656
roryhand 0:e89d7a0bfa3b 657
roryhand 32:6ee488c97dcc 658 void Play_WaveFileDual(FILE * my_wav, WAV_FILE_STRUCT FileInfo)
roryhand 32:6ee488c97dcc 659 {
roryhand 32:6ee488c97dcc 660 while(slice<FileInfo.num_slices) {
roryhand 32:6ee488c97dcc 661 if(FileSwitchFlag == 1) {
roryhand 35:4469b508dda3 662
roryhand 33:a75f0a30fbdc 663 if(temp == 1) {
roryhand 34:26118c8f2e48 664 printf("Does it go to this point\n\r");
roryhand 35:4469b508dda3 665 N3Wav = fopen("/sd/mydir/SoundDecoder_second/03.wav","rb");
roryhand 33:a75f0a30fbdc 666 if(N3Wav == NULL) {
roryhand 33:a75f0a30fbdc 667 printf("Cannot Open testwav\n\r");
roryhand 33:a75f0a30fbdc 668 }
roryhand 33:a75f0a30fbdc 669 fclose(StartupWav);
roryhand 33:a75f0a30fbdc 670 temp = 0;
roryhand 33:a75f0a30fbdc 671 }
roryhand 35:4469b508dda3 672 fread(WavInfo_N3.slice_buf,WavInfo_N3.FileFormat.block_align,1,N3Wav);
roryhand 35:4469b508dda3 673 data_sptr=(short*)WavInfo_N3.slice_buf;
roryhand 32:6ee488c97dcc 674 } else {
roryhand 32:6ee488c97dcc 675 fread(FileInfo.slice_buf,FileInfo.FileFormat.block_align,1,my_wav);
roryhand 32:6ee488c97dcc 676 data_sptr=(short *)FileInfo.slice_buf; // 16 bit samples
roryhand 32:6ee488c97dcc 677 }
roryhand 32:6ee488c97dcc 678 for (channel=0; channel<FileInfo.FileFormat.num_channels; channel++) {
roryhand 32:6ee488c97dcc 679 if(flag1 == 1) {
roryhand 32:6ee488c97dcc 680 Buffer1[place_hold1] = data_sptr[channel];
roryhand 32:6ee488c97dcc 681 place_hold1 = place_hold1 + 1;
roryhand 32:6ee488c97dcc 682 if(place_hold1 >= BufferLen) {
roryhand 32:6ee488c97dcc 683 while(1) {
roryhand 32:6ee488c97dcc 684 if(flag1 == 0) {
roryhand 0:e89d7a0bfa3b 685
roryhand 32:6ee488c97dcc 686 break;
roryhand 32:6ee488c97dcc 687 }
roryhand 32:6ee488c97dcc 688
roryhand 32:6ee488c97dcc 689 }
roryhand 32:6ee488c97dcc 690 }
roryhand 32:6ee488c97dcc 691
roryhand 32:6ee488c97dcc 692 } else if(flag2 == 1) {
roryhand 32:6ee488c97dcc 693 Buffer2[place_hold2] = data_sptr[channel];
roryhand 32:6ee488c97dcc 694 place_hold2 = place_hold2 + 1;
roryhand 32:6ee488c97dcc 695 if(place_hold2 >= BufferLen) {
roryhand 32:6ee488c97dcc 696
roryhand 32:6ee488c97dcc 697 while(1) {
roryhand 32:6ee488c97dcc 698 if(flag2 == 0) {
roryhand 32:6ee488c97dcc 699
roryhand 32:6ee488c97dcc 700 break;
roryhand 32:6ee488c97dcc 701 }
roryhand 32:6ee488c97dcc 702 }
roryhand 32:6ee488c97dcc 703 }
roryhand 32:6ee488c97dcc 704 }
roryhand 32:6ee488c97dcc 705
roryhand 32:6ee488c97dcc 706 }
roryhand 32:6ee488c97dcc 707 slice = slice + 1;
roryhand 32:6ee488c97dcc 708 }
roryhand 32:6ee488c97dcc 709 }
roryhand 0:e89d7a0bfa3b 710
roryhand 38:3b4c05af5f36 711 //***************************************************************************//
roryhand 38:3b4c05af5f36 712
roryhand 38:3b4c05af5f36 713 //**************************************************************************//
roryhand 38:3b4c05af5f36 714
roryhand 38:3b4c05af5f36 715
roryhand 38:3b4c05af5f36 716
roryhand 38:3b4c05af5f36 717
roryhand 38:3b4c05af5f36 718
roryhand 1:aac37edee302 719
roryhand 44:a9e84d333a6a 720
roryhand 45:0e8e1f2ec5d2 721 void Play_WaveFileLoop(classSoundFile Sound1, classSoundFile Sound2, classSoundFile Sound3, FILE *wavfile1, FILE *wavfile2, FILE *wavfile3)
roryhand 45:0e8e1f2ec5d2 722 {
roryhand 50:78ded157e9bb 723
roryhand 45:0e8e1f2ec5d2 724 while(1) { //might have to change this to a while(1) loop?
roryhand 48:01490448a05a 725
roryhand 44:a9e84d333a6a 726 //Sound1=======================================================================================
roryhand 49:ce6b36eb0d88 727
roryhand 49:ce6b36eb0d88 728
roryhand 49:ce6b36eb0d88 729 if(BlockFlag == 0) {
roryhand 49:ce6b36eb0d88 730 if( slice1 == (Sound1.FileInfo.num_slices-1) ) {
roryhand 49:ce6b36eb0d88 731 slice1 = 0;
roryhand 49:ce6b36eb0d88 732 fseek(wavfile1,44,SEEK_SET);
roryhand 49:ce6b36eb0d88 733 }
roryhand 49:ce6b36eb0d88 734 if(feof(wavfile1)) {
roryhand 49:ce6b36eb0d88 735 fseek(wavfile1,44,SEEK_SET);
roryhand 49:ce6b36eb0d88 736 }
roryhand 51:dab013a902bd 737 //printf("Debugging\n\r");
roryhand 51:dab013a902bd 738 //printf("At Sound 1 data assignment section\n\r");
roryhand 49:ce6b36eb0d88 739 fread(Sound1.FileInfo.slice_buf,Sound1.FileInfo.FileFormat.block_align,1,wavfile1);
roryhand 49:ce6b36eb0d88 740 Sound1.data_sptr=(short *)Sound1.FileInfo.slice_buf; // 16 bit samples
roryhand 50:78ded157e9bb 741 }
roryhand 44:a9e84d333a6a 742
roryhand 50:78ded157e9bb 743 else if(BlockFlag == 1) {
roryhand 50:78ded157e9bb 744 if( slice1 == (Sound1.FileInfo.num_slices-1) ) {
roryhand 50:78ded157e9bb 745 slice1 = 0;
roryhand 50:78ded157e9bb 746 fseek(wavfile1,44,SEEK_SET);
roryhand 50:78ded157e9bb 747 }
roryhand 50:78ded157e9bb 748 if(feof(wavfile1)) {
roryhand 50:78ded157e9bb 749 fseek(wavfile1,44,SEEK_SET);
roryhand 50:78ded157e9bb 750 }
roryhand 51:dab013a902bd 751 //printf("Debugging\n\r");
roryhand 51:dab013a902bd 752 //printf("At First set of fades assignment point\n\r");
roryhand 49:ce6b36eb0d88 753 //Sound1=======================================================================================
roryhand 50:78ded157e9bb 754 fread(Sound1.FileInfo.slice_buf,Sound1.FileInfo.FileFormat.block_align,1,wavfile1);
roryhand 50:78ded157e9bb 755 Sound1.data_sptr=(short *)Sound1.FileInfo.slice_buf; // 16 bit samples
roryhand 49:ce6b36eb0d88 756 //Sound1=======================================================================================
roryhand 49:ce6b36eb0d88 757
roryhand 49:ce6b36eb0d88 758
roryhand 50:78ded157e9bb 759 if(FadeFlag == 1) {
roryhand 44:a9e84d333a6a 760
roryhand 50:78ded157e9bb 761 //require this to get the fadeout coefficient for Sound1.
roryhand 50:78ded157e9bb 762 NotchFadeOut.FadeCoeff = NotchFadeOut.FadeOut();//compute new FadeOut Coeff value
roryhand 2:957d3b2afff4 763
roryhand 45:0e8e1f2ec5d2 764
roryhand 3:6169aeeaeeb4 765
roryhand 50:78ded157e9bb 766 if( ((Sound2.FileInfo.FileData.subchunk2_size) - NotchFadeIn.Length - 2*11025) <= (ftell(wavfile2) + 44)) {
roryhand 49:ce6b36eb0d88 767
roryhand 49:ce6b36eb0d88 768
roryhand 50:78ded157e9bb 769 //required for calculating the fade In coefficient for Sound3
roryhand 50:78ded157e9bb 770 NotchFadeIn.FadeCoeff = NotchFadeIn.FadeIn();
roryhand 49:ce6b36eb0d88 771
roryhand 50:78ded157e9bb 772 //Read In the next Notch
roryhand 49:ce6b36eb0d88 773
roryhand 49:ce6b36eb0d88 774
roryhand 50:78ded157e9bb 775 //no longer require the above section as we are reading in data for Sound3 (above, at beginning of function).
roryhand 49:ce6b36eb0d88 776
roryhand 50:78ded157e9bb 777 if( (ftell(wavfile2) + 44) >= Sound2.FileInfo.FileData.subchunk2_size ) {
roryhand 49:ce6b36eb0d88 778
roryhand 50:78ded157e9bb 779 //need to explicitly test if this notation/syntax works for pointers....
roryhand 50:78ded157e9bb 780 //Was this ever tested?? no idea...
roryhand 50:78ded157e9bb 781 //If not then we need to pass in the 3 different "data_sptr" variables in separately, and not tied to a specific class
roryhand 50:78ded157e9bb 782 //or structure. //Confirmed 8/9/2019 this works!
roryhand 49:ce6b36eb0d88 783
roryhand 50:78ded157e9bb 784 *Sound1.data_sptr = *Sound3.data_sptr*NotchFadeIn.FadeCoeff;//Sound 3 by itself.
roryhand 51:dab013a902bd 785 Sound3 = Sound1;
roryhand 50:78ded157e9bb 786 fclose(wavfile1);
roryhand 50:78ded157e9bb 787 fclose(wavfile2);
roryhand 51:dab013a902bd 788 BlockFlag = 2;
roryhand 50:78ded157e9bb 789 FadeFlag = 0;
roryhand 50:78ded157e9bb 790 } else {
roryhand 49:ce6b36eb0d88 791
roryhand 50:78ded157e9bb 792 *Sound1.data_sptr = *Sound1.data_sptr*NotchFadeOut.FadeCoeff + *Sound2.data_sptr + *Sound3.data_sptr*NotchFadeIn.FadeCoeff;//Sounds 1, 2 and 3 Cross-fade.
roryhand 50:78ded157e9bb 793 //probably later on redesign this to work with flags - that way it may be a little easier to debug any issues.
roryhand 49:ce6b36eb0d88 794 }
roryhand 49:ce6b36eb0d88 795
roryhand 50:78ded157e9bb 796 } else {
roryhand 50:78ded157e9bb 797 *Sound1.data_sptr = *Sound1.data_sptr*NotchFadeOut.FadeCoeff + *Sound2.data_sptr;//Sound1 and Sound 2 cross fade
roryhand 49:ce6b36eb0d88 798 }
roryhand 49:ce6b36eb0d88 799
roryhand 50:78ded157e9bb 800 }
roryhand 50:78ded157e9bb 801 /*else
roryhand 50:78ded157e9bb 802 {
roryhand 50:78ded157e9bb 803 //not convinced this is needed. Check written logic.
roryhand 50:78ded157e9bb 804
roryhand 50:78ded157e9bb 805 }*/
roryhand 49:ce6b36eb0d88 806
roryhand 50:78ded157e9bb 807 } else if(BlockFlag == 2) {
roryhand 50:78ded157e9bb 808 if( slice3 == (Sound3.FileInfo.num_slices-1) ) {
roryhand 50:78ded157e9bb 809 slice3 = 0;
roryhand 50:78ded157e9bb 810 fseek(wavfile3,44,SEEK_SET);
roryhand 50:78ded157e9bb 811 }
roryhand 50:78ded157e9bb 812 if(feof(wavfile3)) {
roryhand 50:78ded157e9bb 813 fseek(wavfile3,44,SEEK_SET);
roryhand 50:78ded157e9bb 814 }
roryhand 50:78ded157e9bb 815
roryhand 51:dab013a902bd 816 //printf("Debugging\n\r");
roryhand 51:dab013a902bd 817 //printf("At Second set of fades assignment point\n\r");
roryhand 50:78ded157e9bb 818 //Sound3=======================================================================================
roryhand 50:78ded157e9bb 819 fread(Sound3.FileInfo.slice_buf,Sound3.FileInfo.FileFormat.block_align,1,wavfile3);
roryhand 50:78ded157e9bb 820 Sound3.data_sptr=(short *)Sound3.FileInfo.slice_buf; // 16 bit samples
roryhand 50:78ded157e9bb 821 //=============================================================================================
roryhand 50:78ded157e9bb 822 if(FadeFlag == 1) {
roryhand 50:78ded157e9bb 823 //Sound2=======================================================================================
roryhand 50:78ded157e9bb 824 fread(Sound2.FileInfo.slice_buf,Sound2.FileInfo.FileFormat.block_align,1,wavfile2);
roryhand 50:78ded157e9bb 825 Sound2.data_sptr=(short *)Sound2.FileInfo.slice_buf; // 16 bit samples
roryhand 50:78ded157e9bb 826 //=============================================================================================
roryhand 50:78ded157e9bb 827
roryhand 2:957d3b2afff4 828
roryhand 44:a9e84d333a6a 829
roryhand 49:ce6b36eb0d88 830 //Sound3=======================================================================================
roryhand 49:ce6b36eb0d88 831 fread(Sound3.FileInfo.slice_buf,Sound3.FileInfo.FileFormat.block_align,1,wavfile3);
roryhand 49:ce6b36eb0d88 832 Sound3.data_sptr=(short *)Sound3.FileInfo.slice_buf; // 16 bit samples
roryhand 49:ce6b36eb0d88 833 //=============================================================================================
roryhand 44:a9e84d333a6a 834
roryhand 50:78ded157e9bb 835 //require this to get the fadeout coefficient for Sound1.
roryhand 50:78ded157e9bb 836 NotchFadeOut.FadeCoeff = NotchFadeOut.FadeOut();//compute new FadeOut Coeff value
roryhand 49:ce6b36eb0d88 837
roryhand 49:ce6b36eb0d88 838
roryhand 48:01490448a05a 839
roryhand 50:78ded157e9bb 840 if( ((Sound2.FileInfo.FileData.subchunk2_size) - NotchFadeIn.Length - 2*11025) <= (ftell(wavfile2) + 44)) {
roryhand 49:ce6b36eb0d88 841
roryhand 49:ce6b36eb0d88 842
roryhand 50:78ded157e9bb 843 //required for calculating the fade In coefficient for Sound3
roryhand 50:78ded157e9bb 844 NotchFadeIn.FadeCoeff = NotchFadeIn.FadeIn();
roryhand 2:957d3b2afff4 845
roryhand 50:78ded157e9bb 846 //Read In the next Notch
roryhand 49:ce6b36eb0d88 847
roryhand 49:ce6b36eb0d88 848
roryhand 50:78ded157e9bb 849 //no longer require the above section as we are reading in data for Sound3 (above, at beginning of function).
roryhand 3:6169aeeaeeb4 850
roryhand 50:78ded157e9bb 851 if( (ftell(wavfile2) + 44) >= Sound2.FileInfo.FileData.subchunk2_size ) {
roryhand 49:ce6b36eb0d88 852
roryhand 50:78ded157e9bb 853 //need to explicitly test if this notation/syntax works for pointers....
roryhand 50:78ded157e9bb 854 //Was this ever tested?? no idea...
roryhand 50:78ded157e9bb 855 //If not then we need to pass in the 3 different "data_sptr" variables in separately, and not tied to a specific class
roryhand 50:78ded157e9bb 856 //or structure. //Confirmed 8/9/2019 this works!
roryhand 48:01490448a05a 857
roryhand 50:78ded157e9bb 858 *Sound1.data_sptr = *Sound1.data_sptr*NotchFadeIn.FadeCoeff;//Sound 1 by itself.
roryhand 50:78ded157e9bb 859 fclose(wavfile3);
roryhand 50:78ded157e9bb 860 fclose(wavfile2);
roryhand 51:dab013a902bd 861 BlockFlag = 1;
roryhand 50:78ded157e9bb 862 FadeFlag = 0;
roryhand 50:78ded157e9bb 863 } else {
roryhand 48:01490448a05a 864
roryhand 50:78ded157e9bb 865 *Sound1.data_sptr = *Sound3.data_sptr*NotchFadeOut.FadeCoeff + *Sound2.data_sptr + *Sound1.data_sptr*NotchFadeIn.FadeCoeff;//Sounds 1, 2 and 3 Cross-fade.
roryhand 50:78ded157e9bb 866 //probably later on redesign this to work with flags - that way it may be a little easier to debug any issues.
roryhand 49:ce6b36eb0d88 867 }
roryhand 9:dd9cae06b202 868
roryhand 50:78ded157e9bb 869 } else {
roryhand 50:78ded157e9bb 870 *Sound1.data_sptr = *Sound3.data_sptr*NotchFadeOut.FadeCoeff + *Sound2.data_sptr;//Sound3 and Sound 2 cross fade
roryhand 49:ce6b36eb0d88 871 }
roryhand 49:ce6b36eb0d88 872
roryhand 49:ce6b36eb0d88 873
roryhand 49:ce6b36eb0d88 874 }
roryhand 49:ce6b36eb0d88 875
roryhand 50:78ded157e9bb 876 /*else
roryhand 50:78ded157e9bb 877 {
roryhand 49:ce6b36eb0d88 878
roryhand 50:78ded157e9bb 879 //Again, not convinced this needs to be here. check written logic
roryhand 50:78ded157e9bb 880 } */
roryhand 49:ce6b36eb0d88 881
roryhand 49:ce6b36eb0d88 882
roryhand 50:78ded157e9bb 883 }
roryhand 49:ce6b36eb0d88 884
roryhand 50:78ded157e9bb 885 /**********************************************************************************************************/
roryhand 50:78ded157e9bb 886 /****************************DATA OUTPUT SECTION***********************************************************/
roryhand 50:78ded157e9bb 887 /**********************************************************************************************************/
roryhand 51:dab013a902bd 888
roryhand 51:dab013a902bd 889 //printf("Debugging\n\r");
roryhand 51:dab013a902bd 890 //printf("At Sound output point\n\r");
roryhand 50:78ded157e9bb 891 for (channel=0; channel<Sound1.FileInfo.FileFormat.num_channels; channel++) {
roryhand 50:78ded157e9bb 892 switch (Sound1.FileInfo.FileFormat.sig_bps) {
roryhand 50:78ded157e9bb 893 case 16:
roryhand 50:78ded157e9bb 894 if(flag1 == 1) {
roryhand 50:78ded157e9bb 895 Buffer1[place_hold1] = Sound1.data_sptr[channel];
roryhand 50:78ded157e9bb 896 place_hold1 = place_hold1 + 1;
roryhand 50:78ded157e9bb 897 if(place_hold1 >= BufferLen) {
roryhand 50:78ded157e9bb 898 while(1) {
roryhand 50:78ded157e9bb 899 if(flag1 == 0) {
roryhand 50:78ded157e9bb 900 break;
roryhand 50:78ded157e9bb 901 }//if(flag1 == 0)
roryhand 49:ce6b36eb0d88 902
roryhand 49:ce6b36eb0d88 903
roryhand 50:78ded157e9bb 904 }//while(1)
roryhand 50:78ded157e9bb 905 }//if(place_hold1 > = BufferLen)
roryhand 49:ce6b36eb0d88 906
roryhand 50:78ded157e9bb 907 } else if(flag2 == 1) {
roryhand 50:78ded157e9bb 908 Buffer2[place_hold2] = Sound1.data_sptr[channel];
roryhand 50:78ded157e9bb 909 place_hold2 = place_hold2 + 1;
roryhand 50:78ded157e9bb 910 if(place_hold2 >= BufferLen) {
roryhand 50:78ded157e9bb 911 while(1) {
roryhand 49:ce6b36eb0d88 912
roryhand 50:78ded157e9bb 913 if(flag2 == 0) {
roryhand 50:78ded157e9bb 914 break;
roryhand 49:ce6b36eb0d88 915 }
roryhand 49:ce6b36eb0d88 916 }
roryhand 49:ce6b36eb0d88 917 }
roryhand 49:ce6b36eb0d88 918
roryhand 50:78ded157e9bb 919 }
roryhand 50:78ded157e9bb 920 }
roryhand 50:78ded157e9bb 921 }
roryhand 50:78ded157e9bb 922 slice1 = slice1 + 1;
roryhand 50:78ded157e9bb 923 slice2 = slice2 + 1;
roryhand 50:78ded157e9bb 924 slice3 = slice3 + 1;
roryhand 1:aac37edee302 925
roryhand 50:78ded157e9bb 926 }
roryhand 49:ce6b36eb0d88 927
roryhand 49:ce6b36eb0d88 928
roryhand 50:78ded157e9bb 929 }
roryhand 0:e89d7a0bfa3b 930
roryhand 0:e89d7a0bfa3b 931
roryhand 0:e89d7a0bfa3b 932
roryhand 0:e89d7a0bfa3b 933
roryhand 0:e89d7a0bfa3b 934
roryhand 0:e89d7a0bfa3b 935
roryhand 0:e89d7a0bfa3b 936
roryhand 9:dd9cae06b202 937