skohn
25.04.2006, 20:12
Hallo alle zusammen,
zunächst möchte ich sagen, dass ich mir einen Asuro vor 5 Tagen gekauft habe und alles geht (abgesehen vom Front-LED) und der Selbsttest hat auch einwandfrei geklappt. Nun bin ich aber auf ein Problem gestoßen:
Das Compilieren meines Quellecode.
Ich habe mir irgend einen Quellecode runtergeladen:
#include "asuro.h"
int main(void)
{
Init();
int i;
while(1)
{
MotorDir(FWD,FWD);
MotorSpeed(255,255);
StatusLED(GREEN);
unsigned char taster;
taster = PollSwitch();
taster = PollSwitch();
taster = PollSwitch();
if(taster>0)
{
for (i=0; i<900; i++)
{
StatusLED(RED);
MotorDir(RWD,RWD);
MotorSpeed(100,200);
Sleep(216);
}
MotorSpeed(0,0);
}
}
while(1);
return 0;
}
Dann wollte ich ihn über das Tool make Compilieren und auf dem Asuro ausprobieren (nachdem ich ihn geflascht habe). aber als der Asuro rebooted hat hat sich nichts getan. Was hab ich falsch gemacht ????
MfG,
skohn
zunächst möchte ich sagen, dass ich mir einen Asuro vor 5 Tagen gekauft habe und alles geht (abgesehen vom Front-LED) und der Selbsttest hat auch einwandfrei geklappt. Nun bin ich aber auf ein Problem gestoßen:
Das Compilieren meines Quellecode.
Ich habe mir irgend einen Quellecode runtergeladen:
#include "asuro.h"
int main(void)
{
Init();
int i;
while(1)
{
MotorDir(FWD,FWD);
MotorSpeed(255,255);
StatusLED(GREEN);
unsigned char taster;
taster = PollSwitch();
taster = PollSwitch();
taster = PollSwitch();
if(taster>0)
{
for (i=0; i<900; i++)
{
StatusLED(RED);
MotorDir(RWD,RWD);
MotorSpeed(100,200);
Sleep(216);
}
MotorSpeed(0,0);
}
}
while(1);
return 0;
}
Dann wollte ich ihn über das Tool make Compilieren und auf dem Asuro ausprobieren (nachdem ich ihn geflascht habe). aber als der Asuro rebooted hat hat sich nichts getan. Was hab ich falsch gemacht ????
MfG,
skohn