Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion smtc_rac_lib/smtc_ral/src/ral_lr11xx.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 )
Expand Down