hci.h (ad83dc6a89670bdaf3268968787ba16e7de09a80) | hci.h (f471afd8963ca1a5b914db0cbb3471db087f44b8) |
---|---|
1/* 2 * Copyright (C) 2009-2012 by Matthias Ringwald 3 * 4 * Redistribution and use in source and binary forms, with or without 5 * modification, are permitted provided that the following conditions 6 * are met: 7 * 8 * 1. Redistributions of source code must retain the above copyright --- 27 unchanged lines hidden (view full) --- 36 37/* 38 * hci.h 39 * 40 * Created by Matthias Ringwald on 4/29/09. 41 * 42 */ 43 | 1/* 2 * Copyright (C) 2009-2012 by Matthias Ringwald 3 * 4 * Redistribution and use in source and binary forms, with or without 5 * modification, are permitted provided that the following conditions 6 * are met: 7 * 8 * 1. Redistributions of source code must retain the above copyright --- 27 unchanged lines hidden (view full) --- 36 37/* 38 * hci.h 39 * 40 * Created by Matthias Ringwald on 4/29/09. 41 * 42 */ 43 |
44#pragma once | 44#ifndef __HCI_H 45#define __HCI_H |
45 46#include "config.h" 47 48#include <btstack/hci_cmds.h> 49#include <btstack/utils.h> 50#include "hci_transport.h" 51#include "bt_control.h" 52#include "remote_device_db.h" --- 399 unchanged lines hidden (view full) --- 452 453// get addr type and address used in advertisement packets 454void hci_le_advertisement_address(uint8_t * addr_type, bd_addr_t * addr); 455 456 457#if defined __cplusplus 458} 459#endif | 46 47#include "config.h" 48 49#include <btstack/hci_cmds.h> 50#include <btstack/utils.h> 51#include "hci_transport.h" 52#include "bt_control.h" 53#include "remote_device_db.h" --- 399 unchanged lines hidden (view full) --- 453 454// get addr type and address used in advertisement packets 455void hci_le_advertisement_address(uint8_t * addr_type, bd_addr_t * addr); 456 457 458#if defined __cplusplus 459} 460#endif |
461 462#endif // __HCI_H |
|