ich bekomme eine fehlermeldung wenn ich den code compilieren will
Code:
#include "asuro.h"
#include <stdlib.h>

int main (void)
{
    int t;

    unsigned int data[2];
    unsigned char links[7];
    unsigned char rechts[7];

    for (t=0;t<25;t++)
    {
        LineData (data);

         itoa (data[0], links, 10);
         itoa (data[1], rechts, 10);

         SerWrite (text, 6);
         SerWrite ("\n\r", 2);
         SerWrite (test, 6);
         SerWrite ("\n\n\r", 3);

         Sleep (215);
    }
    StatusLED (RED);
    return 0;
}


Fehlermeldung:

test.c: In function `main':
test.c:19: error: `text' undeclared (first use in this function)
test.c:19: error: (Each undeclared identifier is reported only once
test.c:19: error: for each function it appears in.)
test.c:22: error: `test' undeclared (first use in this function)
make: *** [test.o] Error 1

> Process Exit Code: 2