Add support for .xbm bitmap file

.xbm is easy to include in C as source file. It could be viewed
and edited directly without need to be converted between images
and C array.
This commit is contained in:
Dien-Nhung Nguyen-Phu
2024-06-09 12:59:34 +07:00
parent f6d84a1ead
commit 8815700322
8 changed files with 175 additions and 0 deletions

10
src/resource.h Normal file
View File

@@ -0,0 +1,10 @@
#ifndef __RES_H__
#define __RES_H__
#include <stdint.h>
#include "xbm.h"
extern xbm_t bluetooth;
extern xbm_t splash;
#endif /* __RES_H__ */