SPIKE-RT C API Reference [Japanese]
An RTOS-based software platform for LEGO® Education SPIKE™.
読み取り中…
検索中…
一致する文字列を見つけられません
newlib.h
[詳解]
1/*
2 * SPDX-License-Identifier: MIT
3 *
4 * Header for Serial.
5 *
6 * Copyright (c) 2025 Embedded and Real-Time Systems Laboratory,
7 * Graduate School of Information Science, Nagoya Univ., JAPAN
8 */
9
29#ifndef _SERIAL_NEWLIB_H_
30#define _SERIAL_NEWLIB_H_
31
32#ifdef __cplusplus
33extern "C" {
34#endif
35
36#include <t_stddef.h>
37#include <serial/serial.h>
38
39extern FILE *serial_open_newlib_file(ID sio_portid);
40
41#ifdef __cplusplus
42}
43#endif
44
45#endif // _SERIAL_NEWLIB_H_
46
Serial.