SX1278 RA-01, RA-02 LoRa library

  1. This code is deprecated. Use this: https://github.com/luk6xff/DevLibs/tree/master/LORA instead.

platform/sx1278-mbed.h

Committer:
igbt6
Date:
2019-11-16
Revision:
0:4e8ef5758455

File content as of revision 0:4e8ef5758455:


/**
 *  @brief:  Implementation of a SX1278 platform dependent [MBED] radio functions
 *  @author: luk6xff
 *  @email:  luszko@op.pl
 *  @date:   2019-11-15
 */


#ifndef __SX1278_MBED_H__
#define __SX1278_MBED_H__

#include "mbed.h"
#include "../sx1278.h"

void SX1278MbedInit(RadioEvents_t *events,
                    PinName mosi, PinName miso, PinName sclk, PinName nss, PinName reset,
                    PinName dio0, PinName dio1, PinName dio2, PinName dio3, PinName dio4, PinName dio5);

void SX1278MbedDeInit();

#endif // __SX1278_MBED_H__