blob: fe28b6f26f4ad98946f3c20cd0f27b347e0d72f8 [file] [log] [blame]
/* SPDX-License-Identifier: BSD-3-Clause
*
* Copyright 2020 The Chromium OS Authors. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#include <zephyr.h>
#include <logging/log.h>
#include "io.h"
LOG_MODULE_REGISTER(main);
void main(void)
{
int ret;
ret = gpio_set_level(power_good_led, 1);
if (ret < 0) {
LOG_ERR("Failed to turn on POWER_GOOD, ret = %d.\n", ret);
}
}