You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
390 B
C
27 lines
390 B
C
|
|
#ifndef __DRIVER_Gif_H__
|
|
#define __DRIVER_Gif_H__
|
|
|
|
#include "ALLinclude.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
|
|
#define Gif_false 0
|
|
#define Gif_true 1
|
|
|
|
#define DebugPrintEnable 1
|
|
|
|
//void test_gif_playback();
|
|
extern int gif_play(void);
|
|
// void gif_play(const uint8_t* data, uint32_t size);
|
|
void displayGIF(void) ;
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* __DRIVER_GC9C01_H__ */
|
|
|