mirror of
https://gitee.com/Vancouver2017/luban-lite-t3e-pro.git
synced 2025-12-15 19:08:54 +00:00
20 lines
448 B
C
20 lines
448 B
C
/*
|
|
* Copyright (c) 2022, sakumisu
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
#ifndef USB_PRINTER_H
|
|
#define USB_PRINTER_H
|
|
|
|
#define PRINTER_SUBCLASS 0x01U
|
|
|
|
#define PRINTER_REQUEST_GET_DEVICE_ID 0x00U
|
|
#define PRINTER_REQUEST_GET_PORT_SATTUS 0x01U
|
|
#define PRINTER_REQUEST_SOFT_RESET 0x02U
|
|
|
|
#define PRINTER_STATUS_NO_ERROR 0x00U
|
|
#define PRINTER_STATUS_SELECTED 0x08U
|
|
#define PRINTER_STATUS_PAPER_EMPTY 0x10U
|
|
|
|
#endif /* USB_PRINTER_H */
|