- doxygen styling added - CDC -> ACM refactor - type refactoring - examples categorized - flatUSB_config.h examples added
13 lines
209 B
C
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 */
|