-
Notifications
You must be signed in to change notification settings - Fork 1
/
final_instrument.c
672 lines (533 loc) · 15.8 KB
/
final_instrument.c
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
#define F_CPU 14745600
#include <avr/io.h>
#include <util/delay.h>
#include <avr/interrupt.h>
#include "i2c.h"
#include "mpr121.h"
#include "UART.c"
#include "lcd.c"
#include "spi.c"
#include "FAT32.c"
#include "SD.c"
#define MPR121_R 0xB5 // ADD pin is grounded
#define MPR121_W 0xB4 // So address is 0x5A
// global variables
int switch_flag = 0; //to check boot key press
unsigned char touchstatus,touchstatus1; //to check if any mpr121 electrodes are touched
//touchstatus for piano electrodes
//touchstatus1 for trumpet electrodes
unsigned int config_num[10] = {5,3,6}; //octaves of notes as given in configuration table
unsigned int config_sharp[10] = {0,0,1}; //notes are sharp or not, as given in configuration table
unsigned char ans_file[12], send_note[4]; //ans_file contains name of file to be played
//send_note contains the note details to be sent via UART
int8_t msb,lsb; //2 bytes read from wav file
int16_t data_read; //lsb & msb put together and scaled up by 32768
int count; //number of bytes read from sector
int sectors_read = 0; //number of sectors read from cluster
unsigned long curr_pos; //position of PC in SD card
int number_of_clusters; //number of cluster of the file played
char trumpet_note[9] = "zEDGCAFB\0"; //note configuration for trumpet
unsigned char response, state, address; //
unsigned int retry = 0, block_addr; //variable used for i2c communication
unsigned char data, data1; //data & data1 calculate touch status using i2c
ISR(TIMER5_OVF_vect)
{
lsb = spi_receive_data();
msb = spi_receive_data();
//put together lsb & msb to make 16bit sample
data_read = msb << 8;
data_read |= lsb;
//scale up by 32768 to make the values positive
int32_t temp_data = (int32_t)data_read;
temp_data = data_read + 32768;
data_read = (uint16_t)temp_data;
OCR5A = _BV(data_read); //write 16bit value to output compare register
count += 2; //number of bytes read in sector increases by 2
if(count >= 512)
{
spi_receive_data(); // receive incoming CRC (16-bit), CRC is ignored here
spi_receive_data();
spi_receive_data(); // extra 8 SCK pulses
spi_cs_high(); //stop spi communication
curr_pos = curr_pos + bytes_per_sector;
block_addr = cluster_start_sector + 1;
spi_read();
count = 0;
sectors_read++;
}
}
void timer5_init()
{
ICR5 = 0x014F; //Setting TOP value
// 0x014F == 335 for sampling frequency 44100 (CPU freq / Sampling freq)
TCCR5B = 0x00; //Stop
TCNT5 = 0x0000; //16 bit counter
OCR5A = 0x0000; //Output compare register
TIMSK5 = 0x01; //Overflow interrupt enabled
TCCR5A = 0xC2; /*{COM5A1=1, COM5A0=1; COM5B1=0, COM5B0=0; COM5C1=0 COM5C0=0}
Set OCR5A only, high on compare match
{WGM51=1, WGM50=0}
Along With WGM53 & WGM52 in TCCR5B for Selecting FAST PWM with ICR value as TOP*/
TCCR5B = 0x19; //WGM53=1 WGM52=1;
//CS12=0, CS11=0, CS10=1 (Prescaler=1)
}
void check_boot_press()
{
if(switch_flag != 2){
// boot switch not pressed
if ((PIND & 0x40) == 0x40)
{
switch_flag = 0;
}
// if boot switch pressed, send '#' to Python script
// this is indicated as Start of Task
else
{
switch_flag = 2;
uart_tx_string("#");
uart_tx_string("\n");
}
}
}
// boot switch pin (PD.6) configuration
void boot_switch_pin_config()
{
DDRD = DDRD & 0xBF; // set PD.6 as input
PORTD = PORTD | 0x40; // set PD.6 HIGH to enable the internal pull-up
}
// LCD display pin configurations
void lcd_port_config(void)
{
DDRC = DDRC | 0xF7; // all LCD pins direction set as output
PORTC = PORTC & 0x08; // all LCD pins set to logic 0 except PC.3 (Buzzer pin)
}
// initialize all devices
void init_devices()
{
DDRE = 0x00;
PORTE = 0x10;
DDRL |= 0x08; //output pin for Speaker PWM output
PORTL |= 0x08;
uart0_init();
spi_init();
timer5_init();
lcd_init();
spi_pin_config();
lcd_port_config();
boot_switch_pin_config();
i2cInit();
mpr121QuickConfig();
cli();
}
//configure SPI communication for reading a
//ask the SD card to read from block_addr (READ_SINGLE_BLOCK or CMD17)
int spi_read()
{
spi_cs_low();
retry = 0;
do
{
response = sd_card_send_command(READ_SINGLE_BLOCK, block_addr);
retry++;
if (retry > 0xFE) // time out, card not detected
{
return 0;
}
} while (response != 0x00);
retry = 0; // wait for start block token (0xFE)
while (spi_receive_data() != 0xFE)
{
if (retry++ > 0xFE)
{
return 0;
}
}
}
int main(void)
{
int i = 0;
unsigned char c,d;
char pin_pressed = 'z', pin_inst = 'z'; //instrument played and pin touched
int pin_count = 0; //counter of number of pins touched
int touchNumber = 0; //number of pins touched at once
int t1 = 0, t2 = 0, t3 = 0, trumpet_pin = 0; //temporary variable to calculate the played trumpet note
int prev_status, prev_status1; //to store previous touch status of mpr121
int cluster_number = 0; //current cluster being played
int cluster_read = 0; //number of clusters read
switch_flag = 0;
init_devices();
lcd_clear();
lcd_cursor(0,0);
//initializing SD card
c = sd_card_init();
if((int)c)
lcd_string('0','0',"Card INITIALIZED");
else
lcd_string('0','0',"Card Some Error");
_delay_ms(1000);
lcd_clear();
//setting up SD card for data manipulation
d = get_boot_sector_data();
if((int)d)
lcd_string('0','0',"Boot Sector Data Read");
else
lcd_string('0','0',"Boot Sector Error");
while(1)
{
// check for boot switch press
check_boot_press();
if(state != 0x10 && switch_flag == 2){
touchNumber = 0;
check_touch_status();
for (int j=0; j<8; j++) // Check how many electrodes were pressed in Piano side
{
if ((touchstatus & (1<<j)))
touchNumber++;
}
for (int j=0; j<3; j++) // Check how many electrodes were pressed in Trumpet side
{
if ((touchstatus1 & (1<<j)))
touchNumber++;
}
//execute only if some electrode is touched
if(touchNumber != 0)
{
if (touchstatus & (1<<0))
{
pin_pressed = 1;
pin_inst = 'P';
uart_tx_string('$');
lcd_clear();
lcd_string(0,0,"pin 0");
}
if (touchstatus & (1<<1))
{
pin_pressed = 'A';
pin_inst = 'P';
lcd_clear();
lcd_string(0,0,"pin 1");
}
if (touchstatus & (1<<2))
{
pin_pressed = 'B';
pin_inst = 'P';
lcd_clear();
lcd_string(0,0,"pin 2");
}
if (touchstatus & (1<<3))
{
pin_pressed = 'C';
pin_inst = 'P';
lcd_clear();
lcd_string(0,0,"pin 3");
}
if (touchstatus & (1<<4))
{
pin_inst = 'P';
pin_pressed = 'D';
lcd_clear();
lcd_string(0,0,"pin 4");
}
if (touchstatus & (1<<5))
{
pin_inst = 'P';
pin_pressed = 'E';
lcd_clear();
lcd_string(0,0,"pin 5");
}
if (touchstatus & (1<<6))
{
pin_inst = 'P';
pin_pressed = 'F';
lcd_clear();
lcd_string(0,0,"pin 6");
}
if (touchstatus & (1<<7))
{
pin_inst = 'P';
pin_pressed = 'G';
lcd_clear();
lcd_string(0,0,"pin 7");
}
if (touchstatus1 & (1<<1))
{
pin_inst = 'T';
t1 = 1;
lcd_clear();
lcd_string(0,0,"pin 9");
}
if (touchstatus1 & (1<<2))
{
pin_inst = 'T';
t2 = 1;
lcd_clear();
lcd_string(0,0,"pin 10");
}
if (touchstatus1 & (1<<3))
{
pin_inst = 'T';
t3 = 1;
lcd_clear();
lcd_string(0,0,"pin 11");
}
trumpet_pin = (t1 << 2) | (t2 << 1) | t3; //combining t1,t2,t3 to make a value from 0 to 7
//each of the value corresponds a note
pin_pressed = trumpet_note[trumpet_pin]; //notes stored in trumpet_note array
}
}
//execute only if the electrode touched is valid
if(pin_pressed != 'z' )
{
if(pin_pressed == '1') //execute if the end note is to be played
{
sprintf(ans_file, "end.wav\0");
switch_flag = 1;
uart_tx_string("$");
uart_tx_string("\n");
pin_pressed = 'z'; //resetting variable
pin_count++;
}
else if(pin_inst == 'P') //execute if one of the piano keys is played
{
if(config_sharp[pin_count])
{
sprintf(ans_file, "%c#%d_Pia.wav\0", pin_pressed,config_num[pin_count]);
sprintf(send_note, "%c#%d\0", pin_pressed,config_num[pin_count]);
}
else
{
sprintf(ans_file, "%c%d_Pia.wav\0", pin_pressed,config_num[pin_count]);
sprintf(send_note, "%c%d\0", pin_pressed,config_num[pin_count]);
}
prev_status = touchstatus; //initializing current touch status
pin_pressed = 'z'; //resetting variable
pin_count++;
uart_tx_string("Piano\n"); //sending details of instrument played
_delay_ms(250);
uart_tx_string(send_note); //sending details of key pressed
uart_tx_string("\n");
}
else if(pin_inst == 'T') //execute if one of the trumpet keys is played
{
if(config_sharp[pin_count])
{
sprintf(ans_file, "%c#%d_Tru.wav\0", pin_pressed,config_num[pin_count]);
sprintf(send_note, "%c#%d\0", pin_pressed,config_num[pin_count]);
}
else
{
sprintf(ans_file, "%c%d_Tru.wav\0", pin_pressed,config_num[pin_count]);
sprintf(send_note, "%c%d\0", pin_pressed,config_num[pin_count]);
}
prev_status1 = touchstatus1; //initializing current touch status
pin_count++;
pin_pressed = 'z'; //
t1 = 0; t2 = 0; t3 = 0; trumpet_pin = 0; //resetting variables
uart_tx_string("Trumpet\n"); //sending details of instrument played
_delay_ms(250);
uart_tx_string(send_note); //sending details of key pressed
uart_tx_string("\n");
}
lcd_clear();
lcd_string(0,0,ans_file);
_delay_ms(500);
lcd_clear();
//execute only if the file exists
if((int)get_file_info(READ, ans_file))
{
lcd_string('0','0'," File found");
lcd_clear();
lcd_string('0','0',"Reading File");
_delay_ms(500);
number_of_clusters = file_size / (bytes_per_sector * sectors_per_cluster);
lcd_clear();
lcd_numeric_value('2','1',number_of_clusters,5);
//intialiszing all counters to 0
cluster_number = 0;
cluster_read = 0;
sectors_read = 0 ;
cluster_start_sector = get_first_sector(first_cluster);
block_of_cluster = ((curr_pos >> 9) & (sectors_per_cluster - 1));
block_addr = cluster_start_sector + block_of_cluster;
spi_read();
//discard first 44bytes of wav file
unsigned int dump;
for (i = 0; i < 44; i++)
{
dump = spi_receive_data();
}
lcd_clear();
lcd_string(0,0,"READING");
_delay_ms(1000);
//reset timer, enable global interrupts
TCNT5 = 0x00;
sei();
//loop until all clusters of file are played
while(cluster_read < number_of_clusters)
{
//get next sector once the current one has been compeletely played
if(sectors_read > sectors_per_cluster)
{
//check if any new key has been played
check_touch_status();
if(touchstatus1 != prev_status1 || touchstatus != prev_status)
{
cli();
break;
}
else
{
sectors_read = 0;
cluster_read++;
if(cluster_read == 1)
cluster_number = get_set_next_cluster(GET, first_cluster, 0);
else
cluster_number = get_set_next_cluster(GET, cluster_number, 0);
cluster_start_sector = get_first_sector(cluster_number);
block_of_cluster = ((curr_pos >> 9) & (sectors_per_cluster - 1));
block_addr = cluster_start_sector + block_of_cluster;
spi_read();
TCNT5 = 0x00;
}
}
}
//after reading file, clear global interrupts and stop SPI communication
cli();
spi_cs_high();
lcd_clear();
lcd_string(0,0,"READ");
}
else
{
lcd_string('0','0',"File not found");
}
}
}
}
//reading data from mpr121 register
unsigned char mpr121Read(unsigned char address)
{
unsigned char data;
i2cSendStart();
i2cWaitForComplete();
i2cSendByte(MPR121_W); // write 0xB4
i2cWaitForComplete();
i2cSendByte(address); // write register address
i2cWaitForComplete();
i2cSendStart();
i2cSendByte(MPR121_R); // write 0xB5
i2cWaitForComplete();
i2cReceiveByte(TRUE);
i2cWaitForComplete();
data = i2cGetReceivedByte(); // Get MSB result
i2cWaitForComplete();
i2cSendStop();
cbi(TWCR, TWEN); // Disable TWI
sbi(TWCR, TWEN); // Enable TWI
return data;
}
//writing data to mpr121 registers
void mpr121Write(unsigned char address, unsigned char data)
{
i2cSendStart();
i2cWaitForComplete();
i2cSendByte(MPR121_W); // write 0xB4
i2cWaitForComplete();
i2cSendByte(address); // write register address
i2cWaitForComplete();
i2cSendByte(data);
i2cWaitForComplete();
i2cSendStop();
}
//configuratio of mpr121 registers and thresholds
void mpr121QuickConfig(void)
{
// This group controls filtering when data is > baseline.
mpr121Write(MHD_R, 0x01);
mpr121Write(NHD_R, 0x01);
mpr121Write(NCL_R, 0x00);
mpr121Write(FDL_R, 0x00);
// This group controls filtering when data is < baseline.
mpr121Write(MHD_F, 0x01);
mpr121Write(NHD_F, 0x01);
mpr121Write(NCL_F, 0xFF);
mpr121Write(FDL_F, 0x02);
// This group sets touch and release thresholds for each electrode
mpr121Write(ELE0_T, TOU_THRESH);
mpr121Write(ELE0_R, REL_THRESH);
mpr121Write(ELE1_T, TOU_THRESH);
mpr121Write(ELE1_R, REL_THRESH);
mpr121Write(ELE2_T, TOU_THRESH);
mpr121Write(ELE2_R, REL_THRESH);
mpr121Write(ELE3_T, TOU_THRESH);
mpr121Write(ELE3_R, REL_THRESH);
mpr121Write(ELE4_T, TOU_THRESH);
mpr121Write(ELE4_R, REL_THRESH);
mpr121Write(ELE5_T, TOU_THRESH);
mpr121Write(ELE5_R, REL_THRESH);
mpr121Write(ELE6_T, TOU_THRESH);
mpr121Write(ELE6_R, REL_THRESH);
mpr121Write(ELE7_T, TOU_THRESH);
mpr121Write(ELE7_R, REL_THRESH);
mpr121Write(ELE8_T, TOU_THRESH);
mpr121Write(ELE8_R, REL_THRESH);
mpr121Write(ELE9_T, TOU_THRESH);
mpr121Write(ELE9_R, REL_THRESH);
mpr121Write(ELE10_T, TOU_THRESH);
mpr121Write(ELE10_R, REL_THRESH);
mpr121Write(ELE11_T, TOU_THRESH);
mpr121Write(ELE11_R, REL_THRESH);
// Set the Filter Configuration
// Set ESI2
mpr121Write(FIL_CFG, 0x04);
// Electrode Configuration
// Enable 6 Electrodes and set to run mode
// Set ELE_CFG to 0x00 to return to standby mode
mpr121Write(ELE_CFG, 0x0C); // Enables all 12 Electrodes
// Enable Auto Config and auto Reconfig
mpr121Write(ATO_CFG0, 0x0B);
mpr121Write(ATO_CFGU, 0xC9);
mpr121Write(ATO_CFGT, 0xB5);
}
//to check which electrode of mpr121 is touched
void check_touch_status()
{
//for trumpet side
address = 0x01;
i2cSendStart();
i2cWaitForComplete();
i2cSendByte(MPR121_W); // write 0xB4
i2cWaitForComplete();
i2cSendByte(address); // write register address
i2cWaitForComplete();
i2cSendStart();
i2cSendByte(MPR121_R); // write 0xB5
i2cWaitForComplete();
i2cReceiveByte(TRUE);
i2cWaitForComplete();
data1 = i2cGetReceivedByte(); // Get MSB result
i2cWaitForComplete();
i2cSendStop();
cbi(TWCR, TWEN); // Disable TWI
sbi(TWCR, TWEN); // Enable TWI
touchstatus1 = data1;
//for piano side
address = 0x00;
i2cSendStart();
i2cWaitForComplete();
i2cSendByte(MPR121_W); // write 0xB4
i2cWaitForComplete();
i2cSendByte(address); // write register address
i2cWaitForComplete();
i2cSendStart();
i2cSendByte(MPR121_R); // write 0xB5
i2cWaitForComplete();
i2cReceiveByte(TRUE);
i2cWaitForComplete();
data = i2cGetReceivedByte(); // Get MSB result
i2cWaitForComplete();
i2cSendStop();
cbi(TWCR, TWEN); // Disable TWI
sbi(TWCR, TWEN); // Enable TWI
touchstatus = data;
}