DSP/BIOS project unresolved symbols » main.cpp
1 |
/*
|
---|---|
2 |
* main.c
|
3 |
*/
|
4 |
#include <std.h>
|
5 |
#include <log.h>
|
6 | |
7 |
#include <stdio.h>
|
8 |
#include "quadracfg.h"
|
9 | |
10 |
#include "pippuzzo.h"
|
11 | |
12 |
#define MAX_DSP_FFT_SIZE 32768
|
13 |
#define BUFFSIZE 1000
|
14 | |
15 |
/* Functions */
|
16 |
float global_buffer[10000000]; |
17 | |
18 |
int main(void) |
19 |
{
|
20 |
float inp_buffer[BUFFSIZE]; |
21 |
int i; |
22 | |
23 |
inp_buffer[0] = 0; |
24 | |
25 |
for(i=0;i<1000000;i++) |
26 |
global_buffer[i]=i+1; |
27 | |
28 |
_dataIO(); |
29 | |
30 |
return 0; |
31 | |
32 |
}
|