remove classname

This commit is contained in:
Simon Helson
2025-07-13 14:50:33 +12:00
parent 1e95711b1d
commit 126c0174a1

View File

@@ -33,7 +33,7 @@ class CST9217Touchscreen : public touchscreen::Touchscreen, public i2c::I2CDevic
void set_reset_pin(GPIOPin *pin) { this->reset_pin_ = pin; } void set_reset_pin(GPIOPin *pin) { this->reset_pin_ = pin; }
protected: protected:
void CST9217Touchscreen::reset_device_(); void reset_device_();
// Internal buffer to read touch data // Internal buffer to read touch data
uint8_t touch_data_[CST9217_DATA_LENGTH]; // Sufficient for 2 touch points (8 bytes each) + header uint8_t touch_data_[CST9217_DATA_LENGTH]; // Sufficient for 2 touch points (8 bytes each) + header
InternalGPIOPin *interrupt_pin_{}; InternalGPIOPin *interrupt_pin_{};