Project

General

Profile

Statistics
| Revision:

root / trunk / code / projects / diagnostic_station / station / test_comm.c @ 1166

History | View | Annotate | Download (405 Bytes)

1
#include "test_comm.h"
2
#include "global.h"
3

    
4
/** Returns whether we have communication **/
5
bool test_comm ()
6
{
7
        usb_puts("# Testing communications" NL);
8

    
9
        // FIXME implement
10

    
11
        bool success=true;
12

    
13
        if (success)
14
                usb_puts("# Testing communication finished (communication succeeded)" NL);
15
        else
16
                usb_puts("# Testing communication finished (communication failed)" NL);
17

    
18
        return success;
19
}