Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Erik Strand
lufa
Commits
c05c7c7d
Commit
c05c7c7d
authored
Nov 25, 2009
by
Dean Camera
Browse files
Added new XPLAIN serial Bridge project (thanks to John Steggall for the software UART code).
parent
d3f11eb5
Changes
19
Expand all
Hide whitespace changes
Inline
Side-by-side
LUFA.pnproj
View file @
c05c7c7d
This diff is collapsed.
Click to expand it.
LUFA/Drivers/USB/HighLevel/USBInterrupt.c
View file @
c05c7c7d
...
...
@@ -229,7 +229,7 @@ ISR(USB_GEN_vect, ISR_BLOCK)
#endif
}
#if defined(INTERRUPT_CONTROL_ENDPOINT)
#if defined(INTERRUPT_CONTROL_ENDPOINT)
&& defined(USB_CAN_BE_DEVICE)
ISR
(
USB_COM_vect
,
ISR_BLOCK
)
{
uint8_t
PrevSelectedEndpoint
=
Endpoint_GetCurrentEndpoint
();
...
...
LUFA/ManPages/ChangeLog.txt
View file @
c05c7c7d
...
...
@@ -11,6 +11,7 @@
* <b>New:</b>
* - Added activity LED indicators to the AVRISP project to indicate when the device is busy processing a command
* - The USB target family and allowable USB mode tokens are now public and documented (USB_CAN_BE_*, USB_SERIES_*_AVR)
* - Added new XPLAIN serial Bridge project (thanks to John Steggall)
*
* <b>Changed:</b>
* - Removed code in the Keyboard demos to send zeroed reports between two reports with differing numbers of keycodes
...
...
LUFA/ManPages/LibraryResources.txt
View file @
c05c7c7d
...
...
@@ -12,6 +12,7 @@
* Discussion Group: http://groups.google.com/group/myusb-support-list \n
* SVN Access, Bug Reports and Feature Requests: http://code.google.com/p/lufa-lib/ \n
* Git Access: http://github.com/abcminiuser/lufa-lib
* Commit RSS: http://github.com/feeds/abcminiuser/commits/lufa-lib/master
* Author's Website: http://www.fourwalledcubicle.com \n
*
* WinAVR Website: http://winavr.sourceforge.net \n
...
...
Projects/Incomplete/StandaloneProgrammer/Lib/PetiteFATFs/pff.h
View file @
c05c7c7d
...
...
@@ -46,7 +46,7 @@
/* To enable pf_lseek function, set _USE_LSEEK to 1. */
#define _FS_FAT32
0
#define _FS_FAT32
1
/* To enable FAT32 support, set _FS_FAT32 to 1. */
...
...
Projects/Incomplete/StandaloneProgrammer/StandaloneProgrammer.c
View file @
c05c7c7d
...
...
@@ -88,7 +88,6 @@ void Programmer_Task(void)
#endif
puts
(
"Reading Configuration File...
\r\n
"
);
if
(
!
(
ProgrammerConfig_ProcessConfiguration
()))
goto
EndOfProgCycle
;
...
...
Projects/USBtoSerial/USBtoSerial.txt
View file @
c05c7c7d
...
...
@@ -4,7 +4,7 @@
* documentation pages. It is not a project source file.
*/
/** \mainpage USB to Serial Converter
Demo
(via CDC-ACM class)
/** \mainpage USB to Serial Converter
Project
(via CDC-ACM class)
*
* \section SSec_Compat Demo Compatibility:
*
...
...
@@ -44,11 +44,16 @@
*
* \section SSec_Description Project Description:
*
* Communications Device Class demonstration application.
* This gives a simple reference application for implementing
* a USB to Serial converter using the CDC class. Sent and
* received data on the serial port is communicated to the USB
* host.
* USB to Serial bridge project. This project allows a USB AVR to serve
* as a USB to USART bridge between a USB host and a device lacking a
* USB port. When programmed into a USB AVR, the AVR will enumerate as a
* virtual COM port.
*
* The AVR's hardware USART's settings will change to mirror as closely as
* possible the serial settings set on the host. However, due to hardware
* limitations, some options may not be supported (baud rates with unacceptable
* error rates at the AVR's clock speed, data lengths other than 6, 7 or 8 bits,
* 1.5 stop bits, parity other than none, even or odd).
*
* After running this demo for the first time on a new computer,
* you will need to supply the .INF file located in this demo
...
...
Projects/XPLAINBridge/Descriptors.c
0 → 100644
View file @
c05c7c7d
/*
LUFA Library
Copyright (C) Dean Camera, 2009.
dean [at] fourwalledcubicle [dot] com
www.fourwalledcubicle.com
*/
/*
Copyright 2009 Dean Camera (dean [at] fourwalledcubicle [dot] com)
Permission to use, copy, modify, and distribute this software
and its documentation for any purpose and without fee is hereby
granted, provided that the above copyright notice appear in all
copies and that both that the copyright notice and this
permission notice and warranty disclaimer appear in supporting
documentation, and that the name of the author not be used in
advertising or publicity pertaining to distribution of the
software without specific, written prior permission.
The author disclaim all warranties with regard to this
software, including all implied warranties of merchantability
and fitness. In no event shall the author be liable for any
special, indirect or consequential damages or any damages
whatsoever resulting from loss of use, data or profits, whether
in an action of contract, negligence or other tortious action,
arising out of or in connection with the use or performance of
this software.
*/
/** \file
*
* USB Device Descriptors, for library use when in USB device mode. Descriptors are special
* computer-readable structures which the host requests upon device enumeration, to determine
* the device's capabilities and functions.
*/
#include
"Descriptors.h"
/* On some devices, there is a factory set internal serial number which can be automatically sent to the host as
* the device's serial number when the Device Descriptor's .SerialNumStrIndex entry is set to USE_INTERNAL_SERIAL.
* This allows the host to track a device across insertions on different ports, allowing them to retain allocated
* resources like COM port numbers and drivers. On demos using this feature, give a warning on unsupported devices
* so that the user can supply their own serial number descriptor instead or remove the USE_INTERNAL_SERIAL value
* from the Device Descriptor (forcing the host to generate a serial number for each device from the VID, PID and
* port location).
*/
#if (USE_INTERNAL_SERIAL == NO_DESCRIPTOR)
#warning USE_INTERNAL_SERIAL is not available on this AVR - please manually construct a device serial descriptor.
#endif
/** Device descriptor structure. This descriptor, located in FLASH memory, describes the overall
* device characteristics, including the supported USB version, control endpoint size and the
* number of device configurations. The descriptor is read out by the USB host when the enumeration
* process begins.
*/
USB_Descriptor_Device_t
PROGMEM
DeviceDescriptor
=
{
.
Header
=
{.
Size
=
sizeof
(
USB_Descriptor_Device_t
),
.
Type
=
DTYPE_Device
},
.
USBSpecification
=
VERSION_BCD
(
01
.
10
),
.
Class
=
0x02
,
.
SubClass
=
0x00
,
.
Protocol
=
0x00
,
.
Endpoint0Size
=
FIXED_CONTROL_ENDPOINT_SIZE
,
.
VendorID
=
0x03EB
,
.
ProductID
=
0x204B
,
.
ReleaseNumber
=
0x0000
,
.
ManufacturerStrIndex
=
0x01
,
.
ProductStrIndex
=
0x02
,
.
SerialNumStrIndex
=
USE_INTERNAL_SERIAL
,
.
NumberOfConfigurations
=
FIXED_NUM_CONFIGURATIONS
};
/** Configuration descriptor structure. This descriptor, located in FLASH memory, describes the usage
* of the device in one of its supported configurations, including information about any device interfaces
* and endpoints. The descriptor is read out by the USB host during the enumeration process when selecting
* a configuration so that the host may correctly communicate with the USB device.
*/
USB_Descriptor_Configuration_t
PROGMEM
ConfigurationDescriptor
=
{
.
Config
=
{
.
Header
=
{.
Size
=
sizeof
(
USB_Descriptor_Configuration_Header_t
),
.
Type
=
DTYPE_Configuration
},
.
TotalConfigurationSize
=
sizeof
(
USB_Descriptor_Configuration_t
),
.
TotalInterfaces
=
2
,
.
ConfigurationNumber
=
1
,
.
ConfigurationStrIndex
=
NO_DESCRIPTOR
,
.
ConfigAttributes
=
(
USB_CONFIG_ATTR_BUSPOWERED
|
USB_CONFIG_ATTR_SELFPOWERED
),
.
MaxPowerConsumption
=
USB_CONFIG_POWER_MA
(
100
)
},
.
CCI_Interface
=
{
.
Header
=
{.
Size
=
sizeof
(
USB_Descriptor_Interface_t
),
.
Type
=
DTYPE_Interface
},
.
InterfaceNumber
=
0
,
.
AlternateSetting
=
0
,
.
TotalEndpoints
=
1
,
.
Class
=
0x02
,
.
SubClass
=
0x02
,
.
Protocol
=
0x01
,
.
InterfaceStrIndex
=
NO_DESCRIPTOR
},
.
CDC_Functional_IntHeader
=
{
.
Header
=
{.
Size
=
sizeof
(
CDC_FUNCTIONAL_DESCRIPTOR
(
2
)),
.
Type
=
0x24
},
.
SubType
=
0x00
,
.
Data
=
{
0x01
,
0x10
}
},
.
CDC_Functional_CallManagement
=
{
.
Header
=
{.
Size
=
sizeof
(
CDC_FUNCTIONAL_DESCRIPTOR
(
2
)),
.
Type
=
0x24
},
.
SubType
=
0x01
,
.
Data
=
{
0x03
,
0x01
}
},
.
CDC_Functional_AbstractControlManagement
=
{
.
Header
=
{.
Size
=
sizeof
(
CDC_FUNCTIONAL_DESCRIPTOR
(
1
)),
.
Type
=
0x24
},
.
SubType
=
0x02
,
.
Data
=
{
0x06
}
},
.
CDC_Functional_Union
=
{
.
Header
=
{.
Size
=
sizeof
(
CDC_FUNCTIONAL_DESCRIPTOR
(
2
)),
.
Type
=
0x24
},
.
SubType
=
0x06
,
.
Data
=
{
0x00
,
0x01
}
},
.
ManagementEndpoint
=
{
.
Header
=
{.
Size
=
sizeof
(
USB_Descriptor_Endpoint_t
),
.
Type
=
DTYPE_Endpoint
},
.
EndpointAddress
=
(
ENDPOINT_DESCRIPTOR_DIR_IN
|
CDC_NOTIFICATION_EPNUM
),
.
Attributes
=
(
EP_TYPE_INTERRUPT
|
ENDPOINT_ATTR_NO_SYNC
|
ENDPOINT_USAGE_DATA
),
.
EndpointSize
=
CDC_NOTIFICATION_EPSIZE
,
.
PollingIntervalMS
=
0xFF
},
.
DCI_Interface
=
{
.
Header
=
{.
Size
=
sizeof
(
USB_Descriptor_Interface_t
),
.
Type
=
DTYPE_Interface
},
.
InterfaceNumber
=
1
,
.
AlternateSetting
=
0
,
.
TotalEndpoints
=
2
,
.
Class
=
0x0A
,
.
SubClass
=
0x00
,
.
Protocol
=
0x00
,
.
InterfaceStrIndex
=
NO_DESCRIPTOR
},
.
DataOutEndpoint
=
{
.
Header
=
{.
Size
=
sizeof
(
USB_Descriptor_Endpoint_t
),
.
Type
=
DTYPE_Endpoint
},
.
EndpointAddress
=
(
ENDPOINT_DESCRIPTOR_DIR_OUT
|
CDC_RX_EPNUM
),
.
Attributes
=
(
EP_TYPE_BULK
|
ENDPOINT_ATTR_NO_SYNC
|
ENDPOINT_USAGE_DATA
),
.
EndpointSize
=
CDC_TXRX_EPSIZE
,
.
PollingIntervalMS
=
0x00
},
.
DataInEndpoint
=
{
.
Header
=
{.
Size
=
sizeof
(
USB_Descriptor_Endpoint_t
),
.
Type
=
DTYPE_Endpoint
},
.
EndpointAddress
=
(
ENDPOINT_DESCRIPTOR_DIR_IN
|
CDC_TX_EPNUM
),
.
Attributes
=
(
EP_TYPE_BULK
|
ENDPOINT_ATTR_NO_SYNC
|
ENDPOINT_USAGE_DATA
),
.
EndpointSize
=
CDC_TXRX_EPSIZE
,
.
PollingIntervalMS
=
0x00
}
};
/** Language descriptor structure. This descriptor, located in FLASH memory, is returned when the host requests
* the string descriptor with index 0 (the first index). It is actually an array of 16-bit integers, which indicate
* via the language ID table available at USB.org what languages the device supports for its string descriptors.
*/
USB_Descriptor_String_t
PROGMEM
LanguageString
=
{
.
Header
=
{.
Size
=
USB_STRING_LEN
(
1
),
.
Type
=
DTYPE_String
},
.
UnicodeString
=
{
LANGUAGE_ID_ENG
}
};
/** Manufacturer descriptor string. This is a Unicode string containing the manufacturer's details in human readable
* form, and is read out upon request by the host when the appropriate string ID is requested, listed in the Device
* Descriptor.
*/
USB_Descriptor_String_t
PROGMEM
ManufacturerString
=
{
.
Header
=
{.
Size
=
USB_STRING_LEN
(
11
),
.
Type
=
DTYPE_String
},
.
UnicodeString
=
L"Dean Camera"
};
/** Product descriptor string. This is a Unicode string containing the product's details in human readable form,
* and is read out upon request by the host when the appropriate string ID is requested, listed in the Device
* Descriptor.
*/
USB_Descriptor_String_t
PROGMEM
ProductString
=
{
.
Header
=
{.
Size
=
USB_STRING_LEN
(
18
),
.
Type
=
DTYPE_String
},
.
UnicodeString
=
L"LUFA XPLAIN Bridge"
};
/** This function is called by the library when in device mode, and must be overridden (see library "USB Descriptors"
* documentation) by the application code so that the address and size of a requested descriptor can be given
* to the USB library. When the device receives a Get Descriptor request on the control endpoint, this function
* is called so that the descriptor details can be passed back and the appropriate descriptor sent back to the
* USB host.
*/
uint16_t
CALLBACK_USB_GetDescriptor
(
const
uint16_t
wValue
,
const
uint8_t
wIndex
,
void
**
const
DescriptorAddress
)
{
const
uint8_t
DescriptorType
=
(
wValue
>>
8
);
const
uint8_t
DescriptorNumber
=
(
wValue
&
0xFF
);
void
*
Address
=
NULL
;
uint16_t
Size
=
NO_DESCRIPTOR
;
switch
(
DescriptorType
)
{
case
DTYPE_Device
:
Address
=
(
void
*
)
&
DeviceDescriptor
;
Size
=
sizeof
(
USB_Descriptor_Device_t
);
break
;
case
DTYPE_Configuration
:
Address
=
(
void
*
)
&
ConfigurationDescriptor
;
Size
=
sizeof
(
USB_Descriptor_Configuration_t
);
break
;
case
DTYPE_String
:
switch
(
DescriptorNumber
)
{
case
0x00
:
Address
=
(
void
*
)
&
LanguageString
;
Size
=
pgm_read_byte
(
&
LanguageString
.
Header
.
Size
);
break
;
case
0x01
:
Address
=
(
void
*
)
&
ManufacturerString
;
Size
=
pgm_read_byte
(
&
ManufacturerString
.
Header
.
Size
);
break
;
case
0x02
:
Address
=
(
void
*
)
&
ProductString
;
Size
=
pgm_read_byte
(
&
ProductString
.
Header
.
Size
);
break
;
}
break
;
}
*
DescriptorAddress
=
Address
;
return
Size
;
}
Projects/XPLAINBridge/Descriptors.h
0 → 100644
View file @
c05c7c7d
/*
LUFA Library
Copyright (C) Dean Camera, 2009.
dean [at] fourwalledcubicle [dot] com
www.fourwalledcubicle.com
*/
/*
Copyright 2009 Dean Camera (dean [at] fourwalledcubicle [dot] com)
Permission to use, copy, modify, and distribute this software
and its documentation for any purpose and without fee is hereby
granted, provided that the above copyright notice appear in all
copies and that both that the copyright notice and this
permission notice and warranty disclaimer appear in supporting
documentation, and that the name of the author not be used in
advertising or publicity pertaining to distribution of the
software without specific, written prior permission.
The author disclaim all warranties with regard to this
software, including all implied warranties of merchantability
and fitness. In no event shall the author be liable for any
special, indirect or consequential damages or any damages
whatsoever resulting from loss of use, data or profits, whether
in an action of contract, negligence or other tortious action,
arising out of or in connection with the use or performance of
this software.
*/
/** \file
*
* Header file for Descriptors.c.
*/
#ifndef _DESCRIPTORS_H_
#define _DESCRIPTORS_H_
/* Includes: */
#include
<avr/pgmspace.h>
#include
<LUFA/Drivers/USB/USB.h>
#include
<LUFA/Drivers/USB/Class/CDC.h>
/* Macros: */
/** Endpoint number of the CDC device-to-host notification IN endpoint. */
#define CDC_NOTIFICATION_EPNUM 2
/** Endpoint number of the CDC device-to-host data IN endpoint. */
#define CDC_TX_EPNUM 3
/** Endpoint number of the CDC host-to-device data OUT endpoint. */
#define CDC_RX_EPNUM 4
/** Size in bytes of the CDC device-to-host notification IN endpoint. */
#define CDC_NOTIFICATION_EPSIZE 8
/** Size in bytes of the CDC data IN and OUT endpoints. */
#define CDC_TXRX_EPSIZE 16
/* Type Defines: */
/** Type define for the device configuration descriptor structure. This must be defined in the
* application code, as the configuration descriptor contains several sub-descriptors which
* vary between devices, and which describe the device's usage to the host.
*/
typedef
struct
{
USB_Descriptor_Configuration_Header_t
Config
;
USB_Descriptor_Interface_t
CCI_Interface
;
CDC_FUNCTIONAL_DESCRIPTOR
(
2
)
CDC_Functional_IntHeader
;
CDC_FUNCTIONAL_DESCRIPTOR
(
2
)
CDC_Functional_CallManagement
;
CDC_FUNCTIONAL_DESCRIPTOR
(
1
)
CDC_Functional_AbstractControlManagement
;
CDC_FUNCTIONAL_DESCRIPTOR
(
2
)
CDC_Functional_Union
;
USB_Descriptor_Endpoint_t
ManagementEndpoint
;
USB_Descriptor_Interface_t
DCI_Interface
;
USB_Descriptor_Endpoint_t
DataOutEndpoint
;
USB_Descriptor_Endpoint_t
DataInEndpoint
;
}
USB_Descriptor_Configuration_t
;
/* Function Prototypes: */
uint16_t
CALLBACK_USB_GetDescriptor
(
const
uint16_t
wValue
,
const
uint8_t
wIndex
,
void
**
const
DescriptorAddress
)
ATTR_WARN_UNUSED_RESULT
ATTR_NON_NULL_PTR_ARG
(
3
);
#endif
Projects/XPLAINBridge/LUFA XPLAIN Bridge.inf
0 → 100644
View file @
c05c7c7d
;************************************************************
; Windows USB CDC ACM Setup File
; Copyright (c) 2000 Microsoft Corporation
[Version]
Signature="$Windows NT$"
Class=Ports
ClassGuid={4D36E978-E325-11CE-BFC1-08002BE10318}
Provider=%MFGNAME%
LayoutFile=layout.inf
CatalogFile=%MFGFILENAME%.cat
DriverVer=11/15/2007,5.1.2600.0
[Manufacturer]
%MFGNAME%=DeviceList, NTamd64
[DestinationDirs]
DefaultDestDir=12
;------------------------------------------------------------------------------
; Windows 2000/XP/Vista-32bit Sections
;------------------------------------------------------------------------------
[DriverInstall.nt]
include=mdmcpq.inf
CopyFiles=DriverCopyFiles.nt
AddReg=DriverInstall.nt.AddReg
[DriverCopyFiles.nt]
usbser.sys,,,0x20
[DriverInstall.nt.AddReg]
HKR,,DevLoader,,*ntkern
HKR,,NTMPDriver,,%DRIVERFILENAME%.sys
HKR,,EnumPropPages32,,"MsPorts.dll,SerialPortPropPageProvider"
[DriverInstall.nt.Services]
AddService=usbser, 0x00000002, DriverService.nt
[DriverService.nt]
DisplayName=%SERVICE%
ServiceType=1
StartType=3
ErrorControl=1
ServiceBinary=%12%\%DRIVERFILENAME%.sys
;------------------------------------------------------------------------------
; Vista-64bit Sections
;------------------------------------------------------------------------------
[DriverInstall.NTamd64]
include=mdmcpq.inf
CopyFiles=DriverCopyFiles.NTamd64
AddReg=DriverInstall.NTamd64.AddReg
[DriverCopyFiles.NTamd64]
%DRIVERFILENAME%.sys,,,0x20
[DriverInstall.NTamd64.AddReg]
HKR,,DevLoader,,*ntkern
HKR,,NTMPDriver,,%DRIVERFILENAME%.sys
HKR,,EnumPropPages32,,"MsPorts.dll,SerialPortPropPageProvider"
[DriverInstall.NTamd64.Services]
AddService=usbser, 0x00000002, DriverService.NTamd64
[DriverService.NTamd64]
DisplayName=%SERVICE%
ServiceType=1
StartType=3
ErrorControl=1
ServiceBinary=%12%\%DRIVERFILENAME%.sys
;------------------------------------------------------------------------------
; Vendor and Product ID Definitions
;------------------------------------------------------------------------------
; When developing your USB device, the VID and PID used in the PC side
; application program and the firmware on the microcontroller must match.
; Modify the below line to use your VID and PID. Use the format as shown below.
; Note: One INF file can be used for multiple devices with different VID and PIDs.
; For each supported device, append ",USB\VID_xxxx&PID_yyyy" to the end of the line.
;------------------------------------------------------------------------------
[SourceDisksFiles]
[SourceDisksNames]
[DeviceList]
%DESCRIPTION%=DriverInstall, USB\VID_03EB&PID_204B
[DeviceList.NTamd64]
%DESCRIPTION%=DriverInstall, USB\VID_03EB&PID_204B
;------------------------------------------------------------------------------
; String Definitions
;------------------------------------------------------------------------------
;Modify these strings to customize your device
;------------------------------------------------------------------------------
[Strings]
MFGFILENAME="CDC_vista"
DRIVERFILENAME ="usbser"
MFGNAME="CCS, Inc."
INSTDISK="LUFA USB-RS232 CDC Driver Installer"
DESCRIPTION="Communications Port"
SERVICE="USB RS-232 Emulation Driver"
\ No newline at end of file
Projects/XPLAINBridge/Lib/RingBuff.c
0 → 100644
View file @
c05c7c7d
/*
LUFA Library
Copyright (C) Dean Camera, 2009.
dean [at] fourwalledcubicle [dot] com
www.fourwalledcubicle.com
*/
/*
Copyright 2009 Dean Camera (dean [at] fourwalledcubicle [dot] com)
Permission to use, copy, modify, and distribute this software
and its documentation for any purpose and without fee is hereby
granted, provided that the above copyright notice appear in all
copies and that both that the copyright notice and this
permission notice and warranty disclaimer appear in supporting
documentation, and that the name of the author not be used in
advertising or publicity pertaining to distribution of the
software without specific, written prior permission.
The author disclaim all warranties with regard to this
software, including all implied warranties of merchantability
and fitness. In no event shall the author be liable for any
special, indirect or consequential damages or any damages
whatsoever resulting from loss of use, data or profits, whether
in an action of contract, negligence or other tortious action,
arising out of or in connection with the use or performance of
this software.
*/
#include
"RingBuff.h"
void
Buffer_Initialize
(
RingBuff_t
*
Buffer
)
{
BUFF_ATOMIC_BLOCK
{
Buffer
->
InPtr
=
(
RingBuff_Data_t
*
)
&
Buffer
->
Buffer
;
Buffer
->
OutPtr
=
(
RingBuff_Data_t
*
)
&
Buffer
->
Buffer
;
Buffer
->
Elements
=
0
;
}
}
void
Buffer_StoreElement
(
RingBuff_t
*
Buffer
,
RingBuff_Data_t
Data
)
{
BUFF_ATOMIC_BLOCK
{
#if defined(BUFF_DROPOLD)
if
(
Buffer
->
Elements
==
BUFF_LENGTH
)
{
Buffer
->
OutPtr
++
;
if
(
Buffer
->
OutPtr
==
&
Buffer
->
Buffer
[
BUFF_LENGTH
])
Buffer
->
OutPtr
=
(
RingBuff_Data_t
*
)
&
Buffer
->
Buffer
;
}
else
{
Buffer
->
Elements
++
;
}
#elif defined(BUFF_DROPNEW)
if
(
Buffer
->
Elements
==
BUFF_LENGTH
)
return
;
Buffer
->
Elements
++
;
#elif defined(BUFF_NODROPCHECK)
Buffer
->
Elements
++
;
#endif
*
(
Buffer
->
InPtr
)
=
Data
;
Buffer
->
InPtr
++
;
if
(
Buffer
->
InPtr
==
&
Buffer
->
Buffer
[
BUFF_LENGTH
])
Buffer
->
InPtr
=
(
RingBuff_Data_t
*
)
&
Buffer
->
Buffer
;
}