This is a port of the mruby/c tutorial Chapter 03 to the mbed environment.

Dependencies:   mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers console.h Source File

console.h

Go to the documentation of this file.
00001 /*! @file
00002   @brief
00003 
00004 
00005   <pre>
00006   Copyright (C) 2015 Kyushu Institute of Technology.
00007   Copyright (C) 2015 Shimane IT Open-Innovation Center.
00008 
00009   This file is distributed under BSD 3-Clause License.
00010 
00011 
00012   </pre>
00013 */
00014 
00015 #ifndef MRBC_SRC_CONSOLE_H_
00016 #define MRBC_SRC_CONSOLE_H_
00017 
00018 #ifdef __cplusplus
00019 extern "C" {
00020 #endif
00021 
00022 void console_putchar (const char c);
00023 void console_print (const char *str);
00024 void console_printf (const char *fmt, ...);
00025 
00026 #ifdef __cplusplus
00027 }
00028 #endif
00029 #endif
00030