|
struct | net |
| Defines the system's network interfaces. More...
|
|
High level multi-interfaces network controller
◆ ETHERNETIF_LINKTHR_ATTR
#define ETHERNETIF_LINKTHR_ATTR {.stack_size = 128,.priority = (osPriority_t) osPriorityNormal} |
Definition at line 21 of file net.h.
◆ NET_DEFAULT
Definition at line 20 of file net.h.
◆ net_s
Defines the system's network interfaces.
The system is able to switch between wirelless and wired ethernet configuration. Network configuration address may be set static or provided through DHCP.
- See also
- cueosCONFIG.h for further information relative to network configuration
◆ net_bound_state_e
conveys information regarding the network's DHCP state
Enumerator |
---|
NET_BOUND | DHCP state is bound (IP found)
|
NET_UNBOUND | DHCP state is bound (No IP found)
|
Definition at line 27 of file net.h.
◆ net_link_state_e
conveys information relative the network's link state
Enumerator |
---|
NET_LINK_UP | The network is up
|
NET_LINK_DOWN | The network is down
|
Definition at line 35 of file net.h.
◆ net_mode_e
used to set net's prefferred/current network interface
Enumerator |
---|
NET_MODE_ETHERNET | Use ethernet
|
NET_MODE_WIRELESS | Use wifi
|
Definition at line 43 of file net.h.
◆ net_get_gateway()
ip4_addr_t net_get_gateway |
( |
void |
| ) |
|
Returns the active network interface gateway address.
- Returns
- ip4_addr_t the interface's gateway address
Definition at line 177 of file net.c.
◆ net_get_ip_addr()
ip4_addr_t net_get_ip_addr |
( |
void |
| ) |
|
Returns the active network interface IP address.
- Returns
- ip4_addr_t the interface's IP address
Definition at line 168 of file net.c.
◆ net_init()
void net_init |
( |
net_mode_e |
mode, |
|
|
void * |
net_ready_callback |
|
) |
| |
Initialises network.
- Parameters
-
mode | the network mode (either ethernet or wireless) |
*net_ready_callback | callback function to be called on initialisation success |
Definition at line 138 of file net.c.
◆ net_set_mode()
Sets the network mode to either ethernet or wireless.
- Parameters
-
- See also
- net.h for further information regarding available modes
Definition at line 187 of file net.c.