Porting: SPI

void begin(int busNo)

Start SPI

uint8_t transfer(uint8_t tx_)

Transfer a single byte

Parameters
uint8_t tx_

Byte to send

Returns

Data returned via spi

void transfernb(char *tbuf, char *rbuf, uint32_t len)

Transfer a buffer of data

Parameters
char *tbuf

Transmit buffer

char *rbuf

Receive buffer

uint32_t len

Length of the data

void transfern(char *buf, uint32_t len)

Transfer a buffer of data without an rx buffer

Parameters
char *buf

Pointer to a buffer of data

uint32_t len

Length of the data

spi.h

utility/Template/spi.h
/**
 * @file spi.h
 * Class declaration for SPI helper files
 */

/**
 * Example of spi.h class declaration for SPI portability
 *
 * @defgroup Porting_SPI Porting: SPI
 * @{
 */
#ifndef RF24_UTILITY_TEMPLATE_SPI_H_
#define RF24_UTILITY_TEMPLATE_SPI_H_

#include <string>
#include <stdint.h>
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
#include <getopt.h>
#include <fcntl.h>
#include <sys/ioctl.h>
#include <inttypes.h>
#include <linux/types.h>
#include <linux/spi/spidev.h>

using namespace std;

#ifndef DOXYGEN_FORCED
// exclude this line from the docs to prevent displaying in the list of classes
class SPI
#endif
{

public:
    /**
	 * SPI constructor
	 */
    SPI();

    /**
	 * Start SPI
	 */
    void begin(int busNo);

    /**
	 * Transfer a single byte
	 * @param tx_ Byte to send
	 * @return Data returned via spi
	 */
    uint8_t transfer(uint8_t tx_);

    /**
	 * Transfer a buffer of data
	 * @param tbuf Transmit buffer
	 * @param rbuf Receive buffer
	 * @param len Length of the data
	 */
    void transfernb(char* tbuf, char* rbuf, uint32_t len);

    /**
	 * Transfer a buffer of data without an rx buffer
	 * @param buf Pointer to a buffer of data
	 * @param len Length of the data
	 */
    void transfern(char* buf, uint32_t len);

#ifndef DOXYGEN_FORCED
    // exclude this line from the docs to prevent warnings docs generators
    virtual ~SPI();
#endif

private:
    /** Default SPI device */
    string device;
    /** SPI Mode set */
    uint8_t mode;
    /** word size*/
    uint8_t bits;
    /** Set SPI speed*/
    uint32_t speed;
    int fd;

    void init();
};

/**@}*/

#endif // RF24_UTILITY_TEMPLATE_SPI_H_