2011-08-03 14:34:09 +00:00
|
|
|
#include <sysinit.h>
|
|
|
|
|
|
|
|
#include "basic/basic.h"
|
|
|
|
|
|
|
|
#include "usetable.h"
|
|
|
|
|
|
|
|
void ram(void){
|
2011-08-12 18:27:36 +00:00
|
|
|
char x = gpioGetValue(RB_LED1);
|
|
|
|
|
2011-08-03 14:34:09 +00:00
|
|
|
for (int x=0;x<20;x++){
|
|
|
|
gpioSetValue (RB_LED1, x%2);
|
|
|
|
delayms(50);
|
|
|
|
};
|
2011-08-12 18:27:36 +00:00
|
|
|
gpioSetValue (RB_LED1, x);
|
2011-08-03 14:34:09 +00:00
|
|
|
};
|