1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

Merge pull request #3070 from authmillenon/ng_slip/fix/rename-params

ng_slip: rename xbee_params_t to ng_slip_params_t
This commit is contained in:
Oleg Hahm 2015-05-26 19:29:45 +02:00
commit 1bd5a82678
2 changed files with 4 additions and 2 deletions

View File

@ -65,7 +65,7 @@ typedef struct {
typedef struct xbee_params {
uart_t uart; /**< UART interfaced the device is connected to */
uint32_t baudrate; /**< baudrate to use */
} xbee_params_t;
} ng_slip_params_t;
/**
* @brief Initializes a new @ref net_ng_slip control thread for UART device

View File

@ -19,11 +19,13 @@
#ifndef SLIP_PARAMS_H
#define SLIP_PARAMS_H
#include "net/ng_slip.h"
#ifdef __cplusplus
extern "C" {
#endif
static xbee_params_t xbee_params[] = {
static ng_slip_params_t xbee_params[] = {
{
.uart = SLIP_UART,
.baudrate = SLIP_BAUDRATE,