Browse Source

AP_HAL_Empty: add QSPIDevice empty HAL Iface

gps-1.3.1
Siddharth Purohit 4 years ago committed by Andrew Tridgell
parent
commit
6a284ea59d
  1. 2
      libraries/AP_HAL_Empty/AP_HAL_Empty_Namespace.h
  2. 1
      libraries/AP_HAL_Empty/AP_HAL_Empty_Private.h
  3. 59
      libraries/AP_HAL_Empty/QSPIDevice.h

2
libraries/AP_HAL_Empty/AP_HAL_Empty_Namespace.h

@ -16,6 +16,8 @@ namespace Empty { @@ -16,6 +16,8 @@ namespace Empty {
class SPIDevice;
class SPIDeviceDriver;
class SPIDeviceManager;
class QSPIDevice;
class QSPIDeviceManager;
class Storage;
class UARTDriver;
class Util;

1
libraries/AP_HAL_Empty/AP_HAL_Empty_Private.h

@ -13,6 +13,7 @@ @@ -13,6 +13,7 @@
#include "Scheduler.h"
#include "Semaphores.h"
#include "SPIDevice.h"
#include "QSPIDevice.h"
#include "Storage.h"
#include "UARTDriver.h"
#include "Util.h"

59
libraries/AP_HAL_Empty/QSPIDevice.h

@ -0,0 +1,59 @@ @@ -0,0 +1,59 @@
/*
* 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>
#include <AP_HAL/QSPIDevice.h>
#include <AP_HAL/utility/OwnPtr.h>
#ifndef HAL_USE_QSPI_DEFAULT_CFG
#define HAL_USE_QSPI_DEFAULT_CFG 1
#endif
namespace Empty
{
class QSPIDevice : public AP_HAL::QSPIDevice
{
public:
QSPIDevice() { }
/* 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;
}
};
class QSPIDeviceManager : public AP_HAL::QSPIDeviceManager
{
};
}
Loading…
Cancel
Save