mirror of
https://github.com/peter-tanner/neptunium-firmware.git
synced 2024-12-02 21:10:18 +08:00
10 lines
285 B
C
10 lines
285 B
C
|
#ifndef __USB_DESCRIPTORS_H
|
||
|
#define __USB_DESCRIPTORS_H
|
||
|
|
||
|
#include "stm32f3xx_hal.h"
|
||
|
|
||
|
uint8_t const *tud_descriptor_device_cb(void);
|
||
|
uint8_t const *tud_descriptor_configuration_cb(uint8_t index);
|
||
|
uint16_t const *tud_descriptor_string_cb(uint8_t index, uint16_t langid);
|
||
|
|
||
|
#endif
|