mirror of
https://github.com/akuker/RASCSI.git
synced 2024-11-22 01:31:25 +00:00
52c2aa474f
* Rebrand project to PiSCSI - rascsi ->piscsi - rasctl -> scsictl - rasdump -> scsidump - ras* -> piscsi* (rasutil -> piscsi_util, etc.) * Refined the formatting and wording of the app startup banner * Kept some references to rascsi and rasctl where backwards compatibility is concerned * Point to the new github repo URL Co-authored-by: nucleogenic <nr@nucleogenic.com> Co-authored-by: Uwe Seimet <Uwe.Seimet@seimet.de>
94 lines
2.1 KiB
C++
94 lines
2.1 KiB
C++
//---------------------------------------------------------------------------
|
|
//
|
|
// SCSI Target Emulator PiSCSI
|
|
// for Raspberry Pi
|
|
//
|
|
// Copyright (C) 2022 akuker
|
|
//
|
|
// [ Logical representation of a single data sample ]
|
|
//
|
|
//---------------------------------------------------------------------------
|
|
|
|
#pragma once
|
|
|
|
#include "hal/data_sample.h"
|
|
#include "shared/scsi.h"
|
|
#include <array>
|
|
|
|
#if defined CONNECT_TYPE_STANDARD
|
|
#include "hal/connection_type/connection_standard.h"
|
|
#elif defined CONNECT_TYPE_FULLSPEC
|
|
#include "hal/connection_type/connection_fullspec.h"
|
|
#elif defined CONNECT_TYPE_AIBOM
|
|
#include "hal/connection_type/connection_aibom.h"
|
|
#elif defined CONNECT_TYPE_GAMERNIUM
|
|
#include "hal/connection_type/connection_gamernium.h"
|
|
#else
|
|
#error Invalid connection type or none specified
|
|
#endif
|
|
|
|
class DataSample_BananaM2p final : public DataSample
|
|
{
|
|
public:
|
|
bool GetSignal(int pin) const override;
|
|
|
|
bool GetBSY() const override
|
|
{
|
|
return GetSignal(BPI_PIN_BSY);
|
|
}
|
|
bool GetSEL() const override
|
|
{
|
|
return GetSignal(BPI_PIN_SEL);
|
|
}
|
|
bool GetATN() const override
|
|
{
|
|
return GetSignal(BPI_PIN_ATN);
|
|
}
|
|
bool GetACK() const override
|
|
{
|
|
return GetSignal(BPI_PIN_ACK);
|
|
}
|
|
bool GetRST() const override
|
|
{
|
|
return GetSignal(BPI_PIN_RST);
|
|
}
|
|
bool GetMSG() const override
|
|
{
|
|
return GetSignal(BPI_PIN_MSG);
|
|
}
|
|
bool GetCD() const override
|
|
{
|
|
return GetSignal(BPI_PIN_CD);
|
|
}
|
|
bool GetIO() const override
|
|
{
|
|
return GetSignal(BPI_PIN_IO);
|
|
}
|
|
bool GetREQ() const override
|
|
{
|
|
return GetSignal(BPI_PIN_REQ);
|
|
}
|
|
bool GetACT() const override
|
|
{
|
|
return GetSignal(BPI_PIN_ACT);
|
|
}
|
|
bool GetDP() const override
|
|
{
|
|
return GetSignal(BPI_PIN_DP);
|
|
}
|
|
|
|
uint8_t GetDAT() const override;
|
|
|
|
uint32_t GetRawCapture() const override;
|
|
|
|
DataSample_BananaM2p(const array<uint32_t, 12> &in_data, uint64_t in_timestamp)
|
|
: DataSample{in_timestamp}, data{in_data}
|
|
{
|
|
}
|
|
DataSample_BananaM2p() = default;
|
|
|
|
~DataSample_BananaM2p() override = default;
|
|
|
|
private:
|
|
array<uint32_t, 12> data = {0};
|
|
}; |