From 7eaf8d6aedd300da8eb4e9d911c4ce9b2fa97cf7 Mon Sep 17 00:00:00 2001 From: Raptor Engineering Development Team Date: Wed, 24 Jan 2018 21:59:42 -0600 Subject: Add fan shutdown option to stop rotors after chassis powerdown --- control/manager.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'control/manager.cpp') diff --git a/control/manager.cpp b/control/manager.cpp index d5f97d7..e48981d 100644 --- a/control/manager.cpp +++ b/control/manager.cpp @@ -1,5 +1,6 @@ /** * Copyright © 2017 IBM Corporation + * Copyright © 2017-2018 Raptor Engineering, LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -169,6 +170,13 @@ void Manager::doInit() startFanControlReadyTarget(); } +void Manager::doShutdown() +{ + for (auto& z : _zones) + { + z.second->disableRotors(); + } +} void Manager::startFanControlReadyTarget() { -- cgit v1.2.1