build_barcode.c 557 B

123456789101112131415161718192021
  1. /*
  2. * Notice!!!!
  3. * This file used to cramp out customer table for driver, you can't modify it manually,
  4. * if you need update some infomation, please edit the original file(barcode.c) directly.
  5. */
  6. #include <drv_types.h>
  7. typedef struct _BARCODE_TABLE_
  8. {
  9. UINT8 barcode_table[24];
  10. } BARCODE_TABLE, pBARCODE_TABLE;
  11. BARCODE_TABLE gBARCodetable __attribute__((section(".customer.gBARCodetable"))) = {
  12. {
  13. 0x10, 0x11, 0x12, 0x13, 0x14, 0x15,
  14. 0xab, 0xbc, 0xcd, 0xde, 0xef, 0xfa,
  15. 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
  16. 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
  17. },
  18. };