From a6437fb43483938706fbd8b73090f5cd5f563e01 Mon Sep 17 00:00:00 2001 From: Jeremy Brodt Date: Thu, 21 May 2015 11:23:16 -0500 Subject: [PATCH] [MAX32600MBED] Added USBDevice definitions to eliminate build errors. --- libraries/USBDevice/USBDevice/USBEndpoints_Maxim.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/libraries/USBDevice/USBDevice/USBEndpoints_Maxim.h b/libraries/USBDevice/USBDevice/USBEndpoints_Maxim.h index 5cd3905c9f..1a960736fe 100644 --- a/libraries/USBDevice/USBDevice/USBEndpoints_Maxim.h +++ b/libraries/USBDevice/USBDevice/USBEndpoints_Maxim.h @@ -85,6 +85,10 @@ #define EPINT_IN (EP4IN) #define EPINT_OUT_callback EP3_OUT_callback #define EPINT_IN_callback EP4_IN_callback +/* Isochronous endpoints */ +/* NOT SUPPORTED - use invalid endpoint number to prevent built errors */ +#define EPISO_OUT (EP0OUT) +#define EPISO_IN (EP0IN) #define MAX_PACKET_SIZE_EPBULK (64) #define MAX_PACKET_SIZE_EPINT (64)