2024-08-04 14:43:38 +08:00
|
|
|
#include <drv_lcd.h>
|
|
|
|
#include <rtthread.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <malloc.h>
|
|
|
|
|
2024-08-04 20:14:20 +08:00
|
|
|
// 当前方向
|
2024-08-04 18:31:14 +08:00
|
|
|
void mytime();
|
|
|
|
void xy_round(int x, int y, int x2, int y2, int r, int ii);
|
|
|
|
void my_round(int r);
|
|
|
|
void xy_sink();
|
2024-08-04 14:43:38 +08:00
|
|
|
void lcd_black(int x, int y);
|
|
|
|
void lcd_white(int x, int y);
|
|
|
|
void snake_address(int x, int y, int r, const rt_uint16_t da);
|
|
|
|
|
2024-08-04 18:31:14 +08:00
|
|
|
|
2024-08-04 14:43:38 +08:00
|
|
|
// typedef int QDataType;
|
|
|
|
|
|
|
|
// typedef struct QListNode
|
|
|
|
// {
|
|
|
|
// QDataType data;
|
|
|
|
// struct QListNode* next;
|
|
|
|
|
|
|
|
// } QueueNode;
|