Project

General

Profile

Statistics
| Revision:

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

History | View | Annotate | Download (184 Bytes)

1
#include "hardware.h"
2

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