2011-10-15 11:32:43 +02:00
|
|
|
/* Name: requests.h
|
|
|
|
* Project: custom-class, a basic USB example
|
|
|
|
* Author: Christian Starkjohann
|
|
|
|
* Creation Date: 2008-04-09
|
|
|
|
* Tabsize: 4
|
|
|
|
* Copyright: (c) 2008 by OBJECTIVE DEVELOPMENT Software GmbH
|
|
|
|
* License: GNU GPL v2 (see License.txt), GNU GPL v3 or proprietary (CommercialLicense.txt)
|
|
|
|
* This Revision: $Id: requests.h 692 2008-11-07 15:07:40Z cs $
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* This header is shared between the firmware and the host software. It
|
|
|
|
* defines the USB request numbers (and optionally data types) used to
|
|
|
|
* communicate between the host and the device.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __REQUESTS_H_INCLUDED__
|
|
|
|
#define __REQUESTS_H_INCLUDED__
|
|
|
|
|
2011-12-09 21:59:25 +01:00
|
|
|
#define CUSTOM_RQ_SET_LED 1
|
|
|
|
#define CUSTOM_RQ_SET_FRAME 2
|
2011-10-15 11:32:43 +02:00
|
|
|
|
2011-12-09 21:59:25 +01:00
|
|
|
//#define CUSTOM_RQ_GET_STATUS 255
|
2011-10-15 11:32:43 +02:00
|
|
|
|
|
|
|
#endif /* __REQUESTS_H_INCLUDED__ */
|