remove hw_available_fpc_usart_btaddon

This commit is contained in:
Philippe Teuwen 2019-05-08 00:06:12 +02:00
parent 02ea378e38
commit 6401452eb6
2 changed files with 0 additions and 7 deletions

View file

@ -461,11 +461,8 @@ void SendCapabilities(void) {
#endif
#ifdef WITH_FPC_USART_HOST
capabilities.compiled_with_fpc_usart_host = true;
// TODO
capabilities.hw_available_fpc_usart_btaddon = true;
#else
capabilities.compiled_with_fpc_usart_host = false;
capabilities.hw_available_fpc_usart_btaddon = false;
#endif
#ifdef WITH_LF
capabilities.compiled_with_lf = true;

View file

@ -137,7 +137,6 @@ typedef struct {
uint16_t read_gap;
} t55xx_config;
// TODO add more fields to report all hw & sw capabilities of pm3
typedef struct {
uint32_t baudrate;
bool via_fpc;
@ -161,12 +160,9 @@ typedef struct {
// misc
bool compiled_with_lcd;
// Following are not yet implemented:
// rdv4
bool hw_available_flash;
bool hw_available_smartcard;
// rdv4 bt addon
bool hw_available_fpc_usart_btaddon;
} PACKED capabilities_t;
extern capabilities_t pm3_capabilities;