lcd_qrcode.h 270 B

1234567891011
  1. #ifndef __LCD_QRCODE_H__
  2. #define __LCD_QRCODE_H__
  3. #include <rtconfig.h>
  4. #ifdef BSP_USING_LCD_QRCODE
  5. #include <rtdef.h>
  6. rt_err_t lcd_show_qrcode(rt_uint16_t x, rt_uint16_t y, rt_uint8_t version, rt_uint8_t ecc, const char *data, rt_uint8_t enlargement);
  7. #endif
  8. #endif