1# Copyright Oticon A/S 2018 2# SPDX-License-Identifier: Apache-2.0 3 4function [ BW ] = ReceiverNoiseBW(ModulationRx) 5 6if ( strcmp(ModulationRx, 'modulation_BLE')== 1 ), 7 BW = 1.1e6; 8elseif ( strcmp(ModulationRx, 'modulation_Prop2M')== 1 ), 9 BW = 2.5e6; 10else 11 error(' I cant handle that modulation for the Rx filter'); 12end 13