diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2012-05-01 16:53:58 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2012-05-01 16:53:58 +0000 |
commit | 8ed6a8d9e3b4613a0d586d409f4c5706f21b5857 (patch) | |
tree | a278930226874066344e6410636b50a3038f2e42 /testhal/STM32F4xx | |
parent | d317bf915aadcd7a29f5faa04ccc2e24cfe99675 (diff) | |
download | ChibiOS-8ed6a8d9e3b4613a0d586d409f4c5706f21b5857.tar.gz ChibiOS-8ed6a8d9e3b4613a0d586d409f4c5706f21b5857.tar.bz2 ChibiOS-8ed6a8d9e3b4613a0d586d409f4c5706f21b5857.zip |
Fixed bug 3522808, fixed problem with STM32 MAC driver checksum offload.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@4156 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'testhal/STM32F4xx')
-rw-r--r-- | testhal/STM32F4xx/USB_CDC/main.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/testhal/STM32F4xx/USB_CDC/main.c b/testhal/STM32F4xx/USB_CDC/main.c index ff6b2e15b..6e4f3b7a8 100644 --- a/testhal/STM32F4xx/USB_CDC/main.c +++ b/testhal/STM32F4xx/USB_CDC/main.c @@ -236,6 +236,7 @@ static const USBEndpointConfig ep1config = { 0x0040,
0x0000,
NULL,
+ NULL,
NULL
};
@@ -250,6 +251,7 @@ static const USBEndpointConfig ep2config = { 0x0010,
0x0000,
NULL,
+ NULL,
NULL
};
@@ -264,6 +266,7 @@ static const USBEndpointConfig ep3config = { 0x0000,
0x0040,
NULL,
+ NULL,
NULL
};
|