Project

General

Profile

Statistics
| Revision:

root / trunk / code / projects / diagnostic_station / station / server_comm.c @ 1169

History | View | Annotate | Download (143 Bytes)

1
#include "server_comm.h"
2

    
3
void server_comm_init ()
4
{
5
        usb_init ();
6
        
7
}
8

    
9
void server_send_finished ()
10
{
11
        usb_puts ("finished");
12
}
13