I can also not download it even with FTP client. I think user / password are not correct anymore. Can someone update the link to get the newest version?
Welcome to the Bridgetek Community!
Please read our Welcome Note
Technical Support enquires
please contact the team @ Bridgetek Support
Please refer to our website for detailed information on all our products - Bridgetek - Bridging Technology
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts MenuGpu_CoCmd_SetFont2(phost, customFontId, fontRamAddress, 0);
Gpu_CoCmd_Text(phost, x, y, customFontId, alignment, "سÙ,,اÙ...");uint8_t font = 28;
const char *testText = "abcdefghijklmnopqrstuvwxyz0123456789";
Gpu_CoCmd_Dlstart(phost);
Gpu_Hal_WrCmd32(phost, CLEAR_COLOR_RGB(0, 0, 0));
Gpu_Hal_WrCmd32(phost, CLEAR(1, 1, 1));
for (uint8_t i = 0; i < 5; i++) { // display font 28-32
// i is the font id, fontMap is a map which includes the addresses of each xfont data in GRAM
uint32_t fontAddr = fontMap[font + i];
Gpu_CoCmd_SetFont2(phost, i, fontAddr, 0);
Gpu_CoCmd_Text(phost, 50, 10 + i * 80, i, 0, testText); // paint textline with padding left
Gpu_CoCmd_Text(phost, 0, 10 + i * 80 + 40, i, 0, testText);
}
Gpu_Hal_WrCmd32(phost, DISPLAY());
Gpu_Hal_DLSwap(phost, DLSWAP_FRAME);
Gpu_Hal_WaitCmdfifo_empty(phost);