Add missing and remove unused includes. Fix spelling mistakes. Signed-off-by: Emil Gydesen <emil.gydesen@nordicsemi.no>
20 lines
327 B
C
20 lines
327 B
C
/*
|
|
* Copyright (c) 2023 Nordic Semiconductor ASA
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#ifndef MOCKS_BLUETOOTH_H_
|
|
#define MOCKS_BLUETOOTH_H_
|
|
#include <stdint.h>
|
|
|
|
struct bt_le_ext_adv {
|
|
/* ID Address used for advertising */
|
|
uint8_t id;
|
|
|
|
/* Advertising handle */
|
|
uint8_t handle;
|
|
};
|
|
|
|
#endif /* MOCKS_BLUETOOTH_H_ */
|