1 /*
2  * NMEA2000 over CAN.
3  *
4  * The entry points for driver_nmea2000
5  *
6  * This file is Copyright (c) 2012 by the GPSD project
7  * SPDX-License-Identifier: BSD-2-clause
8  */
9 
10 #ifndef _DRIVER_NMEA2000_H_
11 #define _DRIVER_NMEA2000_H_
12 
13 #if defined(NMEA2000_ENABLE)
14 
15 int nmea2000_open(struct gps_device_t *session);
16 
17 void nmea2000_close(struct gps_device_t *session);
18 
19 #endif /* of defined(NMEA2000_ENABLE) */
20 
21 #endif /* of ifndef _DRIVER_NMEA2000_H_ */
22