Project

General

Profile

Statistics
| Revision:

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

History | View | Annotate | Download (443 Bytes)

1
#include "hardware_wall.h"
2

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

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

    
19
// We might also need this because the wall_set_position might not reach the exact position
20
uint16_t wall_get_position ()
21
{
22
        // FIXME implement
23
        return 0;
24
}