forked from dergraaf/avr-can-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
can.h
530 lines (484 loc) · 14.5 KB
/
can.h
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
// coding: utf-8
// ----------------------------------------------------------------------------
/*
* Copyright (c) 2007 Fabian Greif, Roboterclub Aachen e.V.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
// ----------------------------------------------------------------------------
/**
* \file can.h
* \brief Header-Datei für das allgemeine CAN Interface
*/
// ----------------------------------------------------------------------------
#ifndef CAN_H
#define CAN_H
#if defined (__cplusplus)
extern "C" {
#endif
// ----------------------------------------------------------------------------
/**
* \ingroup communication
* \defgroup can_interface Universelles CAN Interface
* \brief allgemeines CAN Interface für AT90CAN32/64/128, MCP2515 und SJA1000
*
* \author Fabian Greif <[email protected]>
* \author Roboterclub Aachen e.V. (http://www.roboterclub.rwth-aachen.de)
*
* can_sleep() and can_wakeup() functions by Frédéric Lamorce.
*
* \version $Id: can.h 8086 2009-07-14 14:08:25Z fabian $
*/
// ----------------------------------------------------------------------------
#include <avr/pgmspace.h>
#include <stdint.h>
#include <stdbool.h>
#ifndef CAN_CONFIG_LOADED
#ifdef HAS_CAN_CONFIG_H
/* try to load can_config.h */
#include "can_config.h"
#else
/* try to load config.h - compatibility */
#include "config.h"
#endif
#endif
// ----------------------------------------------------------------------------
/** \ingroup can_interface
* \name Bitdefinitionen
*/
//@{
#define ONLY_NON_RTR 2
#define ONLY_RTR 3
//@}
/** \ingroup can_interface
* \brief Bitraten fuer den CAN-Bus
*/
typedef enum {
BITRATE_10_KBPS = 0, // ungetestet
BITRATE_20_KBPS = 1, // ungetestet
BITRATE_50_KBPS = 2, // ungetestet
BITRATE_100_KBPS = 3, // ungetestet
BITRATE_125_KBPS = 4,
BITRATE_250_KBPS = 5, // ungetestet
BITRATE_500_KBPS = 6, // ungetestet
BITRATE_1_MBPS = 7, // ungetestet
} can_bitrate_t;
/**
* \ingroup can_interface
* \brief Symbol um auf alle Filter zuzugreifen
*/
#define CAN_ALL_FILTER 0xff
/**
* \ingroup can_interface
* \brief Unterstuetzung fuer Extended-IDs aktivieren
*/
#ifndef SUPPORT_EXTENDED_CANID
#define SUPPORT_EXTENDED_CANID 1
#endif
/**
* \ingroup can_interface
* \brief Unterstützung für Zeitstempel aktivieren
* \warning Wird nur vom AT90CANxxx unterstützt
*/
#ifndef SUPPORT_TIMESTAMPS
#define SUPPORT_TIMESTAMPS 0
#endif
/**
* \ingroup can_interface
* \name Bits des Filters fuer den MCP2515 umformatieren
*
* \code
* prog_uint8_t can_filter[] =
* {
* MCP2515_FILTER_EXTENDED(0), // Filter 0
* MCP2515_FILTER_EXTENDED(0), // Filter 1
*
* MCP2515_FILTER_EXTENDED(0), // Filter 2
* MCP2515_FILTER_EXTENDED(0), // Filter 3
* MCP2515_FILTER_EXTENDED(0), // Filter 4
* MCP2515_FILTER_EXTENDED(0), // Filter 5
*
* MCP2515_FILTER_EXTENDED(0), // Maske 0
* MCP2515_FILTER_EXTENDED(0), // Maske 1
* };
* \endcode
*
* \see can_static_filter()
*
* \~german
* \warning Dieses Makro sollte nur Werte verwendet die schon zur
* Compile-Zeit bekannt sind. Der Code sollte ansonsten zwar trotzdem
* funktionieren, wird danner aber sehr groß.
*
* \~english
* \warning Do not use this Makro for Variables, only for static values
* known at compile-time.
*/
//@{
#if defined(__DOXYGEN__)
#define MCP2515_FILTER_EXTENDED(id)
#define MCP2515_FILTER(id)
#else
#if SUPPORT_EXTENDED_CANID
#define MCP2515_FILTER_EXTENDED(id) \
(uint8_t) ((uint32_t) (id) >> 21), \
(uint8_t)((((uint32_t) (id) >> 13) & 0xe0) | (1<<3) | \
(((uint32_t) (id) >> 16) & 0x3)), \
(uint8_t) ((uint32_t) (id) >> 8), \
(uint8_t) ((uint32_t) (id))
#endif
#define MCP2515_FILTER(id) \
(uint8_t)((uint32_t) id >> 3), \
(uint8_t)((uint32_t) id << 5), \
0, \
0
#endif
//@}
// ----------------------------------------------------------------------------
/**
* \ingroup can_interface
* \brief Datenstruktur zum Aufnehmen von CAN Nachrichten
*/
typedef struct
{
#if SUPPORT_EXTENDED_CANID
uint32_t id; //!< ID der Nachricht (11 oder 29 Bit)
struct {
int rtr : 1; //!< Remote-Transmit-Request-Frame?
int extended : 1; //!< extended ID?
} flags;
#else
uint16_t id; //!< ID der Nachricht (11 Bit)
struct {
int rtr : 1; //!< Remote-Transmit-Request-Frame?
} flags;
#endif
uint8_t length; //!< Anzahl der Datenbytes
uint8_t data[8]; //!< Die Daten der CAN Nachricht
#if SUPPORT_TIMESTAMPS
uint16_t timestamp;
#endif
} can_t;
typedef can_t CanMessage; // alias
// ----------------------------------------------------------------------------
/**
* \ingroup can_interface
* \brief Datenstruktur zur Aufnahme von CAN-Filtern
*
* \code
* rtr | Funtion
* -----|------
* 00 | alle Nachrichten unabhaengig vom RTR-Bit
* 01 | ungültig
* 10 | empfange nur nicht RTR-Nachrichten
* 11 | empfange nur Nachrichten mit gesetzem RTR-Bit
* \endcode
*
* \b ACHTUNG:
* Funktioniert nur mit dem AT90CAN, beim MCP2515 wird der Parameter ignoriert.
*
* \code
* ext | Funtion
* -----|------
* 00 | alle Nachrichten
* 01 | ungueltig
* 10 | empfange nur Standard-Nachrichten
* 11 | empfange nur Extended-Nachrichten
* \endcode
*
* \warning Filter sind beim SJA1000 nur begrenzt nutzbar, man sollte ihn nur
* in Systemen mit entweder Standard- oder Extended-Frames einsetzten,
* aber nicht beidem zusammen.
*/
typedef struct
{
#if SUPPORT_EXTENDED_CANID
uint32_t id; //!< ID der Nachricht (11 oder 29 Bit)
uint32_t mask; //!< Maske
struct {
uint8_t rtr : 2; //!< Remote Request Frame
uint8_t extended : 2; //!< extended ID
} flags;
#else
uint16_t id; //!< ID der Nachricht 11 Bits
uint16_t mask; //!< Maske
struct {
uint8_t rtr : 2; //!< Remote Request Frame
} flags;
#endif
} can_filter_t;
// ----------------------------------------------------------------------------
/**
* \ingroup can_interface
* \brief Inhalt der Fehler-Register
*/
typedef struct {
uint8_t rx; //!< Empfangs-Register
uint8_t tx; //!< Sende-Register
} can_error_register_t;
// ----------------------------------------------------------------------------
/**
* \ingroup can_interface
* \brief Modus des CAN Interfaces
*/
typedef enum {
LISTEN_ONLY_MODE, //!< der CAN Contoller empfängt nur und verhält sich völlig passiv
LOOPBACK_MODE, //!< alle Nachrichten direkt auf die Empfangsregister umleiten ohne sie zu senden
NORMAL_MODE, //!< normaler Modus, CAN Controller ist aktiv
SLEEP_MODE // sleep mode
} can_mode_t;
// ----------------------------------------------------------------------------
/**
* \ingroup can_interface
* \brief Initialisierung des CAN Interfaces
*
* \param bitrate Gewuenschte Geschwindigkeit des CAN Interfaces
*
* \return false falls das CAN Interface nicht initialisiert werden konnte,
* true ansonsten.
*/
extern bool
can_init(can_bitrate_t bitrate);
// ----------------------------------------------------------------------------
/**
* \ingroup can_interface
*
* \~english
* \brief Put CAN interface to sleep and wake up
*
* MCP2515 active : 5mA
* MCP2515 sleep : 1µA
*
* MCP2551 active : 10mA+
* MCP2551 sleep : 400µA
*
* \code
* // before we are going to sleep, enable the interrupt that will wake us up
// attach interrupt 1 to the routine
EICRA = 0; // int on low level
// Enable the interrupt1
EIMSK = _BV(INT1);
// put the MCP2515 to sleep
can_sleep();
// enable atmega sleep mode
cli();
sleep_enable();
// turn off BOD
sleep_bod_disable();
// and we go to sleep
sei();
sleep_cpu();
// here int1 has been executed and we are woken up
sleep_disable();
// disable int1
EIMSK = 0;
// re-enable 2515 and 2551
can_wake();
* \endcode
*
* \warning Only implemented for the MCP2515
*/
extern void
can_sleep(void);
extern void
can_wakeup(void);
// ----------------------------------------------------------------------------
/**
* \ingroup can_interface
* \brief Setzen eines Filters
*
* Für einen MCP2515 sollte die Funktion can_static_filter() bevorzugt werden.
*
* \param number Position des Filters
* \param filter zu setzender Filter
*
* \return false falls ein Fehler auftrat, true ansonsten
*/
extern bool
can_set_filter(uint8_t number, const can_filter_t *filter);
// ----------------------------------------------------------------------------
/**
* \ingroup can_interface
* \brief Filter deaktivieren
*
* \param number Nummer des Filters der deaktiviert werden soll,
* 0xff deaktiviert alle Filter.
* \return false falls ein Fehler auftrat, true ansonsten
*
* \warning Wird nur vom AT90CAN32/64/128 unterstuetzt.
*/
extern bool
can_disable_filter(uint8_t number);
// ----------------------------------------------------------------------------
/**
* \ingroup can_interface
* \brief Setzt die Werte für alle Filter
*
* \code
* // Filter und Masken-Tabelle anlegen
* prog_char can_filter[] = {
* MCP2515_FILTER_EXTENDED(0), // Filter 0
* MCP2515_FILTER_EXTENDED(0), // Filter 1
*
* MCP2515_FILTER_EXTENDED(0), // Filter 2
* MCP2515_FILTER_EXTENDED(0), // Filter 3
* MCP2515_FILTER_EXTENDED(0), // Filter 4
* MCP2515_FILTER_EXTENDED(0), // Filter 5
*
* MCP2515_FILTER_EXTENDED(0), // Maske 0
* MCP2515_FILTER_EXTENDED(0), // Maske 1
* };
*
* ...
*
* // Filter und Masken-Tabelle laden
* can_static_filter(can_filter);
* \endcode
*
* \param *filter_array Array im Flash des AVRs mit den Initialisierungs-
* werten für die Filter des MCP2515
*
* \see MCP2515_FILTER_EXTENDED()
* \see MCP2515_FILTER()
* \warning Wird nur vom MCP2515 unterstuetzt.
*/
extern void
can_static_filter(const uint8_t *filter_array);
// ----------------------------------------------------------------------------
/**
* \ingroup can_interface
*
* \~german
* \brief Filterdaten auslesen
*
* \param number Nummer des Filters dessen Daten man haben moechte
* \param *filter Pointer in den die Filterstruktur geschrieben wird
*
* \return \b 0 falls ein Fehler auftrat, \
* \b 1 falls der Filter korrekt gelesen werden konnte, \
* \b 2 falls der Filter im Moment nicht verwendet wird (nur AT90CAN), \
* \b 0xff falls gerade keine Aussage moeglich ist (nur AT90CAN).
*
* \warning Da der SJA1000 nicht feststellen kann ob der ausgelesene Filter
* nun zwei 11-Bit Filter oder ein 29-Bit Filter ist werden nicht
* die Filter sondern die Registerinhalte direkt zurück gegeben.
* Der Programmierer muss dann selbst entscheiden was er mit den
* Werten macht.
*
* \~english
* \warning SJA1000 doesn't return the filter and id directly but the content
* of the corresponding registers because it is not possible to
* check the type of the filter.
*/
extern uint8_t
can_get_filter(uint8_t number, can_filter_t *filter);
// ----------------------------------------------------------------------------
/**
* \ingroup can_interface
* \brief Ueberpruefen ob neue CAN Nachrichten vorhanden sind
*
* \return true falls neue Nachrichten verfuegbar sind, false ansonsten.
*/
extern bool
can_check_message(void);
// ----------------------------------------------------------------------------
/**
* \ingroup can_interface
* \brief Ueberprueft ob ein Puffer zum Versenden einer Nachricht frei ist.
*
* \return true falls ein Sende-Puffer frei ist, false ansonsten.
*/
extern bool
can_check_free_buffer(void);
// ----------------------------------------------------------------------------
/**
* \ingroup can_interface
* \brief Verschickt eine Nachricht über den CAN Bus
*
* \param msg Nachricht die verschickt werden soll
* \return FALSE falls die Nachricht nicht verschickt werden konnte, \n
* ansonsten der Code des Puffes in den die Nachricht gespeichert wurde
*/
extern uint8_t
can_send_message(const can_t *msg);
// ----------------------------------------------------------------------------
/**
* \ingroup can_interface
* \brief Liest eine Nachricht aus den Empfangspuffern des CAN Controllers
*
* \param msg Pointer auf die Nachricht die gelesen werden soll.
* \return FALSE falls die Nachricht nicht ausgelesen konnte,
* ansonsten Filtercode welcher die Nachricht akzeptiert hat.
*/
extern uint8_t
can_get_message(can_t *msg);
// ----------------------------------------------------------------------------
/**
* \ingroup can_interface
*
* \~german
* \brief Liest den Inhalt der Fehler-Register
*
* \~english
* \brief Reads the Contents of the CAN Error Counter
*/
extern can_error_register_t
can_read_error_register(void);
// ----------------------------------------------------------------------------
/**
* \ingroup can_interface
*
* \~german
* \brief Überprüft ob der CAN Controller im Bus-Off-Status
*
* \return true wenn der Bus-Off-Status aktiv ist, false ansonsten
*
* \warning aktuell nur auf dem SJA1000
*/
extern bool
can_check_bus_off(void);
// ----------------------------------------------------------------------------
/**
* \ingroup can_interface
*
* \~german
* \brief Setzt einen Bus-Off Status zurück und schaltet den CAN Controller
* wieder aktiv
*
* \warning aktuell nur auf dem SJA1000
*/
extern void
can_reset_bus_off(void);
// ----------------------------------------------------------------------------
/**
* \ingroup can_interface
* \brief Setzt den Operations-Modus
*
* \param mode Gewünschter Modus des CAN Controllers
*/
extern void
can_set_mode(can_mode_t mode);
#if defined (__cplusplus)
}
#endif
#endif // CAN_H