| UbixOS V2
    2.0
    | 

Go to the source code of this file.
| Macros | |
| #define | SLIP_RX_FROM_ISR 0 | 
| #define | SLIP_RX_QUEUE SLIP_RX_FROM_ISR | 
| #define | SLIP_USE_RX_THREAD !NO_SYS | 
| Functions | |
| err_t | slipif_init (struct netif *netif) | 
| void | slipif_poll (struct netif *netif) | 
SLIP netif API
Definition in file slipif.h.
| #define SLIP_RX_FROM_ISR 0 | 
Set this to 1 to enable functions to pass in RX bytes from ISR context. If enabled, slipif_received_byte[s]() process incoming bytes and put assembled packets on a queue, which is fed into lwIP from slipif_poll(). If disabled, slipif_poll() polls the serial line (using sio_tryread()).
| #define SLIP_RX_QUEUE SLIP_RX_FROM_ISR | 
| #define SLIP_USE_RX_THREAD !NO_SYS | 
Set this to 1 to start a thread that blocks reading on the serial line (using sio_read()).
| void slipif_poll | ( | struct netif * | netif | ) |