blob: 4990a1c76028c52ca7e42c2bb4386086d9cbc9f7 [file] [log] [blame]
Anthony Wilsond1c35322018-12-12 16:10:35 -06001#pragma once
2
3#include <string>
4
5namespace utility
6{
7
8/** @brief Set the value of a specified gpio
9 *
10 * @param[in] gpioName - GPIO to set
11 * @param[in] activeLow - is pin active at low voltage
12 * @param[in] asserted - is pin in active state
13 *
14 * @return bool - success of setting the GPIO
15 */
16bool gpioSetValue(const std::string& gpioName, bool activeLow, bool asserted)
17{
18 /* TODO */
19 return true;
20}
21
22} // namespace utility