FT900 with FT81x graphics and ESP32 for networking

User avatar
Vader_Mester
Posts: 300
Joined: Tue Dec 05, 2017 8:28 pm
Location: Hungary
Contact:

FT900 with FT81x graphics and ESP32 for networking

Postby Vader_Mester » Mon Jan 15, 2018 1:02 pm

It's not my stuff, but I though I mention it here.

There is an app-note for FTDI (Bridgetek) for using their FT9xx series controller with an FT81x controller for the EVE graphics engine, and ESP32 as a UART device for networking.

Take a look at it here!

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);
}

Who is online

Users browsing this forum: No registered users and 51 guests