Signed-off-by: Arora, Jeet <jeet.arora@intel.com> Signed-off-by: Thomas Ingleby <thomas.ingleby@intel.com>
25 lines
344 B
C
25 lines
344 B
C
/*
|
|
* Author: Jeet Arora <jeet.arora@intel.com>
|
|
* Copyright (c) 2021 Intel Corporation.
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "mraa_internal.h"
|
|
|
|
// +1 as pins are "1 indexed"
|
|
#define MRAA_INTEL_ILK_PINCOUNT (40 + 1)
|
|
|
|
mraa_board_t*
|
|
mraa_intel_ilk();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|