flatUSB/usb_common_types.h
Epagris 2a69c57225 - basic docs added
- doxygen styling added
- CDC -> ACM refactor
- type refactoring
- examples categorized
- flatUSB_config.h examples added
2024-11-16 21:53:01 +01:00

13 lines
209 B
C

#ifndef CORE_USB_USB_COMMON_TYPES
#define CORE_USB_USB_COMMON_TYPES
#include <stdint.h>
#include <stdbool.h>
/**
* A byte-sized boolean.
*/
typedef uint8_t bool8_t;
#endif /* CORE_USB_USB_COMMON_TYPES */