]> rtime.felk.cvut.cz Git - lincan.git/blobdiff - lincan/include/constants.h
CAN driver infrastructure redesign to LinCAN-0.2 version
[lincan.git] / lincan / include / constants.h
index 10af2ce52bdfa146170d2dacfc898e349623a2a7..2d86cc354c80db821dfa1143fc6a8ef4abd9fae7 100644 (file)
@@ -1,8 +1,10 @@
 /* constants.h
  * Header file for the Linux CAN-bus driver.
  * Written by Arnaud Westenberg email:arnaud@wanadoo.nl
+ * Rewritten for new CAN queues by Pavel Pisa - OCERA team member
+ * email:pisa@cmp.felk.cvut.cz
  * This software is released under the GPL-License.
- * Version 0.7  6 Aug 2001
+ * Version lincan-0.2  9 Jul 2003
  */
 
 #ifdef __CONSTANTS_H__
 #define SIE (1<<2)
 #define EIE (1<<3)
 
-#define SPACING 0x3c0
-
 /* These flags can be used for the msgobj_t structure flags data entry */
-#define OPENED (1<<0)
-#define BUFFERS_ALLOCATED (1<<1)
+#define OBJ_OPENED (1<<0)
+#define OBJ_BUFFERS_ALLOCATED (1<<1)
+#define OBJ_TX_REQUEST (1<<2)
+#define OBJ_TX_LOCK (1<<3)
 
 /* These flags can be used for the chip_t structure flags data entry */
-#define CONFIGURED (1<<0)
-#define SEGMENTED (1<<1)
+#define CHIP_CONFIGURED (1<<0)
+#define CHIP_SEGMENTED (1<<1)
 
 /* These flags can be used for the candevices_t structure flags data entry */
 #define PROGRAMMABLE_IRQ (1<<0)