@aircast-4g/mavlink
Version:
TypeScript type generator for MAVLink dialects
15 lines (12 loc) • 435 B
TypeScript
import { MessageDefinition } from '../../../core/types.js';
declare const WIFI_CONFIG_AP_ID = 299;
declare const WIFI_CONFIG_AP_CRC_EXTRA = 0;
declare const WifiConfigApDefinition: MessageDefinition;
interface MessageWifiConfigAp {
ssid: string;
password: string;
mode?: number;
response?: number;
}
export { WIFI_CONFIG_AP_CRC_EXTRA, WIFI_CONFIG_AP_ID, WifiConfigApDefinition };
export type { MessageWifiConfigAp };