n2k_base/lib.rs
1//!
2//! Basic definitions of data structures and traits for N2K networks.
3//! See <https://en.wikipedia.org/wiki/NMEA_2000>.
4//!
5
6/*
7Copyright (C) 2018 Erwin Gribnau
8
9This program is free software: you can redistribute it and/or modify
10it under the terms of the GNU Affero General Public License as published by
11the Free Software Foundation, either version 3 of the License, or
12(at your option) any later version.
13
14This program is distributed in the hope that it will be useful,
15but WITHOUT ANY WARRANTY; without even the implied warranty of
16MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17GNU Affero General Public License for more details.
18
19You should have received a copy of the GNU Affero General Public License
20along with this program. If not, see <https://www.gnu.org/licenses/>.
21*/
22
23#![no_std]
24
25pub mod n2k;