An example vexuser.c file
#include <stdlib.h>
#include "ch.h"
#include "hal.h"
};
};
void
{
}
void
{
}
msg_t
{
(void)arg;
while(1)
{
}
return (msg_t)0;
}
msg_t
{
int blink = 0;
(void)arg;
while(!chThdShouldTerminate())
{
blink = 1 - blink;
}
return (msg_t)0;
}