Bluetooth: controller: Replace slave with peripheral

Replace the old slave term with the new peripheral
one from the Bluetooth spec v5.3.

Signed-off-by: Carles Cufi <carles.cufi@nordicsemi.no>
This commit is contained in:
Carles Cufi 2021-09-20 16:25:06 +02:00 committed by Carles Cufí
commit 947b38ac0a
40 changed files with 315 additions and 309 deletions

View file

@ -60,7 +60,7 @@ struct lll_conn {
struct {
uint8_t initiated:1;
uint8_t cancelled:1;
} master;
} central;
#if defined(CONFIG_BT_PERIPHERAL)
struct {
uint8_t initiated:1;
@ -73,7 +73,7 @@ struct lll_conn {
uint32_t window_widening_event_us;
uint32_t window_size_prepare_us;
uint32_t window_size_event_us;
} slave;
} periph;
#endif /* CONFIG_BT_PERIPHERAL */
};