ardupilot/libraries/AP_Networking/AP_Networking_Config.h

63 lines
1.8 KiB
C
Raw Normal View History

2023-07-06 14:46:33 -03:00
#include <AP_HAL/AP_HAL_Boards.h>
#ifndef AP_NETWORKING_ENABLED
#define AP_NETWORKING_ENABLED 0
#endif
2023-11-12 18:09:58 -04:00
#ifndef AP_NETWORKING_BACKEND_DEFAULT_ENABLED
#define AP_NETWORKING_BACKEND_DEFAULT_ENABLED AP_NETWORKING_ENABLED
#endif
// ---------------------------
// Backends
// ---------------------------
#ifndef AP_NETWORKING_BACKEND_CHIBIOS
#define AP_NETWORKING_BACKEND_CHIBIOS AP_NETWORKING_BACKEND_DEFAULT_ENABLED && CONFIG_HAL_BOARD == HAL_BOARD_CHIBIOS
#endif
#define AP_NETWORKING_SOCKETS_ENABLED (HAL_OS_SOCKETS || AP_NETWORKING_BACKEND_CHIBIOS)
// ---------------------------
// IP Features
// ---------------------------
#if AP_NETWORKING_BACKEND_CHIBIOS
2023-07-07 15:15:26 -03:00
#define AP_NETWORKING_DHCP_AVAILABLE LWIP_DHCP
2023-07-06 14:46:33 -03:00
#else
2023-07-07 15:15:26 -03:00
#define AP_NETWORKING_DHCP_AVAILABLE 1 // for non-ChibiOS, assume it's available
2023-07-06 14:46:33 -03:00
#endif
// ---------------------------
// Below are default params
// ---------------------------
// Default DHCP
#ifndef AP_NETWORKING_DEFAULT_DHCP_ENABLE
#define AP_NETWORKING_DEFAULT_DHCP_ENABLE 1
2023-07-06 14:46:33 -03:00
#endif
// Default Static IP Address: 192.168.13.14
#ifndef AP_NETWORKING_DEFAULT_STATIC_IP_ADDR
#define AP_NETWORKING_DEFAULT_STATIC_IP_ADDR "192.168.13.14"
2023-07-06 14:46:33 -03:00
#endif
// Default Netmask: 24
// Note, the netmask is the number of consecutive bits
#ifndef AP_NETWORKING_DEFAULT_NETMASK
2023-07-07 15:15:26 -03:00
#define AP_NETWORKING_DEFAULT_NETMASK 24 // 255.255.255.0 (for 10.0.xxx.xxx or 172.xxx.xxx.xxx type networks)
// #define AP_NETWORKING_DEFAULT_NETMASK 16 // 255.255.0.0 (for 192.168.xxx.xxxx type networks)
2023-07-06 14:46:33 -03:00
#endif
// Default Static IP Address: 192.168.13.1
#ifndef AP_NETWORKING_DEFAULT_STATIC_GW_ADDR
#define AP_NETWORKING_DEFAULT_STATIC_GW_ADDR "192.168.13.1"
2023-07-06 14:46:33 -03:00
#endif
// Default MAC Address: C2:AF:51:03:CF:46
2023-07-07 15:15:26 -03:00
// Note, lower 3 bytes (ADDR3,4,5) will be replaced with the platform UUID
#ifndef AP_NETWORKING_DEFAULT_MAC_ADDR
#define AP_NETWORKING_DEFAULT_MAC_ADDR "C2:AF:51:03:CF:46"
2023-07-06 14:46:33 -03:00
#endif