Welcome to mirror list, hosted at ThFree Co, Russian Federation.

furi-hal-usb.h « furi-hal-include « targets « firmware - github.com/ClusterM/flipperzero-firmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a384236b08b459f9f077fc01d9b14d1ad3a58ecd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#pragma once

#include "usb.h"

typedef struct UsbInterface UsbInterface;

struct UsbInterface {
    void (*init)(usbd_device *dev, UsbInterface* intf);
    void (*deinit)(usbd_device *dev);
    void (*wakeup)(usbd_device *dev);
    void (*suspend)(usbd_device *dev);

    struct usb_device_descriptor* dev_descr;

    void* str_manuf_descr;
    void* str_prod_descr;
    void* str_serial_descr;

    void* cfg_descr;
};

/** USB device interface modes */
extern UsbInterface usb_cdc_single;
extern UsbInterface usb_cdc_dual;
extern UsbInterface usb_hid;
extern UsbInterface usb_hid_u2f;

/** USB device low-level initialization
 */
void furi_hal_usb_init();

/** Set USB device configuration
 *
 * @param      mode new USB device mode
 */
void furi_hal_usb_set_config(UsbInterface* new_if);

/** Get USB device configuration
 *
 * @return    current USB device mode
 */
UsbInterface* furi_hal_usb_get_config();

/** Disable USB device
 */
void furi_hal_usb_disable();

/** Enable USB device
 */
void furi_hal_usb_enable();