aboutsummaryrefslogtreecommitdiffstats
path: root/Demos/Host/LowLevel
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2010-01-28 14:12:26 +0000
committerDean Camera <dean@fourwalledcubicle.com>2010-01-28 14:12:26 +0000
commite81a4c950f88aeed9cf3ff5b9911afffd1862716 (patch)
tree864c7c0bc05e3a8e9d5b615b609b3d537d389620 /Demos/Host/LowLevel
parent1b59f561edde456f1c8d88bd8e60d2636dec095f (diff)
downloadlufa-e81a4c950f88aeed9cf3ff5b9911afffd1862716.tar.gz
lufa-e81a4c950f88aeed9cf3ff5b9911afffd1862716.tar.bz2
lufa-e81a4c950f88aeed9cf3ff5b9911afffd1862716.zip
Removed the stream example code from the Low Level VirtualSerial demos, as they were buggy and only served to add clutter.
Diffstat (limited to 'Demos/Host/LowLevel')
-rw-r--r--Demos/Host/LowLevel/VirtualSerialHost/VirtualSerialHost.c46
1 files changed, 0 insertions, 46 deletions
diff --git a/Demos/Host/LowLevel/VirtualSerialHost/VirtualSerialHost.c b/Demos/Host/LowLevel/VirtualSerialHost/VirtualSerialHost.c
index 4c521a480..588198bb4 100644
--- a/Demos/Host/LowLevel/VirtualSerialHost/VirtualSerialHost.c
+++ b/Demos/Host/LowLevel/VirtualSerialHost/VirtualSerialHost.c
@@ -36,52 +36,6 @@
#include "VirtualSerialHost.h"
-#if 0
-/* NOTE: Here you can set up a standard stream using the created virtual serial port, so that the standard stream functions in
- * <stdio.h> can be used on the virtual serial port (e.g. fprintf(&USBSerial, "Test"); to print a string).
- */
-
-static int CDC_putchar(char c, FILE *stream)
-{
- Pipe_SelectPipe(CDC_DATAPIPE_OUT);
-
- if (Pipe_WaitUntilReady())
- return -1;
-
- Pipe_Write_Byte(c);
- Pipe_ClearIN();
-
- return 0;
-}
-
-static int CDC_getchar(FILE *stream)
-{
- int c;
-
- Pipe_SelectPipe(CDC_DATAPIPE_IN);
-
- for (;;)
- {
- if (Pipe_WaitUntilReady())
- return -1;
-
- if (!(Pipe_BytesInPipe()))
- {
- Pipe_ClearOUT();
- }
- else
- {
- c = Pipe_Read_Byte();
- break;
- }
- }
-
- return c;
-}
-
-static FILE USBSerial = FDEV_SETUP_STREAM(CDC_putchar, CDC_getchar, _FDEV_SETUP_RW);
-#endif
-
/** Main program entry point. This routine configures the hardware required by the application, then
* enters a loop to run the application tasks in sequence.
*/