-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.c
53 lines (51 loc) · 1.14 KB
/
main.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
#include <stdlib.h> // for random numbers, and system() function
#include <stdio.h>
#include <signal.h>
#include "screen.h"
#include "sound.h"
#include "comm.h"
int main(int argc, char **argv){
if(argc>1){ // if the user has given some command line argument
printf("Test tone generator\n");
int fR, fL, ch;
float duration;
printf("No. of channels (1 or 2): ");
scanf("%d", &ch);
if(ch == 1){
printf("Mono Frequency: ");
scanf("%d", &fL);
}
else if(ch == 2){
printf("Give me Left and Rigth freq: ");
scanf("%d %d", &fL, &fR);
}
else{
printf("Wrong number of channels\n");
return 1;
}
printf("Duration of sound: ");
scanf("%f", &duration);
testTone(ch, fL, fR, duration);
return 0;
}
FILE *f;
short sd[RATE];
for(;;){
int ret = system(RCMD);
if(ret == SIGINT) break;
f = fopen("test.wav", "r");
if(f == NULL){
printf("Cannot open the file\n");
return 1;
}
clearScreen();
struct WAVHDR hdr;
fread(&hdr, sizeof(hdr), 1, f); // read WAV header
fread(&sd, sizeof(sd), 1, f); // read WAV data
fclose(f);
displayWAVHDR(hdr);
displayWAVDATA(sd);
sendDATA(sd);
}
resetColors();
}