]> rtime.felk.cvut.cz Git - pes-rpp/rpp-lib.git/blob - rpp/src/rpp/lin.c
Merge branches 'master' and 'rm48/master'
[pes-rpp/rpp-lib.git] / rpp / src / rpp / lin.c
1 /* Copyright (C) 2013 Czech Technical University in Prague
2  *
3  * Authors:
4  *     - Carlos Jenkins <carlos@jenkins.co.cr>
5  *
6  * This document contains proprietary information belonging to Czech
7  * Technical University in Prague. Passing on and copying of this
8  * document, and communication of its contents is not permitted
9  * without prior written authorization.
10  *
11  * File : lin.c
12  * Abstract:
13  *     LIN Communication RPP API implementation file.
14  *
15  * References:
16  *     lin.h
17  *     RPP API documentation.
18  */
19
20
21 #include "rpp/rpp.h"
22
23 static boolean_t initialized = FALSE;
24
25 int8_t rpp_lin_init()
26 {
27         if (initialized)
28                 return FAILURE;
29         initialized = TRUE;
30
31         // FIXME: Implement.
32         return SUCCESS;
33 }