1 #ifndef __LCD_QRCODE_H__ 2 #define __LCD_QRCODE_H__ 3 4 #include <rtconfig.h> 5 6 #ifdef BSP_USING_LCD_QRCODE 7 #include <rtdef.h> 8 #include <qrcode.h> 9 10 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); 11 #endif /* BSP_USING_LCD_QRCODE */ 12 13 #endif 14