1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-19 14:30:31 +00:00
trezor-firmware/core/embed/trezorhal/usb.h

52 lines
1.4 KiB
C
Raw Normal View History

2017-04-07 15:40:22 +00:00
/*
* This file is part of the Trezor project, https://trezor.io/
2017-04-07 15:40:22 +00:00
*
2018-02-26 13:06:10 +00:00
* Copyright (c) SatoshiLabs
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
2017-04-07 15:40:22 +00:00
*/
2017-03-07 14:52:19 +00:00
#ifndef __TREZORHAL_USB_H__
#define __TREZORHAL_USB_H__
#include <stdint.h>
#include "secbool.h"
#include "usb_hid.h"
#include "usb_vcp.h"
#include "usb_webusb.h"
2017-03-24 13:19:24 +00:00
typedef struct {
uint8_t device_class;
uint8_t device_subclass;
uint8_t device_protocol;
uint16_t vendor_id;
uint16_t product_id;
uint16_t release_num;
const char *manufacturer;
const char *product;
const char *serial_number;
const char *interface;
secbool usb21_enabled;
secbool usb21_landing;
2017-03-24 13:19:24 +00:00
} usb_dev_info_t;
void usb_init(const usb_dev_info_t *dev_info);
void usb_deinit(void);
void usb_start(void);
void usb_stop(void);
secbool usb_configured(void);
2017-03-24 13:19:24 +00:00
2017-03-07 14:52:19 +00:00
#endif