Project

General

Profile

Statistics
| Revision:

root / trunk / code / projects / diagnostic_station / station / hardware.c @ 1182

History | View | Annotate | Download (183 Bytes)

1
#include "hardware.h"
2

    
3
void hardware_init ()
4
{
5
        usb_puts ("# Initializing station hardware" NL);
6
        
7
        encoders_init ();
8
        rbom_init ();
9
        wall_init ();
10
        turntable_init ();
11
}
12