Drop C-style 'void' argument
This commit is contained in:
@@ -40,11 +40,11 @@ enum XPTCoordinate : uint8_t {
|
||||
|
||||
class XPT2046 {
|
||||
public:
|
||||
static void init(void);
|
||||
static void init();
|
||||
static uint8_t read_buttons();
|
||||
bool getTouchPoint(uint16_t &x, uint16_t &y);
|
||||
static bool isTouched();
|
||||
inline void waitForRelease(void) { while (isTouched()) { /* nada */ } }
|
||||
inline void waitForRelease() { while (isTouched()) { /* nada */ } }
|
||||
inline void waitForTouch(uint16_t &x, uint16_t &y) { while (!getTouchPoint(x, y)) { /* nada */ } }
|
||||
private:
|
||||
static uint16_t getInTouch(const XPTCoordinate coordinate);
|
||||
|
||||
Reference in New Issue
Block a user