Searched refs:qrsize (Results 1 – 1 of 1) sorted by relevance
/hal_espressif-3.6.0/examples/common_components/qrcode/ |
D | qrcodegen.c | 75 static int finderPenaltyCountPatterns(const int runHistory[7], int qrsize); 76 …enaltyTerminateAndCount(bool currentRunColor, int currentRunLength, int runHistory[7], int qrsize); 420 int qrsize = version * 4 + 17; in initializeFunctionModules() local 421 memset(qrcode, 0, (size_t)((qrsize * qrsize + 7) / 8 + 1) * sizeof(qrcode[0])); in initializeFunctionModules() 422 qrcode[0] = (uint8_t)qrsize; in initializeFunctionModules() 425 fillRectangle(6, 0, 1, qrsize, qrcode); in initializeFunctionModules() 426 fillRectangle(0, 6, qrsize, 1, qrcode); in initializeFunctionModules() 430 fillRectangle(qrsize - 8, 0, 8, 9, qrcode); in initializeFunctionModules() 431 fillRectangle(0, qrsize - 8, 9, 8, qrcode); in initializeFunctionModules() 446 fillRectangle(qrsize - 11, 0, 3, 6, qrcode); in initializeFunctionModules() [all …]
|