2024-02-01 01:45:16 -04:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <AP_HAL/AP_HAL_Boards.h>
|
|
|
|
|
|
|
|
#ifndef AP_RADIO_ENABLED
|
2024-05-01 00:23:46 -03:00
|
|
|
#define AP_RADIO_ENABLED 0
|
2024-02-01 01:45:16 -04:00
|
|
|
#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
|