pwm period is now 200us instead of the default 20ms veml6040 config is now AF_BIT | TRIG_BIT

Dependencies:   mbed MMA8451Q USBDevice WakeUp vt100

Fork of afero_node_suntory_2017_06_15 by Orefatoi

spi/mbedSPI.h

Committer:
wataloh
Date:
2017-01-19
Revision:
1:b2a9a6f2c30e
Parent:
0:20bce0dcc921

File content as of revision 1:b2a9a6f2c30e:

#ifndef _MBEDSPI_H_
#define _MBEDSPI_H_

#include "mbed.h"
#include "afSPI.h"
#include "Preferences.hpp"

class mbedSPI : public afSPI {
    public:
        mbedSPI();
        virtual void begin();
        virtual void beginSPI();
        virtual void endSPI();
        virtual void transfer(char *bytes,int len);
    private:
        SPI spi;
        DigitalOut cs;
};

#endif //_MBEDSPI_H_