Project

General

Profile

Statistics
| Revision:

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

History | View | Annotate | Download (389 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 ("# Turntable rotating to ");
11
        usb_puti (position);
12
        usb_puts (NL);
13
        
14
        // FIXME implement
15
        
16
        usb_puts ("# Turntable position reached" NL);
17
}
18

    
19
uint16_t turntable_get_position (void)
20
{
21
        // FIXME implement
22

    
23
        return 42;
24
}