2021-06-02 09:04:16 -03:00
|
|
|
/*
|
|
|
|
* This file is free software: you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU General Public License as published by the
|
|
|
|
* Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This file is distributed in the hope that it will be useful, but
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
* See the GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* Code by Andy Piper and Siddharth Bharat Purohit
|
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <AP_HAL/HAL.h>
|
2022-08-17 10:16:15 -03:00
|
|
|
#include <AP_HAL/WSPIDevice.h>
|
2021-06-02 09:04:16 -03:00
|
|
|
#include <AP_HAL/utility/OwnPtr.h>
|
|
|
|
|
2022-08-17 10:16:15 -03:00
|
|
|
#ifndef HAL_USE_WSPI_DEFAULT_CFG
|
|
|
|
#define HAL_USE_WSPI_DEFAULT_CFG 1
|
2021-06-02 09:04:16 -03:00
|
|
|
#endif
|
|
|
|
|
|
|
|
namespace Empty
|
|
|
|
{
|
|
|
|
|
2022-08-17 10:16:15 -03:00
|
|
|
class WSPIDevice : public AP_HAL::WSPIDevice
|
2021-06-02 09:04:16 -03:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2022-08-17 10:16:15 -03:00
|
|
|
WSPIDevice() { }
|
2021-06-02 09:04:16 -03:00
|
|
|
|
|
|
|
/* See AP_HAL::Device::transfer() */
|
|
|
|
bool transfer(const uint8_t *send, uint32_t send_len,
|
|
|
|
uint8_t *recv, uint32_t recv_len) override
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set command header for upcomming transfer call(s)
|
|
|
|
void set_cmd_header(const CommandHeader& cmd_hdr) override
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
AP_HAL::Semaphore* get_semaphore() override
|
|
|
|
{
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2022-08-17 10:16:15 -03:00
|
|
|
class WSPIDeviceManager : public AP_HAL::WSPIDeviceManager
|
2021-06-02 09:04:16 -03:00
|
|
|
{
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|