├── README.md └── .gitignore /README.md: -------------------------------------------------------------------------------- 1 | # 2 | 3 | TouchGFX documentation can be found at [touchgfx.com](https://support.touchgfx.com) and TouchGFX Community can be found at [st.com](https://community.st.com/s/topic/0TO0X0000003iw6WAA/touchgfx). 4 | 5 | 6 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Compiled Object files 2 | *.slo 3 | *.lo 4 | *.o 5 | *.obj 6 | 7 | # Precompiled Headers 8 | *.gch 9 | *.pch 10 | 11 | # Compiled Dynamic libraries 12 | *.so 13 | *.dylib 14 | *.dll 15 | 16 | # Fortran module files 17 | *.mod 18 | 19 | # Compiled Static libraries 20 | *.lai 21 | *.la 22 | *.a 23 | *.lib 24 | 25 | # Executables 26 | *.exe 27 | *.out 28 | *.app 29 | 30 | # application specific 31 | generated 32 | *.sdf 33 | *.suo 34 | *.user 35 | *.opensdf 36 | 37 | # folders 38 | touchgfx 39 | app/tutorials/temperature_control_v*/build --------------------------------------------------------------------------------