SPIKE-RT C API Reference [Japanese]
An RTOS-based software platform for LEGO® Education SPIKE™.
読み取り中…
検索中…
一致する文字列を見つけられません
libcpp.h
1/*
2 * libcpp/libcpp.h
3 * Copyright (c) 2026 Embedded Technology Software Design Robot Contest
4 */
5
6#ifndef _LIBCPP_LIBCPP_H_
7#define _LIBCPP_LIBCPP_H_
8
9#ifdef __cplusplus
10extern "C" {
11#endif
12
13#include <stdbool.h>
14bool libcpp_is_ready(void);
15
16#define libcpp_sync() while (!libcpp_is_ready()) dly_tsk(100*1000)
17
18#ifdef __cplusplus
19}
20#endif
21
22#endif