12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- #include <stdio.h>
- #include <sys/time.h>
- #define LED 2
- struct timeval* showTime(struct timeval* start);
- void readData(unsigned char* data, unsigned long int samples, unsigned int duration);
- unsigned int frameSize(unsigned char* data, unsigned int* high, unsigned int* low);
- void analyse(unsigned char* data, unsigned long int samples, FILE* output, unsigned char all);
|