nt9856x/rtos/code/lib/include/QRCode/QR_Encode.h
2023-03-28 15:07:53 +08:00

12 lines
258 B
C
Executable File

#ifndef _QR_ENCODE_H_
#define _QR_ENCODE_H_
#include "kwrap/type.h"
#define MAX_BITDATA (3917) /* Max QR Code Data */
#define QR_REQ_BUF_SIZE (57000)
extern UINT32 QRCode_Encode(unsigned char *inStr, unsigned char *QRBuf, UINT32 QRBufSize);
#endif