[Core] Refactor ChibiOS USB endpoints to be fully async (#21656)

This commit is contained in:
Stefan Kerkmann
2024-02-28 12:00:27 +01:00
committed by GitHub
parent b43f6cb7ef
commit 0e02b0c41e
12 changed files with 1311 additions and 1134 deletions

View File

@ -196,6 +196,8 @@ enum usb_interfaces {
TOTAL_INTERFACES
};
#define IS_VALID_INTERFACE(i) ((i) >= 0 && (i) < TOTAL_INTERFACES)
#define NEXT_EPNUM __COUNTER__
/*