Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Feature Request] Make Wire library methods virtual #31

Open
simonnilsson opened this issue Apr 2, 2019 · 6 comments
Open

[Feature Request] Make Wire library methods virtual #31

simonnilsson opened this issue Apr 2, 2019 · 6 comments

Comments

@simonnilsson
Copy link

I suggest making the public methods of the TwoWire class virtual in order to allow polymorphism when subclassing it.

Use case: Have another library that utilizes the Wire library and takes a refrence to a TwoWire instance in constructor. Want to use it on pins without hardware I2C (or other reason for not wanting to use the standard Wire implementation). So I want to pass another class instance that inherits from TwoWire and implements the same methods (but uses software I2C). This does not work with current implementation because of early binding (the base class functions will be called instead of the ones in subclass).

Moved from: arduino/Arduino#8734

@matthijskooijman
Copy link
Collaborator

Note that there might be a significant performance impact (in particular, extra runtime, extra memory for vtables and possibly less opportunity for the compiler to optimize). With the newer compiler versions we're using now and lto enabled, gcc might be able to do devirtualization optimizations to remove the overhead when just using a single subclass, but that something that should be checked (since I know gcc can do it, but in the past it would only catch very obvious cases IIRC).

@PaulStoffregen
Copy link

Regarding devirtualization and other C++ optimizations, experience from Teensy has shown the compiler does much better when the class uses a constexpr constructor.

@AxTheB
Copy link

AxTheB commented Jan 16, 2020

I have more concrete use-case for this request: I want to use more i2c devices with same hard coded address (in my case more than two of adaftruit's BME280). Adafruit's library supports it, the SoftwareWire library supports it (needs trivial splitting of few functions), and Wire.h is already halfway there - read and write (and few others) are virtual, beginTransmission, beginTransmission and requestFrom are not).

@Testato
Copy link

Testato commented Mar 2, 2020

+1

@SukkoPera
Copy link

SukkoPera commented Mar 3, 2020

I absolutely second this request. I don't think it can cause any harm (the class is already virtual due to inheritance from Print) and it would open up a lot of possibilities.

For instance, this MCP23017 interface library has the possibility to use an alternative i2c library implementation, such as this one, but this feature currently cannot be used for any useful purpose due to the issue detailed here.

(Something similar should probably be done for the SPI library.)

@bxparks
Copy link

bxparks commented May 26, 2021

See arduino/ArduinoCore-avr#331 where it was merged, then reverted, due to significant increase in flash memory consumption, just as @matthijskooijman warned above.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

7 participants