lcd_qrcode.h 318 B

12345678910111213
  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. #include <qrcode.h>
  7. 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);
  8. #endif /* BSP_USING_LCD_QRCODE */
  9. #endif