You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 line
509B

  1. #ifndef _LCD_H
  2. #define _LCD_H
  3. #include "stm32f10x.h"
  4. #define LCD 0
  5. void lcd_init(void);
  6. void AttenuatorConfig(void);
  7. void vDispInit( u8 mode,u8 contrast );
  8. void vDispClearLine(u8 ucRow);
  9. void vDispClear(void);
  10. void vDispFull ( void );
  11. void Display_Icon16(u8 ucRow, u8 ucCol, unsigned char *icon);
  12. void Display_Icon(u8 ucRow, u8 ucCol, unsigned char *icon,u8 size);
  13. void vDispStr(u8 ucRow, u8 ucCol, char *szData,unsigned char datalen);
  14. void HexToDec(u32 tempdata,u8* buf,unsigned char bufLen);
  15. #endif