mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
b6bd067863
* also added a trailing underscore to header guards for consistency Commit for PR 2623, repairing header file include guards. This PR is intended to fix the include guards in files under RIOT/boards SQUASH ME: fix underscore removal overdos SQUASH ME: consistent macro naming SQUASH ME: missed that one SQUASH ME: fixed overdo SQUASH ME: consistency
38 lines
852 B
C
38 lines
852 B
C
/*
|
|
* Copyright (C) 2013, 2014 Ludwig Ortmann
|
|
*
|
|
* This file is subject to the terms and conditions of the GNU Lesser
|
|
* General Public License v2.1. See the file LICENSE in the top level
|
|
* directory for more details.
|
|
*/
|
|
|
|
#ifndef BOARD_INTERNAL_H_
|
|
#define BOARD_INTERNAL_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifdef MODULE_UART0
|
|
#include <sys/select.h>
|
|
void _native_handle_uart0_input(void);
|
|
/**
|
|
* @brief: initialize uart0
|
|
*
|
|
* @param stdiotype: "stdio", "tcp", "udp" io redirection
|
|
* @param ioparam: a string containing a port number if stdiotype is tcp
|
|
*/
|
|
void _native_init_uart0(char *stdiotype, char *ioparam, int replay);
|
|
int _native_set_uart_fds(void);
|
|
#endif /* MODULE_UART0 */
|
|
|
|
extern int _native_null_out_file;
|
|
extern int _native_null_in_pipe[2];
|
|
void board_init(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* BOARD_INTERNAL_H */
|