Skip to content

Commit

Permalink
Fix true diversity receivers
Browse files Browse the repository at this point in the history
  • Loading branch information
jurgelenas committed Sep 14, 2024
1 parent 895af60 commit a533813
Showing 1 changed file with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -327,12 +327,17 @@ export default class DeviceDescriptionsLoader {
targetUserDefinesFactory.build(UserDefineKey.REGULATORY_DOMAIN_ISM_2400)
);
}
if (args.target.includes('dual')) {
// no support for LR1121 LBT yet. SPI commands are too slow
if (args.target.includes('tx_dual') || args.target.includes('rx_dual')) {
userDefines.push(
targetUserDefinesFactory.build(UserDefineKey.REGULATORY_DOMAIN_ISM_2400)
);
}
if (args.target.includes('_900.') || args.target.includes('dual')) {
if (
args.target.includes('_900.') ||
args.target.includes('tx_dual') ||
args.target.includes('rx_dual')
) {
userDefines.push(
targetUserDefinesFactory.build(UserDefineKey.REGULATORY_DOMAIN_AU_915)
);
Expand Down

0 comments on commit a533813

Please sign in to comment.