Refs #316. Added header for SocketCAN interface.

git-svn-id: https://svn.code.sf.net/p/openblt/code/trunk@311 5dc33758-31d5-4daf-9ae8-b24bf3d40d73
This commit is contained in:
Frank Voorburg 2017-07-24 16:15:43 +00:00
parent 970c5411fc
commit 6f7b2381d1
1 changed files with 50 additions and 0 deletions

View File

@ -0,0 +1,50 @@
/************************************************************************************//**
* \file socketcan.h
* \brief Linux SocketCAN interface header file.
* \ingroup SocketCan
* \internal
*----------------------------------------------------------------------------------------
* C O P Y R I G H T
*----------------------------------------------------------------------------------------
* Copyright (c) 2017 by Feaser http://www.feaser.com All rights reserved
*
*----------------------------------------------------------------------------------------
* L I C E N S E
*----------------------------------------------------------------------------------------
* This file is part of OpenBLT. OpenBLT is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published by the Free
* Software Foundation, either version 3 of the License, or (at your option) any later
* version.
*
* OpenBLT is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
* PURPOSE. See the GNU General Public License for more details.
*
* You have received a copy of the GNU General Public License along with OpenBLT. It
* should be located in ".\Doc\license.html". If not, contact Feaser to obtain a copy.
*
* \endinternal
****************************************************************************************/
/************************************************************************************//**
* \defgroup SocketCan Linux SocketCAN interface
* \brief This module implements the CAN interface for Linux SocketCAN.
* \ingroup CanDriver
****************************************************************************************/
#ifndef SOCKETCAN_H
#define SOCKETCAN_H
#ifdef __cplusplus
extern "C" {
#endif
/***************************************************************************************
* Function prototypes
****************************************************************************************/
tCanInterface const * SocketCanGetInterface(void);
#ifdef __cplusplus
}
#endif
#endif /* SOCKETCAN_H */
/*********************************** end of socketcan.h ********************************/