Removed reliance on the core/net/ipv4 module
This commit is contained in:
parent
7a740b382f
commit
112e0d6855
|
@ -66,7 +66,6 @@
|
|||
*/
|
||||
|
||||
#include "uip.h"
|
||||
#include "uip-fw.h"
|
||||
#include "slipdev.h"
|
||||
#include <string.h> /* For memcpy() */
|
||||
|
||||
|
@ -89,7 +88,7 @@ static uint8_t lastc;
|
|||
* from the uip_buf buffer, and the following bytes (the application
|
||||
* data) are read from the uip_appdata buffer.
|
||||
*
|
||||
* \return This function will always return UIP_FW_OK.
|
||||
* \return This function will always return 0.
|
||||
*/
|
||||
/*-----------------------------------------------------------------------------------*/
|
||||
uint8_t
|
||||
|
@ -123,7 +122,7 @@ slipdev_send(void)
|
|||
}
|
||||
slipdev_char_put(SLIP_END);
|
||||
|
||||
return UIP_FW_OK;
|
||||
return 0;
|
||||
}
|
||||
/*-----------------------------------------------------------------------------------*/
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue