2014-11-13 13:55:58 -08:00
|
|
|
/*
|
|
|
|
|
* Author: Thomas Ingleby <thomas.c.ingleby@intel.com>
|
|
|
|
|
* Copyright (c) 2014 Intel Corporation.
|
|
|
|
|
*
|
2019-05-09 09:47:11 -07:00
|
|
|
* SPDX-License-Identifier: MIT
|
2014-11-13 13:55:58 -08:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#include "mraa_internal.h"
|
|
|
|
|
|
|
|
|
|
// +1 as pins are "1 indexed"
|
|
|
|
|
#define MRAA_INTEL_MINNOW_MAX_PINCOUNT (26 + 1)
|
2016-01-25 13:19:45 +02:00
|
|
|
#define MRAA_INTEL_MINNOW_TURBOT_PINCOUNT (27 + 1)
|
2014-11-13 13:55:58 -08:00
|
|
|
|
|
|
|
|
mraa_board_t*
|
2016-01-20 15:58:06 +00:00
|
|
|
mraa_intel_minnowboard_byt_compatible(mraa_boolean_t);
|
2014-11-13 13:55:58 -08:00
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|