]> rtime.felk.cvut.cz Git - pes-rpp/rpp-lib.git/blob - apps/rpp-test-suite/sci.c
Update adc and spi to the new port interface
[pes-rpp/rpp-lib.git] / apps / rpp-test-suite / sci.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 : sci.c
12  * Abstract:
13  *     RPP test suite - module for testing SCI.
14  *
15  * References:
16  *     test.h
17  */
18
19
20 #include "rpp/rpp.h"
21 #include "test.h"
22
23
24 /**
25  * SCI Test entry point.
26  */
27 void test_sci()
28 {
29         // FIXME implement test with variable baud rate and a full test on
30         // the SCI API
31         rpp_sci_printf((const char *)
32                                    "You're using the SCI, reading this and typing this command.\r\n"
33                                    "Press any key to continue...\r\n"
34                                    );
35         wait_for_quit();
36 }