Bluetooth: controller: Fix empty_pkt_us_get for 2M phy.

An empty packet on 2M phy is one more byte compared to 1M phy because
of the preamble.
The empty packet is then 11 bytes, which takes 44 us to transmit.

Signed-off-by: Joakim Andersson <joakim.andersson@nordicsemi.no>
This commit is contained in:
Joakim Andersson 2018-06-28 15:40:27 +02:00 committed by Anas Nashif
commit dbc00ba374

View file

@ -619,7 +619,7 @@ static inline u32_t empty_pkt_us_get(u8_t phy)
case BIT(0):
return 80;
case BIT(1):
return 40;
return 44;
case BIT(2):
return 720;
}