I am using the library version 5 from Rudolph.
I want to implement one single UTF8 font using EVE_cmd_fontcache() which is described as follows:
Code Select
/**
* @brief Enable the font cache.
* @note - Meant to be called outside display-list building.
* @note - Includes executing the command and waiting for completion.
* @note - Does not support burst-mode.
*/
void EVE_cmd_fontcache(uint32_t font, uint32_t ptr, uint32_t num) {
eve_begin_cmd(CMD_FONTCACHE);
spi_transmit_32(font);
spi_transmit_32(ptr);
spi_transmit_32(num);
EVE_cs_clear();
EVE_execute_cmd();
}
There is no burst version of it.
All examples i found here are like this:
Code Select
EVE_init_flash();
EVE_cmd_flashread(MEM_FONT50, 167936, 192);
EVE_cmd_setfont2(12,MEM_FONT50-0x010000,0x010000);
EVE_cmd_fontcache(12, 0x00002000, 0x00009100);
The function "EVE_cmd_setfont2(12,MEM_FONT50-0x010000,0x010000)" is described to be used within a display list.
I can't see this here.
I have troubles to run the code.
Is there any working example for V5 ?
and Rudolph's wish to use 8x8 as a standard