Skip to content

Commit

Permalink
Fix strain2 compilation (robotology#343)
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicogene authored and valegagge committed May 5, 2023
1 parent 15d7c74 commit c6cb101
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions emBODY/eBcode/arch-arm/board/strain2/bsp/embot_hw_bsp_strain2.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
/*
* Copyright (C) 2023 iCub Tech - Istituto Italiano di Tecnologia
* Author: Marco Accame
* email: [email protected]
*/

// - include guard ----------------------------------------------------------------------------------------------------

#ifndef _EMBOT_HW_BSP_STRAIN2_H_
#define _EMBOT_HW_BSP_STRAIN2_H_

#include "embot_core.h"
#include "embot_hw_types.h"

#include "embot_hw_led.h"
#include "embot_hw_si7051.h"
#include "embot_hw_bno055.h"
#include "embot_hw_pga308.h"

namespace embot { namespace hw { namespace bsp { namespace strain2 {

// adds in here constants or functions specific to the board
const embot::hw::LED ledBLUE = embot::hw::LED::one;
const embot::hw::SI7051 thermometerSGAUGES = embot::hw::SI7051::one;
const embot::hw::si7051::Config thermometerSGAUGESconfig {};
const embot::hw::BNO055 imuBOSCH = embot::hw::BNO055::one;
const embot::hw::bno055::Config imuBOSCHconfig {};

}}}}

#endif // include-guard


// - end-of-file (leave a blank line after)----------------------------------------------------------------------------



0 comments on commit c6cb101

Please sign in to comment.