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.
25 lines
488 B
C
25 lines
488 B
C
#ifndef Function_SerialFlash_H
|
|
#define Function_SerialFlash_H
|
|
|
|
#include <stdint.h>
|
|
|
|
extern void TaskGifPlay(void *pvParamters);
|
|
|
|
typedef struct
|
|
{
|
|
uint32_t AddrStart;
|
|
uint32_t FrameNum;
|
|
uint32_t MarkPlay;
|
|
}TypedefGifPlay;
|
|
|
|
#define MarkPlayStart 1
|
|
#define MarkPlayNotStart 0
|
|
|
|
#define LenthFram 118*138*2
|
|
|
|
extern TypedefGifPlay TypedefGifPlayRegister;
|
|
|
|
extern void SetGifPlay(uint32_t AddrStart,uint32_t FrameNum);
|
|
|
|
#endif //Function_SerialFlash_H
|