We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Beste Thijse, I have troubles using the ATtiny3217 https://github.com/SpenceKonde/megaTinyCore
The error is: 'NVM_STATUS' was not declared in this scope
Note that the standard Arduino library EEPROM.h still works fine on the ATtiny3217, see this sketch:
#include <EEPROM.h> void setup() { Serial.begin(9600); while(!Serial); float f = 123.456f; int eeAddress = 0; EEPROM.put(eeAddress, f); EEPROM.get(eeAddress, f); Serial.println(f, 3); } void loop() { }
So, I think it is not a big compatiblity issue.
I have looked for a solution, but I don’t have enough knowledge of the Arduino platform. Maybe you can talk to Spence Konde what to do.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Beste Thijse,
I have troubles using the ATtiny3217
https://github.com/SpenceKonde/megaTinyCore
The error is:
'NVM_STATUS' was not declared in this scope
Note that the standard Arduino library EEPROM.h still works fine on the ATtiny3217, see this sketch:
So, I think it is not a big compatiblity issue.
I have looked for a solution, but I don’t have enough knowledge of the Arduino platform.
Maybe you can talk to Spence Konde what to do.
The text was updated successfully, but these errors were encountered: