isotp.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2016 OTA keys S.A.
3  *
4  * This file is subject to the terms and conditions of the GNU Lesser General
5  * Public License v2.1. See the file LICENSE in the top level directory for more
6  * details.
7  */
8 
9 #pragma once
10 
23 #ifdef __cplusplus
24 extern "C" {
25 #endif
26 
27 #include "can/can.h"
28 #include "can/common.h"
29 #include "thread.h"
30 #include "ztimer.h"
31 #include "net/gnrc/pktbuf.h"
32 
33 #ifndef CAN_ISOTP_BS
37 #define CAN_ISOTP_BS (10)
38 #endif
39 
40 #ifndef CAN_ISOTP_STMIN
44 #define CAN_ISOTP_STMIN (5)
45 #endif
46 
47 #ifndef CAN_ISOTP_WFTMAX
51 #define CAN_ISOTP_WFTMAX (1)
52 #endif
53 
60  uint8_t bs;
67  uint8_t stmin;
68 
69  uint8_t wftmax;
70 };
71 
77 struct isotp_options {
80  uint16_t flags;
81  uint8_t ext_address;
82  uint8_t txpad_content;
83  uint8_t rx_ext_address;
84 };
85 
91 struct tpcon {
92  unsigned idx;
93  uint8_t state;
94  uint8_t bs;
95  uint8_t sn;
96  int tx_handle;
98 };
99 
105 struct isotp {
106  struct isotp *next;
107  struct isotp_options opt;
108  struct isotp_fc_options rxfc;
109  struct isotp_fc_options txfc;
110  struct tpcon tx;
111  struct tpcon rx;
115  uint32_t tx_gap;
116  uint8_t tx_wft;
117  void *arg;
118 };
119 
124 #define CAN_ISOTP_RX_FLAGS_MASK 0x0000FFFF
125 #define CAN_ISOTP_LISTEN_MODE 0x0001
126 #define CAN_ISOTP_EXTEND_ADDR 0x0002
127 #define CAN_ISOTP_TX_PADDING 0x0004
128 #define CAN_ISOTP_HALF_DUPLEX 0x0040
129 #define CAN_ISOTP_RX_EXT_ADDR 0x0200
131 #define CAN_ISOTP_TX_FLAGS_MASK 0xFFFF0000
132 #define CAN_ISOTP_TX_DONT_WAIT 0x00010000
139 #define CAN_ISOTP_DEFAULT_FLAGS 0
140 #define CAN_ISOTP_DEFAULT_EXT_ADDRESS 0x00
141 #define CAN_ISOTP_DEFAULT_PAD_CONTENT 0xCC /* prevent bit-stuffing */
142 #define CAN_ISOTP_DEFAULT_FRAME_TXTIME 0
143 #define CAN_ISOTP_DEFAULT_RECV_BS 0
144 #define CAN_ISOTP_DEFAULT_RECV_STMIN 0x00
145 #define CAN_ISOTP_DEFAULT_RECV_WFTMAX 0
158 kernel_pid_t isotp_init(char *stack, int stacksize, char priority, const char *name);
159 
171 int isotp_send(struct isotp *isotp, const void *buf, int len, int flags);
172 
188 int isotp_bind(struct isotp *isotp, can_reg_entry_t *entry, void *arg,
189  struct isotp_fc_options *fc_options);
190 
201 int isotp_release(struct isotp *isotp);
202 
211 
212 #ifdef __cplusplus
213 }
214 #endif
215 
int16_t kernel_pid_t
Unique process identifier.
Definition: sched.h:138
uint32_t canid_t
Controller Area Network Identifier structure.
Definition: can.h:95
int isotp_release(struct isotp *isotp)
Release a bound isotp channel.
int isotp_send(struct isotp *isotp, const void *buf, int len, int flags)
Send data through an isotp channel.
kernel_pid_t isotp_init(char *stack, int stacksize, char priority, const char *name)
Initialize the isotp layer.
void isotp_free_rx(can_rx_data_t *rx)
Free a received buffer.
int isotp_bind(struct isotp *isotp, can_reg_entry_t *entry, void *arg, struct isotp_fc_options *fc_options)
Bind an isotp channel.
Interface definition for the global network buffer.
registry entry
Definition: common.h:155
Received data structure.
Definition: common.h:134
Type to represent parts (either headers or payload) of a packet, called snips.
Definition: pkt.h:108
The isotp_fc_options struct.
Definition: isotp.h:59
uint8_t wftmax
max.
Definition: isotp.h:69
uint8_t bs
blocksize provided in FC frame, 0 = off
Definition: isotp.h:60
uint8_t stmin
separation time provided in FC frame 0x00 - 0x7F : 0 - 127 ms 0x80 - 0xF0 : reserved 0xF1 - 0xF9 : 10...
Definition: isotp.h:67
The isotp_options struct.
Definition: isotp.h:77
uint8_t txpad_content
set content of padding byte (tx)
Definition: isotp.h:82
uint8_t rx_ext_address
set address for extended addressing
Definition: isotp.h:83
canid_t rx_id
Receive CAN ID.
Definition: isotp.h:79
uint8_t ext_address
set address for extended addressing
Definition: isotp.h:81
uint16_t flags
set flags for isotp behaviour.
Definition: isotp.h:80
canid_t tx_id
transmit CAN ID
Definition: isotp.h:78
The isotp struct.
Definition: isotp.h:105
struct isotp_options opt
channel options
Definition: isotp.h:107
uint8_t tx_wft
transmit wait counter
Definition: isotp.h:116
void * arg
upper layer private arg
Definition: isotp.h:117
struct isotp_fc_options rxfc
rx flow control options (defined locally)
Definition: isotp.h:108
struct isotp * next
next bound channel
Definition: isotp.h:106
ztimer_t rx_timer
timer for rx operations
Definition: isotp.h:113
struct isotp_fc_options txfc
tx flow control options (defined remotely)
Definition: isotp.h:109
ztimer_t tx_timer
timer for tx operations
Definition: isotp.h:112
struct tpcon rx
receive state
Definition: isotp.h:111
uint32_t tx_gap
transmit gap from fc (in us)
Definition: isotp.h:115
struct tpcon tx
transmit state
Definition: isotp.h:110
can_reg_entry_t entry
entry containing ifnum and upper layer msg system
Definition: isotp.h:114
The tpcon struct.
Definition: isotp.h:91
unsigned idx
current index in buf
Definition: isotp.h:92
gnrc_pktsnip_t * snip
allocated snip containing data buffer
Definition: isotp.h:97
uint8_t sn
current sequence number
Definition: isotp.h:95
uint8_t state
the protocol state
Definition: isotp.h:93
uint8_t bs
block size
Definition: isotp.h:94
int tx_handle
handle of the last sent frame
Definition: isotp.h:96
ztimer structure
Definition: ztimer.h:319
Definitions high-level CAN interface.
Definitions of high-level CAN interface.
ztimer API