|
| 1 | +/* |
| 2 | + * This file is free software; you can redistribute it and/or modify |
| 3 | + * it under the terms of either the GNU General Public License version 2 |
| 4 | + * or the GNU Lesser General Public License version 2.1, both as |
| 5 | + * published by the Free Software Foundation. |
| 6 | + */ |
| 7 | + |
| 8 | +/************************************************************************************** |
| 9 | + * INCLUDE |
| 10 | + **************************************************************************************/ |
| 11 | + |
| 12 | +#include "CanMsg.h" |
| 13 | + |
| 14 | +/************************************************************************************** |
| 15 | + * NAMESPACE |
| 16 | + **************************************************************************************/ |
| 17 | + |
| 18 | +namespace arduino |
| 19 | +{ |
| 20 | + |
| 21 | +/************************************************************************************** |
| 22 | + * STATIC CONST DEFINITION |
| 23 | + **************************************************************************************/ |
| 24 | + |
| 25 | +size_t const CanMsg::MAX_DATA_LENGTH; |
| 26 | +uint32_t const CanMsg::CAN_EFF_FLAG; |
| 27 | +uint32_t const CanMsg::CAN_SFF_MASK; |
| 28 | +uint32_t const CanMsg::CAN_EFF_MASK; |
| 29 | + |
| 30 | +/************************************************************************************** |
| 31 | + * NAMESPACE |
| 32 | + **************************************************************************************/ |
| 33 | + |
| 34 | +} /* arduino */ |
0 commit comments