aboutsummaryrefslogtreecommitdiffstats
path: root/Demos
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2013-05-18 22:45:47 +0200
committerDean Camera <dean@fourwalledcubicle.com>2013-05-18 22:45:47 +0200
commit3a06ef99e66ea621b866159e385125b88c52d96d (patch)
tree84967e6f98ae41978b05fe7140efb0517840ab9e /Demos
parent7af4d949e2bc691297e6b4a3b437819896070557 (diff)
downloadlufa-3a06ef99e66ea621b866159e385125b88c52d96d.tar.gz
lufa-3a06ef99e66ea621b866159e385125b88c52d96d.tar.bz2
lufa-3a06ef99e66ea621b866159e385125b88c52d96d.zip
Fix broken RNDIS device demos when NO_ETHERNET_DECODE was not defined.
Diffstat (limited to 'Demos')
-rw-r--r--Demos/Device/ClassDriver/RNDISEthernet/Lib/ProtocolDecoders.c1
-rw-r--r--Demos/Device/ClassDriver/VirtualSerial/asf.xml1
-rw-r--r--Demos/Device/LowLevel/RNDISEthernet/Lib/ProtocolDecoders.c1
3 files changed, 0 insertions, 3 deletions
diff --git a/Demos/Device/ClassDriver/RNDISEthernet/Lib/ProtocolDecoders.c b/Demos/Device/ClassDriver/RNDISEthernet/Lib/ProtocolDecoders.c
index 1eda2e287..2a6a798e9 100644
--- a/Demos/Device/ClassDriver/RNDISEthernet/Lib/ProtocolDecoders.c
+++ b/Demos/Device/ClassDriver/RNDISEthernet/Lib/ProtocolDecoders.c
@@ -61,7 +61,6 @@ void DecodeEthernetFrameHeader(void* InDataStart)
printf_P(PSTR("\r\n"));
printf_P(PSTR(" ETHERNET\r\n"));
- printf_P(PSTR(" + Frame Size: %u\r\n"), FrameINData->FrameLength);
if (!(MAC_COMPARE(&FrameHeader->Destination, &ServerMACAddress)) &&
!(MAC_COMPARE(&FrameHeader->Destination, &BroadcastMACAddress)))
diff --git a/Demos/Device/ClassDriver/VirtualSerial/asf.xml b/Demos/Device/ClassDriver/VirtualSerial/asf.xml
index 310321e69..c71946806 100644
--- a/Demos/Device/ClassDriver/VirtualSerial/asf.xml
+++ b/Demos/Device/ClassDriver/VirtualSerial/asf.xml
@@ -44,7 +44,6 @@
<require idref="lufa.drivers.usb"/>
<require idref="lufa.drivers.board"/>
<require idref="lufa.drivers.board.leds"/>
- <require idref="lufa.drivers.board.buttons"/>
<require idref="lufa.drivers.board.joystick"/>
</module>
</asf>
diff --git a/Demos/Device/LowLevel/RNDISEthernet/Lib/ProtocolDecoders.c b/Demos/Device/LowLevel/RNDISEthernet/Lib/ProtocolDecoders.c
index 8c864baee..dcdd9b27b 100644
--- a/Demos/Device/LowLevel/RNDISEthernet/Lib/ProtocolDecoders.c
+++ b/Demos/Device/LowLevel/RNDISEthernet/Lib/ProtocolDecoders.c
@@ -61,7 +61,6 @@ void DecodeEthernetFrameHeader(void* InDataStart)
printf_P(PSTR("\r\n"));
printf_P(PSTR(" ETHERNET\r\n"));
- printf_P(PSTR(" + Frame Size: %u\r\n"), FrameIN.FrameLength);
if (!(MAC_COMPARE(&FrameHeader->Destination, &ServerMACAddress)) &&
!(MAC_COMPARE(&FrameHeader->Destination, &BroadcastMACAddress)))