File: peperonidefs.h

package info (click to toggle)
qlcplus 4.14.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 58,644 kB
  • sloc: cpp: 182,867; javascript: 7,764; xml: 2,453; ansic: 2,120; sh: 1,716; python: 634; ruby: 606; makefile: 23
file content (121 lines) | stat: -rw-r--r-- 5,749 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
/*
  Q Light Controller
  peperonidefs.h

  Copyright (c) Heikki Junnila

  Licensed under the Apache License, Version 2.0 (the "License");
  you may not use this file except in compliance with the License.
  You may obtain a copy of the License at

      http://www.apache.org/licenses/LICENSE-2.0.txt

  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions and
  limitations under the License.
*/

#ifndef PEPERONIDEFS_H
#define PEPERONIDEFS_H

/** Lighting Solutions/Peperoni Light Vendor ID */
#define PEPERONI_VID            0x0CE1

/* Recognized Product IDs */
#define PEPERONI_PID_XSWITCH    0x0001
#define PEPERONI_PID_RODIN1     0x0002
#define PEPERONI_PID_RODIN2     0x0003
#define PEPERONI_PID_RODINT     0x0008
#define PEPERONI_PID_USBDMX21   0x0004
#define PEPERONI_PID_RODIN1_MK3 0x0013

/** Common interface */
#define PEPERONI_IFACE_EP0      0x00

#define PEPERONI_CONF_TXONLY    0x01
#define PEPERONI_CONF_TXRX      0x02
#define PEPERONI_CONF_RXONLY    0x03

#define _DMX_RX  (1<<2) /** receiver commands */
#define _DMX_TX  (2<<2) /** transmitter commands */

#define _DMX_MEM       0
#define _DMX_STARTCODE 1
#define _DMX_SLOTS     2
#define _DMX_FRAMES    3

/** CONTROL MESSAGES: Request function */
#define PEPERONI_ID_LED          0x02   /** Read/write led usage */
#define PEPERONI_TX_MEM_REQUEST  (_DMX_TX | _DMX_MEM)       /** Write into transmitter data memory */
#define PEPERONI_TX_SLOTS        (_DMX_TX | _DMX_SLOTS)     /** Write transmitter slot counter */
#define PEPERONI_TX_STARTCODE    (_DMX_TX | _DMX_STARTCODE) /** Write transmitter startcode */
#define PEPERONI_TX_FRAMES       (_DMX_TX | _DMX_FRAMES)    /** Read transmitter frame counter */
#define PEPERONI_RX_MEM_REQUEST  (_DMX_RX | _DMX_MEM)       /** Read/write receiver data memory */
#define PEPERONI_RX_SLOTS        (_DMX_RX | _DMX_SLOTS)     /** Read/write receiver slots counter */
#define PEPERONI_RX_STARTCODE    (_DMX_RX | _DMX_STARTCODE) /** Read/write receiver startcode */
#define PEPERONI_RX_FRAMES       (_DMX_RX | _DMX_FRAMES)    /** Read receiver frame counter */

/** CONTROL MSG: Block until the DMX frame has been completely transmitted */
#define PEPERONI_TX_MEM_BLOCK    0x01
/** CONTROL MSG: Do not block during DMX frame send */
#define PEPERONI_TX_MEM_NONBLOCK 0x00
/** CONTROL MSG: Oldest firmware version with blocking write support */
#define PEPERONI_FW_BLOCKING_WRITE_SUPPORT 0x101

/** BULK WRITE: Bulk out endpoint */
#define PEPERONI_BULK_OUT_ENDPOINT 0x02
/** BULK WRITE: Bulk int endpoint */
#define PEPERONI_BULK_IN_ENDPOINT 0x82

/** BULK WRITE: Oldest firmware version with bulk pipe support */
#define PEPERONI_FW_OLD_BULK_SUPPORT 0x400

/** BULK PIPE: Size of the "old" bulk header */
#define PEPERONI_OLD_BULK_HEADER_SIZE 4

/** BULK PIPE: "Old" bulk protocol ID */
#define PEPERONI_OLD_BULK_HEADER_ID 0x01

/** BULK PIPE: "Old" commands */
#define PEPERONI_OLD_BULK_HEADER_REQUEST_TX_SET   0x00   /** Write the transmitter memory */
#define PEPERONI_OLD_BULK_HEADER_REQUEST_TX_GET   0x01   /** Read the transmitter memory */
#define PEPERONI_OLD_BULK_HEADER_REQUEST_RX_SET   0x02   /** Write the receiver memory */
#define PEPERONI_OLD_BULK_HEADER_REQUEST_RX_GET   0x03   /** Read the receiver memory */
#define PEPERONI_OLD_BULK_HEADER_REQUEST_TX2_SET  0x04   /** Write the second universes transmitter memory */
#define PEPERONI_OLD_BULK_HEADER_REQUEST_TX2_GET  0x05   /** Read the second universes transmitter memory */

/** BULK WRITE: "New" protocol, first firmware version with bulk pipe support */
#define PEPERONI_FW_NEW_BULK_SUPPORT 0x500

/** BULK PIPE: "New" protocol ID */
#define PEPERONI_NEW_BULK_HEADER_ID1	(0x02)
#define PEPERONI_NEW_BULK_HEADER_ID2	(0x4d)
#define PEPERONI_NEW_BULK_HEADER_ID3	(0x6b)
#define PEPERONI_NEW_BULK_HEADER_ID4	(0x32)

/** BULK PIPE: "New" protocol commands */
#define PEPERONI_NEW_BULK_HEADER_REQUEST_SET (0x00)	/** send data to interface */
#define PEPERONI_NEW_BULK_HEADER_REQUEST_GET (0x10)	/** read data from interface */

/** BULK PIPE: "New" protocol configuration values */
#define PEPERONI_NEW_BULK_CONFIG_DELAY		(0x01)  /** delay frame by time */
#define PEPERONI_NEW_BULK_CONFIG_BLOCK		(0x02)  /** block while frame is not transmitting (timeout given by time) */
#define PEPERONI_NEW_BULK_CONFIG_RX		    (0x04)  /** switch to RX after having transmitted this frame */
#define PEPERONI_NEW_BULK_CONFIG_NORETX		(0x08)	/** do not retransmit this frame */
#define PEPERONI_NEW_BULK_CONFIG_TXIRQ		(0x40)  /** send data with two stop bits, default is 3 */
#define PEPERONI_NEW_BULK_CONFIG_FORCETX	(0x80)  /** force transmittion, overdrive input signals */

/** BULK PIPE: "New" protocol status values */
#define PEPERONI_NEW_BULK_STATUS_OK			        (0x00)
#define PEPERONI_NEW_BULK_STATUS_TIMEOUT		    (0x01)  /** request timed out */
#define PEPERONI_NEW_BULK_STATUS_TX_START_FAILED	(0x02)  /** delayed start failed */
#define PEPERONI_NEW_BULK_STATUS_UNIVERSE_WRONG		(0x03)  /** wrong universe addressed */
#define PEPERONI_NEW_BULK_STATUS_RX_LENGTH_DECODER	(0x08)  /** length decoded has updated slots_set */
#define PEPERONI_NEW_BULK_STATUS_RX_OLD_FRAME		(0x10)  /** old frame not read */
#define PEPERONI_NEW_BULK_STATUS_RX_TIMEOUT         (0x20)  /** receiver finished with timeout (ored with others) */
#define PEPERONI_NEW_BULK_STATUS_RX_NO_BREAK		(0x40)  /** frame without break received (ored with others) */
#define PEPERONI_NEW_BULK_STATUS_RX_FRAMEERROR		(0x80)  /** frame finished with frame error (ored with others) */

#endif