Device: FIRE3: Update disk counts

master
Jonathan Schwartz 2026-02-06 19:32:31 +00:00 committed by Kyle Schwarz
parent 1f10adb760
commit 730aaf5fed
2 changed files with 13 additions and 0 deletions

View File

@ -147,6 +147,10 @@ protected:
return ret; return ret;
} }
size_t getDiskCount() const override {
return 2;
}
bool supportsNetworkMutex() const override { return true; } bool supportsNetworkMutex() const override { return true; }
}; };

View File

@ -102,6 +102,15 @@ protected:
bool supportsEraseMemory() const override { bool supportsEraseMemory() const override {
return true; return true;
} }
size_t getDiskCount() const override {
return 2;
}
bool supportsNetworkMutex() const override {
return true;
}
}; };
} }