Project

General

Profile

Statistics
| Revision:

root / trunk / code / projects / diagnostic_station / station / hardware_turntable.c @ 1183

History | View | Annotate | Download (299 Bytes)

1
#include "hardware_turntable.h"
2

    
3
void turntable_init ()
4
{
5
        // FIXME implement
6
}
7

    
8
void turntable_rotate_to_position (uint16_t position)
9
{
10
        usb_puts ("# Rotating to position ");
11
        usb_puti (position);
12
        usb_puts (NL);
13
        
14
        // FIXME implement
15
        
16
        usb_puts ("# Robot position reached");
17
}
18