Split factory reset into config and device variants (#4427)

* Split factory reset into config and device variants

* Trunk

* Default only in header
This commit is contained in:
Ben Meadors
2024-08-09 08:38:29 -05:00
committed by GitHub
parent 3ab4bebdcb
commit 3878e025e4
3 changed files with 21 additions and 12 deletions

View File

@@ -162,12 +162,18 @@ bool AdminModule::handleReceivedProtobuf(const meshtastic_MeshPacket &mp, meshta
handleGetDeviceMetadata(mp);
break;
}
case meshtastic_AdminMessage_factory_reset_tag: {
LOG_INFO("Initiating factory reset\n");
case meshtastic_AdminMessage_factory_reset_config_tag: {
LOG_INFO("Initiating factory config reset\n");
nodeDB->factoryReset();
reboot(DEFAULT_REBOOT_SECONDS);
break;
}
case meshtastic_AdminMessage_factory_reset_device_tag: {
LOG_INFO("Initiating full factory reset\n");
nodeDB->factoryReset(true);
reboot(DEFAULT_REBOOT_SECONDS);
break;
}
case meshtastic_AdminMessage_nodedb_reset_tag: {
LOG_INFO("Initiating node-db reset\n");
nodeDB->resetNodes();