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

13 lines
198 B
C

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