2013-11-27 16:28:31 +01:00
|
|
|
/*
|
2014-04-22 15:05:35 +02:00
|
|
|
* Copyright (C) 2014 Freie Universität Berlin
|
2013-11-27 16:28:31 +01:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2013-06-18 17:21:38 +02:00
|
|
|
/**
|
2013-11-27 16:28:31 +01:00
|
|
|
* @defgroup core_io IO Interface
|
|
|
|
* @brief Interface to system io functions
|
|
|
|
* @ingroup core
|
2013-06-18 17:21:38 +02:00
|
|
|
* @{
|
2013-11-27 16:28:31 +01:00
|
|
|
*
|
2013-06-18 17:21:38 +02:00
|
|
|
* @file io.h
|
2013-11-27 16:28:31 +01:00
|
|
|
* @brief Prototypes for system io functions
|
|
|
|
*
|
2013-06-18 17:21:38 +02:00
|
|
|
* @author INRIA
|
2013-11-27 16:28:31 +01:00
|
|
|
* @author Oliver Hahm <oliver.hahm@inria.fr>
|
2013-06-18 17:21:38 +02:00
|
|
|
*/
|
|
|
|
|
2012-11-09 00:56:03 +01:00
|
|
|
#ifndef IO_H
|
|
|
|
#define IO_H
|
|
|
|
|
2014-04-22 15:05:35 +02:00
|
|
|
/**
|
|
|
|
* @brief Firmware putstring implementation
|
|
|
|
*
|
|
|
|
* @param[in] data charachters to be written
|
|
|
|
* @param[in] count number of charachters to be written
|
|
|
|
*/
|
2013-06-20 18:18:29 +02:00
|
|
|
int fw_puts(char *data, int count);
|
2012-11-09 00:56:03 +01:00
|
|
|
|
2013-11-27 17:54:30 +01:00
|
|
|
/** @} */
|
2012-11-09 00:56:03 +01:00
|
|
|
#endif /* IO_H */
|