From 0451f7f217fe17719e472a288210ceb8a27e7eb0 Mon Sep 17 00:00:00 2001 From: Diego Valcarce Date: Wed, 5 Nov 2025 17:53:17 +0100 Subject: [PATCH] fix: LR1121 should be supported by this API --- smtc_rac_lib/smtc_ral/src/ral_lr11xx.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/smtc_rac_lib/smtc_ral/src/ral_lr11xx.c b/smtc_rac_lib/smtc_ral/src/ral_lr11xx.c index 466f6f5..d361bae 100644 --- a/smtc_rac_lib/smtc_ral/src/ral_lr11xx.c +++ b/smtc_rac_lib/smtc_ral/src/ral_lr11xx.c @@ -162,7 +162,9 @@ void ral_lr11xx_convert_lr_fhss_params_from_ral( const ral_lr_fhss_params_t* ral bool ral_lr11xx_handles_part( const char* part_number ) { - return ( strcmp( "lr1110", part_number ) == 0 ) || ( strcmp( "lr1120", part_number ) == 0 ); + return (strcmp("lr1110", part_number) == 0) || + (strcmp("lr1120", part_number) == 0) || + (strcmp("lr1121", part_number) == 0); } ral_status_t ral_lr11xx_reset( const void* context )