mirror of
https://github.com/eclipse/upm.git
synced 2025-07-05 03:11:15 +03:00
firmata: extended data types on pins to allow subplatform usage
Signed-off-by: Mihai Tudor Panu <mihai.tudor.panu@intel.com>
This commit is contained in:
@ -35,7 +35,7 @@
|
||||
using namespace upm;
|
||||
using namespace std;
|
||||
|
||||
SSD1351::SSD1351 (uint8_t oc, uint8_t dc, uint8_t rst) :
|
||||
SSD1351::SSD1351 (int oc, int dc, int rst) :
|
||||
GFX(SSD1351WIDTH, SSD1351HEIGHT),
|
||||
m_spi(0), m_oc(oc), m_dc(dc), m_rst(rst) {
|
||||
|
||||
|
@ -112,7 +112,7 @@ class SSD1351 : public GFX{
|
||||
* @param dc Data/command pin
|
||||
* @param rst Reset pin
|
||||
*/
|
||||
SSD1351 (uint8_t oc, uint8_t dc, uint8_t rst);
|
||||
SSD1351 (int oc, int dc, int rst);
|
||||
|
||||
/**
|
||||
* SSD1351 object destructor
|
||||
|
Reference in New Issue
Block a user