1
Discussion - EVE / Re: can bt815 detect versioning of flash image?
« on: February 17, 2025, 04:50:57 PM »
Hi,
We'll check if we have some examples, in the meantime we have a structure declared in our user guide which may be helpful,
struct EDF {
uint32_t block_length; // the length of this EDF
EVE_Flash_Asset_Info assets[0...n-1]; // the information of n assets
};
struct EVE_Flash_Asset_Info {
uint16_t assetID; // the sequential ID of the asset
uint32_t startAddress; // the offset of the asset
uint32_t size; // the size of the asset, in byte
uint8_t compressionMethod; // 0 = no compression, 1 = compressed
uint8_t type; // the type of the asset, see below
uint16_t subType; // the subtype of the asset, see below
uint16_t width; // the width of bitmap/video/animation
uint16_t height; // the height of bitmap/video/animation
};
Best Regards, BRT Community
We'll check if we have some examples, in the meantime we have a structure declared in our user guide which may be helpful,
struct EDF {
uint32_t block_length; // the length of this EDF
EVE_Flash_Asset_Info assets[0...n-1]; // the information of n assets
};
struct EVE_Flash_Asset_Info {
uint16_t assetID; // the sequential ID of the asset
uint32_t startAddress; // the offset of the asset
uint32_t size; // the size of the asset, in byte
uint8_t compressionMethod; // 0 = no compression, 1 = compressed
uint8_t type; // the type of the asset, see below
uint16_t subType; // the subtype of the asset, see below
uint16_t width; // the width of bitmap/video/animation
uint16_t height; // the height of bitmap/video/animation
};
Best Regards, BRT Community