recompile material

This commit is contained in:
Nick Fisher
2023-03-12 14:00:33 +08:00
parent 74df7a6da3
commit 9c7e138a02
18 changed files with 6162 additions and 3918 deletions

View File

@@ -0,0 +1,13 @@
#ifndef IMAGE_H_
#define IMAGE_H_
#include <stdint.h>
extern "C" {
extern const uint8_t IMAGE_PACKAGE[];
extern int IMAGE_IMAGE_OFFSET;
extern int IMAGE_IMAGE_SIZE;
}
#define IMAGE_IMAGE_DATA (IMAGE_PACKAGE + IMAGE_IMAGE_OFFSET)
#endif