34 lines
462 B
C++
34 lines
462 B
C++
/*
|
|
* SSL_Radio.cpp
|
|
*
|
|
* Created on: Feb 24, 2024
|
|
* Author: gabriel
|
|
*/
|
|
|
|
#include "SSL_Comms.hpp"
|
|
|
|
#include "main.h"
|
|
#include "SX1280Lib/sx1280-hal.h"
|
|
|
|
extern SPI_HandleTypeDef hspi1;
|
|
|
|
|
|
|
|
SSL_Comms::SSL_Comms(GPIO_Pin* but) : but(but) {
|
|
// TODO Auto-generated constructor stub
|
|
|
|
}
|
|
|
|
SSL_Comms::~SSL_Comms() {
|
|
// TODO Auto-generated destructor stub
|
|
}
|
|
|
|
void SSL_Comms::irqCallback(void *arg) {
|
|
__NOP();
|
|
}
|
|
|
|
int32_t SSL_Comms::init(){
|
|
__NOP();
|
|
return 0;
|
|
}
|