Most useful post. I have mine untouched so far, cause I don't know how to use it. Now I doInteresting, very interesting indeed. There's some information about the board here too.![]()
The link is broken, the information is now here
Most useful post. I have mine untouched so far, cause I don't know how to use it. Now I doInteresting, very interesting indeed. There's some information about the board here too.![]()
I found the correct link eventually
Code: Select all
task_t coffeeTask()
{
while(atWork){
if(!xStreamBufferIsEmpty(mug)){
coffeeDrink(mug);
} else {
xTaskCreate(sBrew, "brew", 9000, &mug, 1, NULL);
xSemaphoreTake(sCoffeeRdy, portMAX_DELAY);
}
}
vTaskDelete(NULL);
}Users browsing this forum: No registered users and 3 guests