2013-11-28 12:57:41 +01:00
|
|
|
/*
|
2015-08-26 18:45:07 +02:00
|
|
|
* Copyright 2009, 2015 Freie Universität Berlin
|
2014-08-27 18:47:31 +02:00
|
|
|
*
|
|
|
|
* This file is subject to the terms and conditions of the GNU Lesser
|
|
|
|
* General Public License v2.1. See the file LICENSE in the top level
|
|
|
|
* directory for more details.
|
|
|
|
*/
|
2010-09-22 15:10:42 +02:00
|
|
|
|
|
|
|
/**
|
2018-07-26 11:59:14 +02:00
|
|
|
* @ingroup boards_msb430h
|
2013-11-28 12:57:41 +01:00
|
|
|
* @{
|
2010-09-22 15:10:42 +02:00
|
|
|
*
|
2014-10-21 16:52:30 +02:00
|
|
|
* @file
|
2013-11-28 12:57:41 +01:00
|
|
|
* @brief Basic definitions for the MSB-430H board
|
2010-09-22 15:10:42 +02:00
|
|
|
*
|
|
|
|
* @author Freie Universität Berlin, Computer Systems & Telematics, FeuerWhere project
|
2015-08-26 18:45:07 +02:00
|
|
|
* @author Hauke Petersen <hauke.petersen@fu-berlin.de>
|
2010-09-22 15:10:42 +02:00
|
|
|
*/
|
|
|
|
|
2017-05-23 18:19:52 +02:00
|
|
|
#ifndef BOARD_H
|
|
|
|
#define BOARD_H
|
2013-11-28 12:57:41 +01:00
|
|
|
|
2016-03-11 15:24:46 +01:00
|
|
|
#include "board_common.h"
|
|
|
|
|
2014-10-13 15:25:50 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2016-03-15 17:11:47 +01:00
|
|
|
/**
|
|
|
|
* @brief Define the CPU model for the <msp430.h>
|
|
|
|
*/
|
2013-12-09 11:49:00 +01:00
|
|
|
#ifndef __MSP430F1612__
|
|
|
|
#define __MSP430F1612__
|
|
|
|
#endif
|
|
|
|
|
2018-06-13 09:17:29 +02:00
|
|
|
/**
|
|
|
|
* @name Configure on-board SHT11 device
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
#define SHT1X_PARAM_CLK (GPIO_PIN(3, 5))
|
|
|
|
#define SHT1X_PARAM_DATA (GPIO_PIN(3, 4))
|
|
|
|
/** @} */
|
|
|
|
|
2014-10-13 15:25:50 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2010-09-22 15:10:42 +02:00
|
|
|
/** @} */
|
2017-05-23 18:19:52 +02:00
|
|
|
#endif /* BOARD_H */
|