##// END OF EJS Templates
Started SSD2119 driver based on ili9328 driver....
Started SSD2119 driver based on ili9328 driver. -IF more or less functionnal /!\ need to check FSMC config -Need to check mid point circle algo -need to generate good fonts! -Should merge ili and ssd driver in one since the interface is the same, we can detect the chip with Device Code. Added Stm32Discovery extension board bsp.

File last commit:

r18:bd9ab647f70a default
r58:dcfec4f56803 dev_alexis
Show More
main.c
30 lines | 473 B | text/x-c | CLexer
#include <bsp.h>
int main()
{
while(1)
{
for(volatile int i=0;i<1024*1024;i++);
GREENLEDON;
ORANGELEDOFF;
REDLEDOFF;
BLUELEDOFF;
for(volatile int i=0;i<1024*1024;i++);
GREENLEDOFF;
ORANGELEDON;
REDLEDOFF;
BLUELEDOFF;
for(volatile int i=0;i<1024*1024;i++);
GREENLEDOFF;
ORANGELEDOFF;
REDLEDON;
BLUELEDOFF;
for(volatile int i=0;i<1024*1024;i++);
GREENLEDOFF;
ORANGELEDOFF;
REDLEDOFF;
BLUELEDON;
}
}