Clarify that when rebooting is not implemented some settings may not apply (#2688)

Co-authored-by: Ben Meadors <benmmeadors@gmail.com>
This commit is contained in:
GUVWAF
2023-08-07 22:16:56 +02:00
committed by GitHub
parent f026c3308c
commit a5f3dea40b

View File

@@ -16,7 +16,7 @@ void powerCommandsCheck()
rp2040.reboot(); rp2040.reboot();
#else #else
rebootAtMsec = -1; rebootAtMsec = -1;
LOG_WARN("FIXME implement reboot for this platform. Skipping for now.\n"); LOG_WARN("FIXME implement reboot for this platform. Note that some settings require a restart to be applied.\n");
#endif #endif
} }