19 lines
275 B
C
19 lines
275 B
C
|
|
#ifndef BLINKY_PROTO_COMMON_H_
|
||
|
|
#define BLINKY_PROTO_COMMON_H_
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
extern "C" {
|
||
|
|
#endif
|
||
|
|
|
||
|
|
enum proto_transport {
|
||
|
|
PROTO_TRANSPORT_USB_CDC = 0,
|
||
|
|
PROTO_TRANSPORT_BLE_NUS,
|
||
|
|
PROTO_TRANSPORT_COUNT,
|
||
|
|
};
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
}
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#endif /* BLINKY_PROTO_COMMON_H_ */
|