7
mirror of https://github.com/EEVengers/ThunderScope.git synced 2025-04-08 06:25:30 +00:00

Merge branch 'FPGA_DSP_PIPE_HOOKUP' of https://github.com/EEVengers/DSO into FPGA_DSP_PIPE_HOOKUP

This commit is contained in:
Daniel Vasile 2021-03-22 21:38:16 -04:00
commit a0630a6372
5 changed files with 6 additions and 6 deletions
Software/waveview
scope_link/src
src/components/graph

View File

@ -167,8 +167,8 @@ void PCIeLink::Read(uint8_t* buff) {
}
last_chunk_read = current_chunk;
int64_t reading_offset = current_chunk * (1 << 23);
INFO << "Reading from current current chunk: " << current_chunk;
INFO << "Offset: " << reading_offset;
//INFO << "Reading from current current chunk: " << current_chunk;
//INFO << "Offset: " << reading_offset;
//Read the data from ddr3 memory
_Read(c2h_0_handle,reading_offset,buff,1 << 23);
}

View File

@ -208,7 +208,7 @@ void Bridge::TxJob() {
send(client_tx_sock,tx_buff,packet_size,0);
#endif
//free the packet
free(currentPacket);
FreePacket(currentPacket);
}
// No more packets, sleep.
std::this_thread::sleep_for(std::chrono::microseconds(500));

View File

@ -1,7 +1,7 @@
#include "controller.hpp"
#include "logger.hpp"
#define NOHARDWARE
//#define NOHARDWARE
//RampDemo Related
int8_t RD_PACKET_ORIGINAL[RD_PACKET_SIZE];

View File

@ -40,7 +40,7 @@ BOOST_LOG_GLOBAL_LOGGER_INIT(my_logger, logger_t)
logging::core::get()->set_filter
(
logging::trivial::severity >= logging::trivial::info
logging::trivial::severity >= logging::trivial::debug
);
return lg;

View File

@ -16,7 +16,7 @@ import TestPoints from '../../util/testpoints';
class Graph extends React.Component<any, any> {
static instanceList: Graph[] = [];
timerID: number = 0;
generator: TestPoints = new TestPoints(50, 50);
generator: TestPoints = new TestPoints(1000, 128);
componentDidMount() {
Graph.instanceList.push(this);