123456789101112131415161718192021 |
- /*
- * Notice!!!!
- * This file used to cramp out customer table for driver, you can't modify it manually,
- * if you need update some infomation, please edit the original file(barcode.c) directly.
- */
- #include <drv_types.h>
- typedef struct _BARCODE_TABLE_
- {
- UINT8 barcode_table[24];
- } BARCODE_TABLE, pBARCODE_TABLE;
- BARCODE_TABLE gBARCodetable __attribute__((section(".customer.gBARCodetable"))) = {
- {
- 0x10, 0x11, 0x12, 0x13, 0x14, 0x15,
- 0xab, 0xbc, 0xcd, 0xde, 0xef, 0xfa,
- 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
- 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
- },
- };
|