2015-02-25 13:09:56 +01:00
|
|
|
/*
|
2015-08-16 17:30:04 +02:00
|
|
|
* Copyright (c) 2015, Texas Instruments Incorporated - http://www.ti.com/
|
2015-02-25 13:09:56 +01:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. Neither the name of the copyright holder nor the names of its
|
|
|
|
* contributors may be used to endorse or promote products derived
|
|
|
|
* from this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
|
|
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
|
|
* COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
|
|
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
|
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
|
|
|
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
|
|
|
|
* OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
/*---------------------------------------------------------------------------*/
|
2015-08-16 17:30:04 +02:00
|
|
|
#ifndef SMARTRF_SETTINGS_H_
|
|
|
|
#define SMARTRF_SETTINGS_H_
|
2015-02-25 13:09:56 +01:00
|
|
|
/*---------------------------------------------------------------------------*/
|
2015-08-16 17:30:04 +02:00
|
|
|
#include "rf-core/api/mailbox.h"
|
|
|
|
#include "rf-core/api/common_cmd.h"
|
|
|
|
#include "rf-core/api/prop_cmd.h"
|
2015-02-25 13:09:56 +01:00
|
|
|
/*---------------------------------------------------------------------------*/
|
2015-08-16 17:30:04 +02:00
|
|
|
extern rfc_CMD_PROP_RADIO_DIV_SETUP_t smartrf_settings_cmd_prop_radio_div_setup;
|
|
|
|
extern rfc_CMD_FS_t smartrf_settings_cmd_fs;
|
|
|
|
extern rfc_CMD_PROP_TX_ADV_t smartrf_settings_cmd_prop_tx_adv;
|
|
|
|
extern rfc_CMD_PROP_RX_ADV_t smartrf_settings_cmd_prop_rx_adv;
|
2015-02-25 13:09:56 +01:00
|
|
|
/*---------------------------------------------------------------------------*/
|
2015-08-16 17:30:04 +02:00
|
|
|
#endif // SMARTRF_SETTINGS_H_
|
2015-02-25 13:09:56 +01:00
|
|
|
/*---------------------------------------------------------------------------*/
|