Release candidate version. The pointer in GAS Pressure display is changed to a triangle.

Dependencies:   UniGraphic mbed vt100

Please note, at 2-Mar-2018 the current version of mbed-lib has a defect in Ticker.
https://os.mbed.com/forum/bugs-suggestions/topic/29287/

So, mbed lib version 157 is intentionally being used.
Please do not update mbed library until the problem in the above URL is fixed.

In this version, format of GAS Pressure Display has been changed.
/media/uploads/Rhyme/low.jpg

/media/uploads/Rhyme/good.jpg

/media/uploads/Rhyme/high.jpg

moto

Committer:
Rhyme
Date:
Fri Mar 02 07:56:09 2018 +0000
Revision:
0:774324cbc5a6
Release candidate version. GAS Pressure pointer is now a triangle.; Some source file clean-up was done.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Rhyme 0:774324cbc5a6 1 #ifndef _MBEDSPI_H_
Rhyme 0:774324cbc5a6 2 #define _MBEDSPI_H_
Rhyme 0:774324cbc5a6 3 #include "mbed.h"
Rhyme 0:774324cbc5a6 4 #include "afSPI.h"
Rhyme 0:774324cbc5a6 5
Rhyme 0:774324cbc5a6 6 class mbedSPI : public afSPI {
Rhyme 0:774324cbc5a6 7 public:
Rhyme 0:774324cbc5a6 8 mbedSPI(PinName mosi, PinName miso, PinName sckl, PinName cs) ;
Rhyme 0:774324cbc5a6 9 virtual void begin() ;
Rhyme 0:774324cbc5a6 10 virtual void beginSPI() ;
Rhyme 0:774324cbc5a6 11 virtual void endSPI() ;
Rhyme 0:774324cbc5a6 12 virtual void transfer(char *bytes,int len) ;
Rhyme 0:774324cbc5a6 13 private:
Rhyme 0:774324cbc5a6 14 SPI _spi ;
Rhyme 0:774324cbc5a6 15 DigitalOut _cs ;
Rhyme 0:774324cbc5a6 16 } ;
Rhyme 0:774324cbc5a6 17
Rhyme 0:774324cbc5a6 18
Rhyme 0:774324cbc5a6 19 #endif /* _MBEDSPI_H_ */