Bluetooth: controller: Minor refactor of SyncInfo structure
Minor refactor of SyncInfo structure field names. Signed-off-by: Vinayak Kariappa Chettimada <vich@nordicsemi.no>
This commit is contained in:
parent
dd0c46c371
commit
0b99773037
1 changed files with 2 additions and 2 deletions
|
@ -214,13 +214,13 @@ enum ext_adv_aux_phy {
|
|||
|
||||
struct ext_adv_sync_info {
|
||||
#if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
|
||||
uint16_t sync_pkt_offs:13;
|
||||
uint16_t offs:13;
|
||||
uint16_t offs_units:1;
|
||||
uint16_t rfu:2;
|
||||
#elif __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
|
||||
uint16_t rfu:2;
|
||||
uint16_t offs_units:1;
|
||||
uint16_t sync_pkt_offs:13;
|
||||
uint16_t offs:13;
|
||||
#else
|
||||
#error "Unsupported endianness"
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue