diff --git a/armsrc/appmain.c b/armsrc/appmain.c index 2a9636496..e19816743 100644 --- a/armsrc/appmain.c +++ b/armsrc/appmain.c @@ -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; diff --git a/include/pm3_cmd.h b/include/pm3_cmd.h index cba00e7f0..d0797c18c 100644 --- a/include/pm3_cmd.h +++ b/include/pm3_cmd.h @@ -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;