Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
mcr20a-rf-driver/mcr20a-rf-driver/NanostackRfPhyMcr20a.h
- Committer:
- DuyLionTran
- Date:
- 2017-11-26
- Revision:
- 0:8094b249013c
File content as of revision 0:8094b249013c:
/*
* Copyright (c) 2014-2015 ARM Limited. All rights reserved.
* SPDX-License-Identifier: Apache-2.0
* Licensed under the Apache License, Version 2.0 (the License); you may
* not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an AS IS BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef NANOSTACK_PHY_MCR20A_H_
#define NANOSTACK_PHY_MCR20A_H_
#include "mbed.h"
#include "NanostackRfPhy.h"
// Arduino pin defaults for convenience
#if !defined(MCR20A_SPI_MOSI)
#define MCR20A_SPI_MOSI D11
#endif
#if !defined(MCR20A_SPI_MISO)
#define MCR20A_SPI_MISO D12
#endif
#if !defined(MCR20A_SPI_SCLK)
#define MCR20A_SPI_SCLK D13
#endif
#if !defined(MCR20A_SPI_CS)
#define MCR20A_SPI_CS D10
#endif
#if !defined(MCR20A_SPI_RST)
#define MCR20A_SPI_RST D5
#endif
#if !defined(MCR20A_SPI_IRQ)
#define MCR20A_SPI_IRQ D2
#endif
class NanostackRfPhyMcr20a : public NanostackRfPhy {
public:
NanostackRfPhyMcr20a(PinName spi_mosi, PinName spi_miso,
PinName spi_sclk, PinName spi_cs, PinName spi_rst,
PinName spi_irq);
~NanostackRfPhyMcr20a();
int8_t rf_register();
void rf_unregister();
void get_mac_address(uint8_t *mac);
void set_mac_address(uint8_t *mac);
private:
SPI _spi;
DigitalOut _rf_cs;
DigitalOut _rf_rst;
InterruptIn _rf_irq;
DigitalIn _rf_irq_pin;
void _pins_set();
void _pins_clear();
};
#endif /* NANOSTACK_PHY_MCR20A_H_ */