Add files via upload

This commit is contained in:
aster94 2017-12-08 10:32:59 +01:00 committed by GitHub
parent acc6cbc371
commit 4ffdce29fe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 310 additions and 3 deletions

View File

@ -40,7 +40,7 @@
#ifndef _SOFTWIRE_H_
#define _SOFTWIRE_H_
#include "WireBase.h"
#include "utility/WireBase.h"
#include "wirish.h"
/*

View File

@ -25,7 +25,7 @@
*****************************************************************************/
/**
* @file TwoWire.h
* @file Wire.h
* @author Trystan Jones <crenn6977@gmail.com>
* @brief Wire library, uses the hardware I2C available in the Maple to
* interact with I2C slave devices.
@ -39,7 +39,7 @@
#ifndef _TWOWIRE_H_
#define _TWOWIRE_H_
#include "WireBase.h"
#include "utility/WireBase.h"
#include "wirish.h"
#include <libmaple/i2c.h>

View File

@ -0,0 +1,17 @@
#######################################
# Datatypes (KEYWORD1)
#######################################
TwoWire KEYWORD1
SoftWire KEYWORD1
#######################################
# Methods and Functions (KEYWORD2)
#######################################
#######################################
# Constants (LITERAL1)
#######################################
SOFT_STANDARD LITERAL1
SOFT_FAST LITERAL1

View File

@ -0,0 +1,145 @@
/******************************************************************************
* The MIT License
*
* Copyright (c) 2010 LeafLabs LLC.
*
* 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.
*****************************************************************************/
/**
* @file WireBase.cpp
* @author Trystan Jones <crenn6977@gmail.com>
* @brief Wire library, following the majority of the interface from Arduino.
* Provides a 'standard' interface to I2C (two-wire) communication for
* derived classes.
*/
/*
* Library created by crenn to allow a system which would provide users the
* 'standardised' Arduino method for interfacing with I2C devices regardless of
* whether it is I2C hardware or emulating software.
*/
#include "WireBase.h"
#include "wirish.h"
void WireBase::begin(uint8 self_addr) {
tx_buf_idx = 0;
tx_buf_overflow = false;
rx_buf_idx = 0;
rx_buf_len = 0;
}
void WireBase::beginTransmission(uint8 slave_address) {
itc_msg.addr = slave_address;
itc_msg.data = &tx_buf[tx_buf_idx];
itc_msg.length = 0;
itc_msg.flags = 0;
}
void WireBase::beginTransmission(int slave_address) {
beginTransmission((uint8)slave_address);
}
uint8 WireBase::endTransmission(bool stop) {
uint8 retVal;
if (tx_buf_overflow) {
return EDATA;
}
retVal = process(stop);// Changed so that the return value from process is returned by this function see also the return line below
tx_buf_idx = 0;
tx_buf_overflow = false;
return retVal;//SUCCESS;
}
uint8 WireBase::endTransmission(){
endTransmission(true);
}
//TODO: Add the ability to queue messages (adding a boolean to end of function
// call, allows for the Arduino style to stay while also giving the flexibility
// to bulk send
uint8 WireBase::requestFrom(uint8 address, int num_bytes) {
if (num_bytes > BUFFER_LENGTH) {
num_bytes = BUFFER_LENGTH;
}
itc_msg.addr = address;
itc_msg.flags = I2C_MSG_READ;
itc_msg.length = num_bytes;
itc_msg.data = &rx_buf[rx_buf_idx];
process();
rx_buf_len += itc_msg.xferred;
itc_msg.flags = 0;
return rx_buf_len;
}
uint8 WireBase::requestFrom(int address, int numBytes) {
return WireBase::requestFrom((uint8)address, numBytes);
}
void WireBase::write(uint8 value) {
if (tx_buf_idx == BUFFER_LENGTH) {
tx_buf_overflow = true;
return;
}
tx_buf[tx_buf_idx++] = value;
itc_msg.length++;
}
void WireBase::write(uint8* buf, int len) {
for (uint8 i = 0; i < len; i++) {
write(buf[i]);
}
}
void WireBase::write(int value) {
write((uint8)value);
}
void WireBase::write(int* buf, int len) {
write((uint8*)buf, (uint8)len);
}
void WireBase::write(char* buf) {
uint8 *ptr = (uint8*)buf;
while (*ptr) {
write(*ptr);
ptr++;
}
}
uint8 WireBase::available() {
return rx_buf_len - rx_buf_idx;
}
uint8 WireBase::read() {
if (rx_buf_idx == rx_buf_len) {
rx_buf_idx = 0;
rx_buf_len = 0;
return 0;
} else if (rx_buf_idx == (rx_buf_len-1)) {
uint8 temp = rx_buf[rx_buf_idx];
rx_buf_idx = 0;
rx_buf_len = 0;
return temp;
}
return rx_buf[rx_buf_idx++];
}

View File

@ -0,0 +1,145 @@
/******************************************************************************
* The MIT License
*
* Copyright (c) 2010 LeafLabs LLC.
*
* 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.
*****************************************************************************/
/**
* @file WireBase.h
* @author Trystan Jones <crenn6977@gmail.com>
* @brief Wire library, following the majority of the interface from Arduino.
* Provides a 'standard' interface to I2C (two-wire) communication for
* derived classes.
*/
/*
* Library created by crenn to allow a system which would provide users the
* 'standardised' Arduino method for interfacing with I2C devices regardless of
* whether it is I2C hardware or emulating software.
*/
#ifndef _WIREBASE_H_
#define _WIREBASE_H_
#include "wirish.h"
#include <libmaple/i2c.h>
#define BUFFER_LENGTH 32
/* return codes from endTransmission() */
#define SUCCESS 0 /* transmission was successful */
#define EDATA 1 /* too much data */
#define ENACKADDR 2 /* received nack on transmit of address */
#define ENACKTRNS 3 /* received nack on transmit of data */
#define EOTHER 4 /* other error */
class WireBase { // Abstraction is awesome!
protected:
i2c_msg itc_msg;
uint8 rx_buf[BUFFER_LENGTH]; /* receive buffer */
uint8 rx_buf_idx; /* first unread idx in rx_buf */
uint8 rx_buf_len; /* number of bytes read */
uint8 tx_buf[BUFFER_LENGTH]; /* transmit buffer */
uint8 tx_buf_idx; // next idx available in tx_buf, -1 overflow
boolean tx_buf_overflow;
// Force derived classes to define process function
virtual uint8 process(uint8) = 0;
virtual uint8 process() = 0;
public:
WireBase() {}
~WireBase() {}
/*
* Initialises the class interface
*/
// Allow derived classes to overwrite begin function
virtual void begin(uint8 = 0x00);
/*
* Sets up the transmission message to be processed
*/
void beginTransmission(uint8);
/*
* Allow only 8 bit addresses to be used
*/
void beginTransmission(int);
/*
* Call the process function to process the message if the TX
* buffer has not overflowed.
*/
uint8 endTransmission(bool);
uint8 endTransmission(void);
/*
* Request bytes from a slave device and process the request,
* storing into the receiving buffer.
*/
uint8 requestFrom(uint8, int);
/*
* Allow only 8 bit addresses to be used when requesting bytes
*/
uint8 requestFrom(int, int);
/*
* Stack up bytes to be sent when transmitting
*/
void write(uint8);
/*
* Stack up bytes from the array to be sent when transmitting
*/
void write(uint8*, int);
/*
* Ensure that a sending data will only be 8-bit bytes
*/
void write(int);
/*
* Ensure that an array sending data will only be 8-bit bytes
*/
void write(int*, int);
/*
* Stack up bytes from a string to be sent when transmitting
*/
void write(char*);
/*
* Return the amount of bytes that is currently in the receiving buffer
*/
uint8 available();
/*
* Return the value of byte in the receiving buffer that is currently being
* pointed to
*/
uint8 read();
};
#endif // _WIREBASE_H_