week 7 of year 2019 was production
best wishes
rudi
week 7 of year 2019 was production
Well, in the ESP32, 75% of the chip size is the RAM And that is just a 2mmx2mm silicon die. So I'm guessing the bigger chip size is mostly due to it having more RAM, and more IOs. More cores and stuff can just fit nicely on the same space as it currently occupies on the ESP32.
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);
}
And possibly USB host mode? Would be nice, to hook up a LAN9415 to it
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);
}
ESP_Sprite wrote: ↑Thu Mar 21, 2019 7:22 amJust to temper expectations a bit: this is likely not going to be the top-of-the-line powerhouse that you guys think/hope it will be, as seen in the posts in this topic. Not saying we're not working on one of those but this is not it. (It does have a few picks from the ideas of the 'what would you like to see in the new chip' topic inside, though.)
Users browsing this forum: No registered users and 67 guests