2016-01-22 17:02:58 +02:00
|
|
|
/*
|
|
|
|
|
* Author: Karena Anum Kamaruzaman <karena.anum.kamaruzaman@intel.com>
|
|
|
|
|
* Copyright (c) 2016 Intel Corporation.
|
|
|
|
|
*
|
2019-05-09 09:47:11 -07:00
|
|
|
* SPDX-License-Identifier: MIT
|
2016-01-22 17:02:58 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#include "mraa_internal.h"
|
|
|
|
|
|
|
|
|
|
// +1 as pins are "1 indexed"
|
|
|
|
|
#define MRAA_INTEL_CHERRYHILLS_PINCOUNT (5 + 1)
|
|
|
|
|
|
|
|
|
|
mraa_board_t*
|
|
|
|
|
mraa_intel_cherryhills();
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|