2014-11-21 01:47:16 +00:00
|
|
|
/*
|
|
|
|
|
* Author: Thomas Ingleby <thomas.c.ingleby@intel.com>
|
2015-02-15 12:51:45 +01:00
|
|
|
* Author: Michael Ring <mail@michael-ring.org>
|
2014-11-21 01:47:16 +00:00
|
|
|
* Copyright (c) 2014 Intel Corporation.
|
|
|
|
|
*
|
2019-05-09 09:47:11 -07:00
|
|
|
* SPDX-License-Identifier: MIT
|
2014-11-21 01:47:16 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#include "mraa_internal.h"
|
|
|
|
|
|
2015-02-15 12:51:45 +01:00
|
|
|
#define MRAA_RASPBERRY_PI_B_REV_1_PINCOUNT 27
|
|
|
|
|
#define MRAA_RASPBERRY_PI_AB_REV_2_PINCOUNT 35
|
|
|
|
|
#define MRAA_RASPBERRY_PI2_B_REV_1_PINCOUNT 41
|
|
|
|
|
#define MRAA_RASPBERRY_PI_AB_PLUS_PINCOUNT 41
|
|
|
|
|
#define MRAA_RASPBERRY_PI_COMPUTE_MODULE_PINCOUNT 41
|
2016-08-26 15:49:57 +01:00
|
|
|
#define MRAA_RASPBERRY_PI_ZERO_PINCOUNT 41
|
2017-02-22 10:18:10 +01:00
|
|
|
#define MRAA_RASPBERRY_PI3_B_PINCOUNT 41
|
2017-09-26 11:21:02 -07:00
|
|
|
#define MRAA_RASPBERRY_PI_ZERO_W_PINCOUNT 41
|
2018-09-10 20:34:56 -06:00
|
|
|
#define MRAA_RASPBERRY_PI3_B_PLUS_PINCOUNT 41
|
2018-11-27 13:45:07 -05:00
|
|
|
#define MRAA_RASPBERRY_PI3_A_PLUS_PINCOUNT 41
|
2019-07-20 18:57:00 -06:00
|
|
|
#define MRAA_RASPBERRY_PI4_B_PINCOUNT 41
|
2020-12-28 14:49:09 -07:00
|
|
|
#define MRAA_RASPBERRY_PI_400_PINCOUNT 41
|
2014-11-21 01:47:16 +00:00
|
|
|
|
2015-02-15 12:51:45 +01:00
|
|
|
mraa_board_t *
|
|
|
|
|
mraa_raspberry_pi();
|
2014-11-21 01:47:16 +00:00
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|