embkernel
 All Classes Functions Variables Typedefs Groups Pages
Hw.hpp
1 //------------------------------------------------------------------------------
2 //This file is part of embKernel.
3 //See license.txt for the full license governing this code.
4 //------------------------------------------------------------------------------
5 
6 #ifndef PS50HW_HPP_
7 #define PS50HW_HPP_
8 
9 #include "DrvGpio.hpp"
10 #include "DrvI2cMaster.hpp"
11 #include "LSM303DLHC.hpp"
12 
13 class Hw {
14 public:
15  static void init();
16 
17  static DrvGpio sLed3;
18  static DrvGpio sLed4;
19  static DrvGpio sLed5;
20  static DrvGpio sLed6;
21  static DrvGpio sLed7;
22  static DrvGpio sLed8;
23  static DrvGpio sLed9;
24  static DrvGpio sLed10;
25  static DrvI2cMaster sI2cLsm303dlhc;
26  static LSM303DLHC sLsm303dlhc;
27 };
28 
29 #endif /* PS50HW_HPP_ */