]> rtime.felk.cvut.cz Git - pes-rpp/rpp-lib.git/blob - apps/rpp-test-suite/can.c
Merge branches 'master' and 'rm48/master'
[pes-rpp/rpp-lib.git] / apps / rpp-test-suite / can.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 : can.c
12  * Abstract:
13  *     RPP test suite - module for testing CAN.
14  *
15  * References:
16  *     test.h
17  */
18
19
20 #include "rpp/rpp.h"
21 #include "test.h"
22
23
24 /**
25  * CAN Test entry point.
26  */
27 void test_can()
28 {
29         rpp_sci_printf((const char *)
30                                    "CAN test is unimplemented. Press any key to continue...\r\n"
31                                    );
32         wait_for_quit();
33 }