From 166d6bf8b5e5a9e39efd0458feee04be4d1674d6 Mon Sep 17 00:00:00 2001 From: gdisirio Date: Sat, 16 Jun 2012 06:22:39 +0000 Subject: git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@4277 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- testhal/STM32F4xx/USB_CDC/main.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'testhal/STM32F4xx/USB_CDC') diff --git a/testhal/STM32F4xx/USB_CDC/main.c b/testhal/STM32F4xx/USB_CDC/main.c index 99acdc894..a122591e4 100644 --- a/testhal/STM32F4xx/USB_CDC/main.c +++ b/testhal/STM32F4xx/USB_CDC/main.c @@ -246,9 +246,9 @@ static const USBEndpointConfig ep1config = { }; /** - * @brief OUT EP1 state. + * @brief OUT EP2 state. */ -USBOutEndpointState ep1outstate; +USBOutEndpointState ep2outstate; /** * @brief EP2 initialization structure (IN only). @@ -261,14 +261,14 @@ static const USBEndpointConfig ep2config = { 0x0010, 0x0000, NULL, - &ep1outstate, + &ep2outstate, NULL }; /** * @brief OUT EP2 state. */ -USBOutEndpointState ep2outstate; +USBOutEndpointState ep3outstate; /** * @brief EP3 initialization structure (OUT only). @@ -281,7 +281,7 @@ static const USBEndpointConfig ep3config = { 0x0000, 0x0040, NULL, - &ep2outstate, + &ep3outstate, NULL }; -- cgit v1.2.3