mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-03 06:28:27 -04:00
cbb3e27519
this is a varient of SocketAPM that always uses native sockets (ie. doesn't go via AP_Networking lwip)
15 lines
226 B
C
15 lines
226 B
C
/*
|
|
variant of SocketAPM using either lwip or native sockets
|
|
*/
|
|
#pragma once
|
|
|
|
#include <AP_HAL/AP_HAL.h>
|
|
|
|
#ifndef SOCKET_CLASS_NAME
|
|
#define SOCKET_CLASS_NAME SocketAPM
|
|
#endif
|
|
|
|
#include "Socket.hpp"
|
|
|
|
#undef SOCKET_CLASS_NAME
|