13 lines
166 B
C
13 lines
166 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);
|
||
|
};
|
||
|
};
|