mirror of
https://github.com/akuker/RASCSI.git
synced 2024-11-22 01:31:25 +00:00
1c0179e7e3
* Moved rasdump and monitor to sub-folders, cleaned up code * Fixes rasdump issues and added additional features like device type check, LUN support and configurable buffer size
23 lines
413 B
C++
23 lines
413 B
C++
//---------------------------------------------------------------------------
|
|
//
|
|
// SCSI Target Emulator RaSCSI Reloaded
|
|
// for Raspberry Pi
|
|
//
|
|
// Copyright (C) 2022 akuker
|
|
//
|
|
//---------------------------------------------------------------------------
|
|
|
|
#pragma once
|
|
|
|
#include "bus.h"
|
|
#include <memory>
|
|
|
|
using namespace std;
|
|
|
|
class GPIOBUS_Factory
|
|
{
|
|
public:
|
|
|
|
static unique_ptr<BUS> Create(BUS::mode_e);
|
|
};
|