15 lines
250 B
C
15 lines
250 B
C
/*
|
|
* lcdio.h
|
|
*
|
|
* Created on: Aug 5, 2023
|
|
* Author: leo
|
|
*/
|
|
|
|
#ifndef INC_LCDIO_H_
|
|
#define INC_LCDIO_H_
|
|
|
|
uint16_t LCD_IO_ReadData(uint16_t RegValue);
|
|
uint32_t LCD_IO_ReadData_m(uint16_t RegValue, uint8_t ReadSize);
|
|
|
|
#endif /* INC_LCDIO_H_ */
|