Private
Public Access
2
0

grovepi: grovepi subplatform support via i2c

Signed-off-by: Mihai Tudor Panu <mihai.tudor.panu@intel.com>
Signed-off-by: Brendan Le Foll <brendan.le.foll@intel.com>
This commit is contained in:
Mihai Tudor Panu
2017-09-11 07:49:57 -07:00
committed by Brendan Le Foll
parent c6b1b18a9d
commit cc55ee6314
11 changed files with 454 additions and 16 deletions

47
include/grovepi/grovepi.h Normal file
View File

@@ -0,0 +1,47 @@
/*
* Author: Mihai Tudor Panu <mihai.tudor.panu@intel.com>
* Copyright (c) 2017 Intel Corporation.
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
#pragma once
#ifdef __cplusplus
extern "C" {
#endif
#include "i2c.h"
#include "mraa_internal.h"
#define GROVEPI_ADDRESS 0x04
#define GROVEPI_REGISTER 0x01
#define GROVEPI_GPIO_READ 0x01
#define GROVEPI_GPIO_WRITE 0x02
#define GROVEPI_AIO_READ 0x03
#define GROVEPI_PWM 0x04
#define GROVEPI_GPIO_MODE 0x05
#define GROVEPI_FIRMWARE 0x08
mraa_platform_t mraa_grovepi_platform(mraa_board_t* board, const int i2c_bus);
#ifdef __cplusplus
}
#endif