I've installed BricxCC, but when I try to compile my first program for the EV3:
Code: Select all
#include <stdio.h>
#include <unistd.h>
#include "C:\BricxCC\API\ev3_lcd.h"
#include "C:\BricxCC\API\ev3_command.h"
int main()
{
int i;
LcdInit();
LcdText(1, 0, 0, "Hello World!");
Wait(SEC_1);
LcdExit();
}
Can someone help me? I've BricxCC 3.3.8.11 and the 1.03H firmware.
Thanks.