2026-08-30 19:50:01 +08:00
|
|
|
#ifndef __DRV_ILI9341_LCD_DUMP_H
|
|
|
|
|
#define __DRV_ILI9341_LCD_DUMP_H
|
|
|
|
|
|
|
|
|
|
#include "includes.h"
|
|
|
|
|
|
|
|
|
|
#ifndef DEBUG_LCD_DUMP
|
2026-09-02 12:16:05 +08:00
|
|
|
#define DEBUG_LCD_DUMP 0
|
2026-08-30 19:50:01 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#if DEBUG_LCD_DUMP
|
|
|
|
|
|
|
|
|
|
void LCD_Dump_Init(void);
|
|
|
|
|
void LCD_Dump_StartPoller(void);
|
|
|
|
|
void LCD_Dump_Poll(void);
|
|
|
|
|
void LCD_DumpScreen_RTT(void);
|
|
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
|
|
#define LCD_Dump_Init() ((void)0)
|
|
|
|
|
#define LCD_Dump_StartPoller() ((void)0)
|
|
|
|
|
#define LCD_Dump_Poll() ((void)0)
|
|
|
|
|
#define LCD_DumpScreen_RTT() ((void)0)
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#endif
|