mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
35 lines
746 B
C
35 lines
746 B
C
/*
|
|
* Copyright (C) 2014 Freie Universität Berlin
|
|
*
|
|
* This file subject to the terms and conditions of the GNU Lesser General
|
|
* Public License. See the file LICENSE in the top level directory for more
|
|
* details.
|
|
*/
|
|
|
|
/**
|
|
* @defgroup core_io IO Interface
|
|
* @brief Interface to system io functions
|
|
* @ingroup core
|
|
* @{
|
|
*
|
|
* @file io.h
|
|
* @brief Prototypes for system io functions
|
|
*
|
|
* @author INRIA
|
|
* @author Oliver Hahm <oliver.hahm@inria.fr>
|
|
*/
|
|
|
|
#ifndef IO_H
|
|
#define IO_H
|
|
|
|
/**
|
|
* @brief Firmware putstring implementation
|
|
*
|
|
* @param[in] data charachters to be written
|
|
* @param[in] count number of charachters to be written
|
|
*/
|
|
int fw_puts(char *data, int count);
|
|
|
|
/** @} */
|
|
#endif /* IO_H */
|