ardupilot/libraries/AP_Radio/AP_Radio_config.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
558 B
C
Raw Normal View History

2024-02-01 01:45:16 -04:00
#pragma once
#include <AP_HAL/AP_HAL_Boards.h>
#ifndef AP_RADIO_ENABLED
#define AP_RADIO_ENABLED HAL_RCINPUT_WITH_AP_RADIO
#endif
#ifndef AP_RADIO_BACKEND_DEFAULT_ENABLED
#define AP_RADIO_BACKEND_DEFAULT_ENABLED AP_RADIO_ENABLED
#endif
#ifndef AP_RADIO_CC2500_ENABLED
#define AP_RADIO_CC2500_ENABLED AP_RADIO_BACKEND_DEFAULT_ENABLED
#endif
#ifndef AP_RADIO_CYRF6936_ENABLED
#define AP_RADIO_CYRF6936_ENABLED AP_RADIO_BACKEND_DEFAULT_ENABLED
#endif
#ifndef AP_RADIO_BK2425_ENABLED
#define AP_RADIO_BK2425_ENABLED AP_RADIO_BACKEND_DEFAULT_ENABLED
#endif