Source
x
/* SPDX-License-Identifier: GPL-2.0 */
/*
* definitions and function prototypes used for the cypress USB to Serial
* controller
*/
/*
* For sending our feature buffer - controlling serial communication states.
* Linux HID has no support for serial devices so we do this through the driver
*/
/* List other cypress USB to Serial devices here, and add them to the id_table */
/* DeLorme Earthmate USB - a GPS device */
/* Cypress HID->COM RS232 Adapter */
/* FRWD Dongle - a GPS sports watch */
/* Powercom UPS, chip CY7C63723 */
/* Nokia CA-42 USB to serial cable */
/* End of device listing */
/* Used for setting / requesting serial line settings */
/* Used for throttle control */
/*
* chiptypes - used in case firmware differs from the generic form ... offering
* different baud speeds/etc.
*/
/* End of chiptype definitions */
/*
* RS-232 serial data communication protocol definitions.
*
* These are sent / read at byte 0 of the input/output hid reports.
* You can find these values defined in the CY4601 USB to Serial design notes.
*/
/* data terminal ready */
/* request to send */
/* sent with output report */
/* ring indicator */
/* carrier detect */
/* data set ready */
/* clear to send */
/* received from input report */
/* End of RS-232 protocol definitions */
/* CYPRESS_M8_H */