SPIKE-RT C API Reference [English]
An RTOS-based software platform for LEGO® Education SPIKE™.
Loading...
Searching...
No Matches
system.h
1// SPDX-License-Identifier: MIT
2/*
3 * API for the hub built-in status light.
4 *
5 * Copyright (c) 2022 Embedded and Real-Time Systems Laboratory,
6 * Graduate School of Information Science, Nagoya Univ., JAPAN
7 */
8
34#ifndef _HUB_SYSTEM_H_
35#define _HUB_SYSTEM_H_
36
37#ifdef __cplusplus
38extern "C" {
39#endif
40
41#include <stdint.h>
42
52void hub_system_shutdown(void);
53
54#ifdef __cplusplus
55}
56#endif
57
58#endif // _HUB_SYSTEM_H_
59
void hub_system_shutdown(void)
Shut down the system.
Definition system.c:18