diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2009-07-13 12:38:30 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2009-07-13 12:38:30 +0000 |
commit | 73d9fafc0fe42741ad8f609dd4762e2bc14cbd01 (patch) | |
tree | d3ac19b144cbb6bb48b8b04bdf37f5f14fca976e /Demos/Device/Incomplete/Sideshow | |
parent | 1d26e78258c10dcca63e31e66732f1e525b5dade (diff) | |
download | lufa-73d9fafc0fe42741ad8f609dd4762e2bc14cbd01.tar.gz lufa-73d9fafc0fe42741ad8f609dd4762e2bc14cbd01.tar.bz2 lufa-73d9fafc0fe42741ad8f609dd4762e2bc14cbd01.zip |
Added new EEPROM and FLASH buffer versions of the Endpoint and Pipe stream functions. Changed Endpoint.c and Pipe.c to use a templated system to build the seperate functions, rather than duplicating each function's code many times.
Diffstat (limited to 'Demos/Device/Incomplete/Sideshow')
-rw-r--r-- | Demos/Device/Incomplete/Sideshow/Sideshow.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Demos/Device/Incomplete/Sideshow/Sideshow.c b/Demos/Device/Incomplete/Sideshow/Sideshow.c index 8454f9de8..41e36cc70 100644 --- a/Demos/Device/Incomplete/Sideshow/Sideshow.c +++ b/Demos/Device/Incomplete/Sideshow/Sideshow.c @@ -131,7 +131,7 @@ void EVENT_USB_UnhandledControlPacket(void) Endpoint_ClearSETUP();
- Endpoint_Write_Control_Stream_LE(DescriptorPointer, DescriptorSize);
+ Endpoint_Write_Control_PStream_LE(DescriptorPointer, DescriptorSize);
Endpoint_ClearOUT();
}
|