In bluetooth/hci.h the bluetooth address type is declared as ``` typedef struct { u8_t val[6]; } bt_addr_t; ``` Instead of using magic number '6' this should be declared as a define in bluetooth.h: `#define BT_ADDR_LEN (6)`