driver_nmea2000.h 477 B

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