hello,
i trying to generate a text file with IAR in desktop for example, is it possible?
i tried this:
#include <map430x14x.h>
#include <stdio.h>
#include <stdlib.h>
void main(void) {
FILE *datei;
/* Bitte Pfad und Dateinamen anpassen */
datei = fopen("C:\\Users\\Arthur\\Desktop\\test.txt", "w");
fprintf(datei,"hallo");
}
i got no error only if i choose full DLIB. i tried first "simulator".
then i got this error :
Fatal Error[e89]: Too much object code produced (more than 0x1000 bytes) for this package .
can anybody help ?
Thanks