Files
badgemagic-firmware/src/resource.h
Dien-Nhung Nguyen-Phu 8815700322 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.
2024-06-10 12:34:37 +07:00

11 lines
144 B
C

#ifndef __RES_H__
#define __RES_H__
#include <stdint.h>
#include "xbm.h"
extern xbm_t bluetooth;
extern xbm_t splash;
#endif /* __RES_H__ */