]> rtime.felk.cvut.cz Git - lincan.git/blobdiff - lincan/include/can.h
Added support for Unicontrols PCAN cards series and baudrate setting.
[lincan.git] / lincan / include / can.h
index 0473dcc393ceb3a854f7a6994f4e56c03038a9ba..2521291f7c6a9f9c608f561c1d4d0ee6e1c98a08 100644 (file)
@@ -27,6 +27,23 @@ extern "C" {
 typedef unsigned long bittiming_t;
 typedef unsigned short channel_t;
 
+/**
+ * struct can_baudparams_t - datatype for calling CONF_BAUDPARAMS IOCTL 
+ * @flags: reserved for additional flags for chip configuration, should be written -1 or 0
+ * @baudrate: baud rate in Hz
+ * @sjw: synchronization jump width (0-3) prescaled clock cycles
+ * @sampl_pt: sample point in % (0-100) sets (TSEG1+1)/(TSEG1+TSEG2+2) ratio
+ * 
+ * The structure is used to configure new set of parameters into CAN controller chip.
+ * If default value of some field should be preserved, fill field by value -1.
+ */
+struct can_baudparams_t {
+       long flags;
+       long baudrate;
+       long sjw;
+       long sample_pt;
+};
+
 /* CAN ioctl functions */
 #define CAN_DRV_QUERY _IO(CAN_IOC_MAGIC, 0)
 #define CAN_DRV_QRY_BRANCH    0        /* returns driver branch value - "LINC" for LinCAN driver */
@@ -50,6 +67,7 @@ typedef unsigned short channel_t;
 #define STAT _IO(CAN_IOC_MAGIC, 9)
 #define CANQUE_FILTER _IOW(CAN_IOC_MAGIC, 10, struct canfilt_t)
 #define CANQUE_FLUSH  _IO(CAN_IOC_MAGIC, 11)
+#define CONF_BAUDPARAMS  _IOW(CAN_IOC_MAGIC, 11, struct can_baudparams_t)
 
 #ifdef __cplusplus
 } /* extern "C"*/