9#include "cueos_config.h"
10#include "leds_driver.h"
11#include "ethernet_driver.h"
21static net_s this = NET_DEFAULT;
22osSemaphoreId_t ethernetif_LinkSemaphore = NULL;
24const osThreadAttr_t ethernetif_LinkThr_attr = ETHERNETIF_LINKTHR_ATTR;
32#if cueOS_CONFIG_NET_USE_DHCP
38static void _net_set_ip(
void *arg){
47 if(netif_is_link_up(&gnetif) && (dhcp_supplied_address(&gnetif))){
48 this.ip_addr = gnetif.ip_addr;
49 this.gateway = gnetif.gw;
50 this.netmask = gnetif.netmask;
51 this.net_ready_callback();
72static void _net_setup_ethernetif(
void){
74 netif_add(&this.ethernetif, &this.ip_addr, &this.netmask, &this.gateway, NULL, &
ethernetif_init, &tcpip_input);
75 netif_set_default(&this.ethernetif);
76 netif_is_link_up(&this.ethernetif) ? netif_set_up(&this.ethernetif) : netif_set_down(&this.ethernetif);
78 netif_set_link_callback(&this.ethernetif, ethernetif_update_config);
80 ethernetif_LinkSemaphore = osSemaphoreNew(1, 1, NULL);
82 const osThreadAttr_t attr = {
83 .priority = osPriorityNormal,
84 .stack_size = configMINIMAL_STACK_SIZE * 2
87 ethernetif_link_arg.netif = &this.ethernetif;
88 ethernetif_link_arg.semaphore = ethernetif_LinkSemaphore;
92#if cueOS_CONFIG_NET_USE_DHCP
93 osThreadNew(_net_set_ip, NULL, NULL);
94 netif_set_up(&this.ethernetif);
95 dhcp_start(&this.ethernetif);
111static void _net_setup_wirelessif(
void){
120static void _net_setup_if(
void *arg){
121 _net_setup_ethernetif();
122 _net_setup_wirelessif();
139#if cueOS_CONFIG_NET_USE_DHCP
140 IP4_ADDR(&this.ip_addr, 0, 0, 0, 0);
141 IP4_ADDR(&this.gateway, 0, 0, 0, 0);
142 IP4_ADDR(&this.netmask, 0, 0, 0, 0);
144 IP4_ADDR(&this.ip_addr, cueOS_CONFIG_NET_STATIC_IP_0,
145 cueOS_CONFIG_NET_STATIC_IP_1,
146 cueOS_CONFIG_NET_STATIC_IP_2,
147 cueOS_CONFIG_NET_STATIC_IP_3);
149 IP4_ADDR(&this.gateway, cueOS_CONFIG_NET_STATIC_GW_0,
150 cueOS_CONFIG_NET_STATIC_GW_1,
151 cueOS_CONFIG_NET_STATIC_GW_2,
152 cueOS_CONFIG_NET_STATIC_GW_3);
154 IP4_ADDR(&this.netmask, cueOS_CONFIG_NET_STATIC_NM_0,
155 cueOS_CONFIG_NET_STATIC_NM_1,
156 cueOS_CONFIG_NET_STATIC_NM_2,
157 cueOS_CONFIG_NET_STATIC_NM_3);
159 this.net_ready_callback = net_ready_callback;
160 tcpip_init(_net_setup_if, NULL);
169 return (this.mode ==
NET_MODE_ETHERNET ? this.ethernetif.ip_addr :
this.wirelessif.ip_addr);
178 return (this.mode ==
NET_MODE_ETHERNET ? this.ethernetif.gw :
this.wirelessif.gw);
193 netif_set_down(&this.wirelessif);
194 netif_set_default(&this.ethernetif);
195 netif_set_up(&this.ethernetif);
199 netif_set_down(&this.ethernetif);
200 netif_set_default(&this.wirelessif);
201 netif_set_up(&this.wirelessif);
217#if cueOS_CONFIG_NET_USE_DHCP
218 dhcp_network_changed(netif);
224 this.net_ready_callback();
void ethernetif_notify_conn_changed(struct netif *netif)
Function called on ethernet interface link change.
err_t ethernetif_init(struct netif *netif)
void ethernetif_set_link(void *argument)
This function sets the netif link status.
void leds_driver_set(led_driver_led_e led, led_driver_led_state_e state)
Assigns a state to a driver's led.
net_mode_e
used to set net's prefferred/current network interface
void net_init(net_mode_e mode, void *net_ready_callback)
Initialises network.
ip4_addr_t net_get_ip_addr(void)
Returns the active network interface IP address.
void net_set_mode(net_mode_e mode)
Sets the network mode to either ethernet or wireless.
ip4_addr_t net_get_gateway(void)
Returns the active network interface gateway address.
Structure that include link thread parameters.
Defines the system's network interfaces.