mirror of
https://github.com/akuker/RASCSI.git
synced 2024-11-22 16:33:17 +00:00
aa927cb504
* Update Makefile, move top-level .cpp files * Move top-level .cpp files into their respective folders
20 lines
779 B
C
20 lines
779 B
C
//---------------------------------------------------------------------------
|
|
//
|
|
// SCSI Target Emulator PiSCSI
|
|
// for Raspberry Pi
|
|
//
|
|
// Copyright (C) 2020-2021 akuker
|
|
//
|
|
// [ SCSI Bus Monitor ]
|
|
//
|
|
//---------------------------------------------------------------------------
|
|
|
|
#include "hal/data_sample.h"
|
|
#include <memory>
|
|
|
|
uint32_t scsimon_read_json(const string &json_filename, vector<shared_ptr<DataSample>> &data_capture_array);
|
|
|
|
void scsimon_generate_html(const string &filename, const vector<shared_ptr<DataSample>> &data_capture_array);
|
|
void scsimon_generate_json(const string &filename, const vector<shared_ptr<DataSample>> &data_capture_array);
|
|
void scsimon_generate_value_change_dump(const string &filename, const vector<shared_ptr<DataSample>> &data_capture_array);
|