Sync betaflight to Gitea
This commit is contained in:
@@ -0,0 +1,90 @@
|
||||
/**
|
||||
**************************************************************************
|
||||
* @file printer_desc.h
|
||||
* @brief usb printer descriptor header file
|
||||
**************************************************************************
|
||||
* Copyright notice & Disclaimer
|
||||
*
|
||||
* The software Board Support Package (BSP) that is made available to
|
||||
* download from Artery official website is the copyrighted work of Artery.
|
||||
* Artery authorizes customers to use, copy, and distribute the BSP
|
||||
* software and its related documentation for the purpose of design and
|
||||
* development in conjunction with Artery microcontrollers. Use of the
|
||||
* software is governed by this copyright notice and the following disclaimer.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED ON "AS IS" BASIS WITHOUT WARRANTIES,
|
||||
* GUARANTEES OR REPRESENTATIONS OF ANY KIND. ARTERY EXPRESSLY DISCLAIMS,
|
||||
* TO THE FULLEST EXTENT PERMITTED BY LAW, ALL EXPRESS, IMPLIED OR
|
||||
* STATUTORY OR OTHER WARRANTIES, GUARANTEES OR REPRESENTATIONS,
|
||||
* INCLUDING BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT.
|
||||
*
|
||||
**************************************************************************
|
||||
*/
|
||||
|
||||
/* define to prevent recursive inclusion -------------------------------------*/
|
||||
#ifndef __PRINTER_DESC_H
|
||||
#define __PRINTER_DESC_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
#include "printer_class.h"
|
||||
#include "usbd_core.h"
|
||||
|
||||
/** @addtogroup AT32F435_437_middlewares_usbd_class
|
||||
* @{
|
||||
*/
|
||||
|
||||
/** @addtogroup USB_printer_desc
|
||||
* @{
|
||||
*/
|
||||
|
||||
/** @defgroup USB_printer_desc_definition
|
||||
* @{
|
||||
*/
|
||||
|
||||
#define PRINTER_BCD_NUM 0x0110
|
||||
|
||||
#define USBD_PRINTER_VENDOR_ID 0x2E3C
|
||||
#define USBD_PRINTER_PRODUCT_ID 0x57FF
|
||||
|
||||
#define USBD_PRINTER_CONFIG_DESC_SIZE 32
|
||||
#define USBD_PRINTER_SIZ_STRING_LANGID 4
|
||||
#define USBD_PRINTER_SIZ_STRING_SERIAL 0x1A
|
||||
|
||||
#define USBD_PRINTER_DESC_MANUFACTURER_STRING "Artery"
|
||||
#define USBD_PRINTER_DESC_PRODUCT_STRING "AT32 Printer"
|
||||
#define USBD_PRINTER_DESC_CONFIGURATION_STRING "Printer Config"
|
||||
#define USBD_PRINTER_DESC_INTERFACE_STRING "Printer Interface"
|
||||
|
||||
#define PRINTER_PROTOCOL_UNIDIRECTIONAL 0x01
|
||||
#define PRINTER_PROTOCOL_BI_DIRECTIONAL 0x02
|
||||
#define PRINTER_PROTOCOL_1284_4 0x03
|
||||
#define PRINTER_PROTOCOL_VENDOR_SPECIFIC 0xFF
|
||||
|
||||
|
||||
#define MCU_ID1 (0x1FFFF7E8)
|
||||
#define MCU_ID2 (0x1FFFF7EC)
|
||||
#define MCU_ID3 (0x1FFFF7F0)
|
||||
|
||||
|
||||
extern usbd_desc_handler printer_desc_handler;
|
||||
|
||||
/**
|
||||
* @}
|
||||
*/
|
||||
|
||||
/**
|
||||
* @}
|
||||
*/
|
||||
|
||||
/**
|
||||
* @}
|
||||
*/
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user