options.h 507 B

12345678910111213141516171819
  1. /*
  2. control optional behaviour in the firmware at build time
  3. */
  4. // enable WiFi NAN support
  5. #define AP_WIFI_NAN_ENABLED 1
  6. // enable bluetooth 4 and 5 support
  7. #define AP_BLE_ENABLED 1
  8. // start sending packets as soon we we power up,
  9. // not waiting for location data from flight controller
  10. #define AP_BROADCAST_ON_POWER_UP 1
  11. // do we support DroneCAN connnection to flight controller?
  12. #define AP_DRONECAN_ENABLED 1
  13. // do we support MAVLink connnection to flight controller?
  14. #define AP_MAVLINK_ENABLED 1