| 12345678910111213141516171819202122 |
- /*
- control optional behaviour in the firmware at build time
- */
- #pragma once
- #include "board_config.h"
- // enable WiFi NAN support
- #define AP_WIFI_NAN_ENABLED 1
- // enable bluetooth 4 and 5 support
- #define AP_BLE_ENABLED 1
- // start sending packets as soon we we power up,
- // not waiting for location data from flight controller
- #define AP_BROADCAST_ON_POWER_UP 1
- // do we support DroneCAN connnection to flight controller?
- #define AP_DRONECAN_ENABLED defined(PIN_CAN_TX) && defined(PIN_CAN_RX)
- // do we support MAVLink connnection to flight controller?
- #define AP_MAVLINK_ENABLED 1
|