Use TouchGFX

This commit is contained in:
2023-03-06 21:21:00 +01:00
parent 2cadbff590
commit 8a2bdc347c
1214 changed files with 358250 additions and 87 deletions

View File

@ -0,0 +1 @@
#include <images/BitmapDatabase.hpp>

View File

@ -0,0 +1,16 @@
// Generated by imageconverter. Please, do not edit!
#ifndef TOUCHGFX_BITMAPDATABASE_HPP
#define TOUCHGFX_BITMAPDATABASE_HPP
#include <touchgfx/hal/Types.hpp>
#include <touchgfx/Bitmap.hpp>
namespace BitmapDatabase
{
const touchgfx::Bitmap::BitmapData* getInstance();
uint16_t getInstanceSize();
} // namespace BitmapDatabase
#endif // TOUCHGFX_BITMAPDATABASE_HPP

View File

@ -0,0 +1,20 @@
// Generated by imageconverter. Please, do not edit!
#ifndef TOUCHGFX_SVGDATABASE_HPP
#define TOUCHGFX_SVGDATABASE_HPP
#include <touchgfx/hal/Types.hpp>
#include <touchgfx/hal/VGData.hpp>
enum SVGImages
{
NUMBER_OF_SVG_IMAGES = 0
};
namespace SVGDatabase
{
const touchgfx::VGObject* getInstance();
uint16_t getInstanceSize();
} // namespace SVGDatabase
#endif // TOUCHGFX_SVGDATABASE_HPP

View File

@ -0,0 +1,23 @@
// 4.21.2 0x00000000
// Generated by imageconverter. Please, do not edit!
#include <images/BitmapDatabase.hpp>
#include <touchgfx/Bitmap.hpp>
const touchgfx::Bitmap::BitmapData bitmap_database[] = {
{ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }
};
namespace BitmapDatabase
{
const touchgfx::Bitmap::BitmapData* getInstance()
{
return bitmap_database;
}
uint16_t getInstanceSize()
{
return (uint16_t)(sizeof(bitmap_database) / sizeof(touchgfx::Bitmap::BitmapData));
}
} // namespace BitmapDatabase

View File

@ -0,0 +1,19 @@
// Generated by imageconverter. Please, do not edit!
#include <images/SVGDatabase.hpp>
using namespace touchgfx;
namespace SVGDatabase
{
const touchgfx::VGObject* getInstance()
{
return (const touchgfx::VGObject*)0;
}
uint16_t getInstanceSize()
{
return 0;
}
} // namespace SVGDatabase