Anderson Cunha / sgam_mdw_NUCLEOF429ZI_impl

Dependencies:   MPU6050 Grove_temperature

Dependents:   sgam_mdw_test

communication/LoRaWanComm.cpp

Committer:
AndersonIctus
Date:
2019-06-23
Revision:
6:806043bf1a2c
Child:
7:8db3e62ac4e2

File content as of revision 6:806043bf1a2c:

#include "sgam_mdw.h"
#include "mbed.h"

#include "LoRAWanComm.h"

LoRAWanComm::LoRAWanComm(const char* parameters) { } 
LoRAWanComm::~LoRAWanComm() { } 

int LoRAWanComm::initialize() { D_LOG("INITIALIZE %s! \r\n", this->getName() ); return 1; }
int LoRAWanComm::finalize() { D_LOG("FINALIZE %s! \r\n", this->getName() ); return 1; }

const char* LoRAWanComm::getName() {
    return "LoRAWAN";
}

////////////////////////////////////////////////////////////////////////////////////
int LoRAWanComm::write(const char* data) {
    return 0;
}

int LoRAWanComm::read(char* buffer, int offset) {
    return 0;
}