We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf5e2b2 commit f3ce8fdCopy full SHA for f3ce8fd
src/Modulino.h
@@ -50,7 +50,7 @@ class Module : public Printable {
50
: address(address), name((char *)name) {}
51
virtual ~Module() {}
52
bool begin() {
53
- if (address == 0xFF) {
+ if (address >= 0x7F) {
54
address = discover() / 2; // divide by 2 to match address in fw main.c
55
}
56
return (address < 0x7F);
0 commit comments