27 lines
478 B
C
27 lines
478 B
C
#ifndef __DRV_ILI9341_LCD_DUMP_H
|
|
#define __DRV_ILI9341_LCD_DUMP_H
|
|
|
|
#include "includes.h"
|
|
|
|
#ifndef DEBUG_LCD_DUMP
|
|
#define DEBUG_LCD_DUMP 0
|
|
#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
|