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:
parent
77f42f8312
commit
dbc00ba374
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue