Skip to content

Commit ec52f31

Browse files
authored
Change comment location in dev_lowlevel (#249)
Comment location was misleading, intellisense associate the comment to the typedef type instead of struct usb_endpoint_configuration.
1 parent 992348a commit ec52f31

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

usb/device/dev_lowlevel/dev_lowlevel.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,9 @@
99

1010
#include "usb_common.h"
1111

12-
// Struct in which we keep the endpoint configuration
1312
typedef void (*usb_ep_handler)(uint8_t *buf, uint16_t len);
13+
14+
// Struct in which we keep the endpoint configuration
1415
struct usb_endpoint_configuration {
1516
const struct usb_endpoint_descriptor *descriptor;
1617
usb_ep_handler handler;

0 commit comments

Comments
 (0)