crashtest-r0ket/firmware/l0dable/blink.c
2011-08-12 20:27:36 +02:00

15 lines
235 B
C

#include <sysinit.h>
#include "basic/basic.h"
#include "usetable.h"
void ram(void){
char x = gpioGetValue(RB_LED1);
for (int x=0;x<20;x++){
gpioSetValue (RB_LED1, x%2);
delayms(50);
};
gpioSetValue (RB_LED1, x);
};