1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153 |
- #include <iostream>
- #include <memory>
- #include <windows.h>
- #include <tuple>
- #include "picofunctions.h"
- #include "pugiconfig.hpp"
- #include "pugixml.hpp"
- #include "parser.hpp"
- #include "src/ActiveSocket.h"
- #define MAX_PACKET 4096
- using namespace std;
- std::vector<std::string> split(const std::string& s, const std::string& delimiter) {
- std::vector<std::string> tokens;
- size_t pos = 0;
- std::string temp = s;
- std::string token;
- while ((pos = temp.find(delimiter)) != std::string::npos) {
- token = temp.substr(0, pos);
- tokens.push_back(token);
- temp.erase(0, pos + delimiter.length());
- }
- tokens.push_back(temp);
- return tokens;
- }
- class PicoLocalClient
- {
- private:
- CActiveSocket *socket;
- uint8_t sndbuf[MAX_PACKET]{0};
- uint8_t rcvbuf[MAX_PACKET]{0};
- std::string line_edit;
- std::vector<std::string> tokens;
- uint8_t error_state = 0x00;
- uint32_t error_code = 0x00000000;
- public:
- PicoLocalClient(CActiveSocket *socket) : socket(socket) {}
- ~PicoLocalClient() { delete socket; }
- int pico_open()
- {
- sndbuf[0] = 0xAA;
- sndbuf[1] = 0x01;
- if(socket->Send(sndbuf, 2) == 0)
- {
- cerr << "Failed to send data to socket" << endl;
- return -1;
- }
- if(socket->Receive(MAX_PACKET, rcvbuf) == -1)
- {
- cerr << "Failed to receive data from socket" << endl;
- return -1;
- }
- uint32_t bytes_received = socket->GetBytesReceived();
- if(bytes_received == 0)
- {
- cerr << "Server disconnected" << endl;
- return -1;
- }
- if(bytes_received < 2)
- {
- cerr << "Invalid buffer size" << endl;
- return -1;
- }
- if(rcvbuf[0] != 0xAA)
- {
- cerr << "Invalid magic number" << endl;
- return -1;
- }
- if(rcvbuf[1] == 0xFF)
- {
- if(bytes_received < 7)
- {
- cerr << "Invalid buffer size" << endl;
- return -1;
- }
- cerr << "Error at ADC: " << std::hex << rcvbuf[2] << endl;
- memcpy(&error_state, rcvbuf + 2, sizeof(uint8_t));
- memcpy(&error_code, rcvbuf + 3, sizeof(uint32_t));
- cerr << "Error code: " << std::hex << error_code << " " << return_fun(error_code) << endl;
- }
- else if(rcvbuf[1] != 0xC1)
- {
- cerr << "Invalid command callback" << endl;
- return -1;
- }
- cout << "Pico device opened" << endl;
- return 0;
- }
- int pico_xml_config(const std::string& file_name)
- {
- sndbuf[0] = 0xAA;
- sndbuf[1] = 0x02;
- uint32_t size = file_name.size();
- memcpy(sndbuf + 2, &size, sizeof(uint32_t));
- memcpy(sndbuf + 6, file_name.c_str(), size);
- if(socket->Send(sndbuf, size + 6) == -1)
- {
- cerr << "Failed to send data to socket" << endl;
- return -1;
- }
- if(socket->Receive(MAX_PACKET, rcvbuf) == -1)
- {
- cerr << "Failed to receive data from socket" << endl;
- return -1;
- }
- uint32_t bytes_received = socket->GetBytesReceived();
- if(bytes_received == 0)
- {
- cerr << "Server disconnected" << endl;
- return -1;
- }
- if(bytes_received < 2)
- {
- cerr << "Invalid buffer size" << endl;
- return -1;
- }
- if(rcvbuf[0] != 0xAA)
- {
- cerr << "Invalid magic number" << endl;
- return -1;
- }
- if(rcvbuf[1] == 0xFF)
- {
- if(bytes_received < 7)
- {
- cerr << "Invalid buffer size" << endl;
- return -1;
- }
- cerr << "Error at ADC: " << std::hex << rcvbuf[2] << endl;
- memcpy(&error_state, rcvbuf + 2, sizeof(uint8_t));
- memcpy(&error_code, rcvbuf + 3, sizeof(uint32_t));
- cerr << "Error code: " << std::hex << error_code << " " << return_fun(error_code) << endl;
- }
- else if(rcvbuf[1] != 0xC2)
- {
- cerr << "Invalid command callback" << endl;
- return -1;
- }
- cout << "Pico device configured" << endl;
- return 0;
- }
- int pico_set_params(uint32_t* apoints, uint32_t* times, uint32_t sample_rate, uint32_t number_channels, uint32_t size)
- {
- sndbuf[0] = 0xAA;
- sndbuf[1] = 0x0C;
- memcpy(sndbuf + 2, &size, sizeof(uint32_t));
- memcpy(sndbuf + 6, apoints, size * sizeof(uint32_t));
- memcpy(sndbuf + 6 + size * sizeof(uint32_t), times, size * sizeof(uint32_t));
- memcpy(sndbuf + 6 + 2 * size * sizeof(uint32_t), &sample_rate, sizeof(uint32_t));
- memcpy(sndbuf + 10 + 2 * size * sizeof(uint32_t), &number_channels, sizeof(uint32_t));
- if(socket->Send(sndbuf, size * 2 * sizeof(uint32_t) + 14) == -1)
- {
- cerr << "Failed to send data to socket" << endl;
- return -1;
- }
- if(socket->Receive(MAX_PACKET, rcvbuf) == -1)
- {
- cerr << "Failed to receive data from socket" << endl;
- return -1;
- }
- uint32_t bytes_received = socket->GetBytesReceived();
- if(bytes_received == 0)
- {
- cerr << "Server disconnected" << endl;
- return -1;
- }
- if(bytes_received < 2)
- {
- cerr << "Invalid buffer size" << endl;
- return -1;
- }
- if(rcvbuf[0] != 0xAA)
- {
- cerr << "Invalid magic number" << endl;
- return -1;
- }
- if(rcvbuf[1] == 0xFF)
- {
- if(bytes_received < 7)
- {
- cerr << "Invalid buffer size" << endl;
- return -1;
- }
- cerr << "Error at ADC: " << std::hex << rcvbuf[2] << endl;
- memcpy(&error_state, rcvbuf + 2, sizeof(uint8_t));
- memcpy(&error_code, rcvbuf + 3, sizeof(uint32_t));
- cerr << "Error code: " << std::hex << error_code << " " << return_fun(error_code) << endl;
- }
- else if(rcvbuf[1] != 0xCC)
- {
- cerr << "Invalid command callback" << endl;
- return -1;
- }
- cout << "Pico device parameters set" << endl;
- return 0;
- }
- int pico_close()
- {
- sndbuf[0] = 0xAA;
- sndbuf[1] = 0x03;
- if(socket->Send(sndbuf, 2) == -1)
- {
- cerr << "Failed to send data to socket" << endl;
- return -1;
- }
- if(socket->Receive(MAX_PACKET, rcvbuf) == -1)
- {
- cerr << "Failed to receive data from socket" << endl;
- return -1;
- }
- uint32_t bytes_received = socket->GetBytesReceived();
- if(bytes_received == 0)
- {
- cerr << "Server disconnected" << endl;
- return -1;
- }
- if(bytes_received < 2)
- {
- cerr << "Invalid buffer size" << endl;
- return -1;
- }
- if(rcvbuf[0] != 0xAA)
- {
- cerr << "Invalid magic number" << endl;
- return -1;
- }
- if(rcvbuf[1] == 0xFF)
- {
- if(bytes_received < 7)
- {
- cerr << "Invalid buffer size" << endl;
- return -1;
- }
- cerr << "Error at ADC: " << std::hex << rcvbuf[2] << endl;
- memcpy(&error_state, rcvbuf + 2, sizeof(uint8_t));
- memcpy(&error_code, rcvbuf + 3, sizeof(uint32_t));
- cerr << "Error code: " << std::hex << error_code << " " << return_fun(error_code) << endl;
- }
- else if(rcvbuf[1] != 0xC3)
- {
- cerr << "Invalid command callback" << endl;
- return -1;
- }
- cout << "Pico device closed" << endl;
- return 0;
- }
- int pico_get_current_params()
- {
- sndbuf[0] = 0xAA;
- sndbuf[1] = 0x04;
- if(socket->Send(sndbuf, 2) == -1)
- {
- cerr << "Failed to send data to socket" << endl;
- return -1;
- }
- if(socket->Receive(MAX_PACKET, rcvbuf) == -1)
- {
- cerr << "Failed to receive data from socket" << endl;
- return -1;
- }
- uint32_t bytes_received = socket->GetBytesReceived();
- if(bytes_received == 0)
- {
- cerr << "Server disconnected" << endl;
- return -1;
- }
- if(bytes_received < 2)
- {
- cerr << "Invalid buffer size" << endl;
- return -1;
- }
- if(rcvbuf[0] != 0xAA)
- {
- cerr << "Invalid magic number" << endl;
- return -1;
- }
- if(rcvbuf[1] == 0xFF)
- {
- if(bytes_received < 7)
- {
- cerr << "Invalid buffer size" << endl;
- return -1;
- }
- cerr << "Error at ADC: " << std::hex << rcvbuf[2] << endl;
- memcpy(&error_state, rcvbuf + 2, sizeof(uint8_t));
- memcpy(&error_code, rcvbuf + 3, sizeof(uint32_t));
- cerr << "Error code: " << std::hex << error_code << " " << return_fun(error_code) << endl;
- }
- else if(rcvbuf[1] != 0xC4)
- {
- cerr << "Invalid command callback" << endl;
- return -1;
- }
- if(bytes_received < 18)
- {
- cerr << "Invalid buffer size" << endl;
- return -1;
- }
- uint32_t size;
- memcpy(&size, rcvbuf + 2, sizeof(uint32_t));
- if(size < 1)
- {
- cerr << "Invalid data size" << endl;
- return -1;
- }
- uint32_t* apoints = new uint32_t[size / sizeof(uint32_t)];
- memcpy(apoints, rcvbuf + 6, size);
- for(uint32_t i = 0; i < size / sizeof(uint32_t); ++i)
- {
- cout << "apoints[" << i << "] = " << std::dec << apoints[i] << endl;
- }
- uint32_t* atimes = new uint32_t[size / sizeof(uint32_t)];
- memcpy(atimes, rcvbuf + 6 + size, size);
- for(uint32_t i = 0; i < size / sizeof(uint32_t); ++i)
- {
- cout << "atimes[" << i << "] = " << std::dec << atimes[i] << endl;
- }
- uint32_t sample_rate = 0;
- memcpy(&sample_rate, rcvbuf + 6 + 2 * size, sizeof(uint32_t));
- cout << "sample_rate = " << std::dec << sample_rate << endl;
- uint32_t number_channels = 0;
- memcpy(&number_channels, rcvbuf + 10 + 2 * size, sizeof(uint32_t));
- cout << "number_channels = " << std::dec << number_channels << endl;
- cout << "Pico device parameters retrieved" << endl;
- return 0;
- }
- int pico_probe()
- {
- sndbuf[0] = 0xAA;
- sndbuf[1] = 0x05;
- if(socket->Send(sndbuf, 2) == -1)
- {
- cerr << "Failed to send data to socket" << endl;
- return -1;
- }
- if(socket->Receive(MAX_PACKET, rcvbuf) == -1)
- {
- cerr << "Failed to receive data from socket" << endl;
- return -1;
- }
- uint32_t bytes_received = socket->GetBytesReceived();
- if(bytes_received == 0)
- {
- cerr << "Server disconnected" << endl;
- return -1;
- }
- if(bytes_received < 2)
- {
- cerr << "Invalid buffer size" << endl;
- return -1;
- }
- if(rcvbuf[0] != 0xAA)
- {
- cerr << "Invalid magic number" << endl;
- return -1;
- }
- if(rcvbuf[1] == 0xFF)
- {
- if(bytes_received < 7)
- {
- cerr << "Invalid buffer size" << endl;
- return -1;
- }
- cerr << "Error at ADC: " << std::hex << rcvbuf[2] << endl;
- memcpy(&error_state, rcvbuf + 2, sizeof(uint8_t));
- memcpy(&error_code, rcvbuf + 3, sizeof(uint32_t));
- cerr << "Error code: " << std::hex << error_code << " " << return_fun(error_code) << endl;
- }
- else if(rcvbuf[1] != 0xC5)
- {
- cerr << "Invalid command callback" << endl;
- return -1;
- }
- cout << "Pico device probe completed" << endl;
- return 0;
- }
- int pico_set_points(uint32_t* points, uint32_t size)
- {
- sndbuf[0] = 0xAA;
- sndbuf[1] = 0x06;
- memcpy(sndbuf + 2, &size, sizeof(uint32_t));
- memcpy(sndbuf + 6, points, size * sizeof(uint32_t));
- if(socket->Send(sndbuf, size * sizeof(uint32_t) + 6) == -1)
- {
- cerr << "Failed to send data to socket" << endl;
- return -1;
- }
- if(socket->Receive(MAX_PACKET, rcvbuf) == -1)
- {
- cerr << "Failed to receive data from socket" << endl;
- return -1;
- }
- uint32_t bytes_received = socket->GetBytesReceived();
- if(bytes_received == 0)
- {
- cerr << "Server disconnected" << endl;
- return -1;
- }
- if(bytes_received < 2)
- {
- cerr << "Invalid buffer size" << endl;
- return -1;
- }
- if(rcvbuf[0] != 0xAA)
- {
- cerr << "Invalid magic number" << endl;
- return -1;
- }
- if(rcvbuf[1] == 0xFF)
- {
- if(bytes_received < 7)
- {
- cerr << "Invalid buffer size" << endl;
- return -1;
- }
- cerr << "Error at ADC: " << std::hex << rcvbuf[2] << endl;
- memcpy(&error_state, rcvbuf + 2, sizeof(uint8_t));
- memcpy(&error_code, rcvbuf + 3, sizeof(uint32_t));
- cerr << "Error code: " << std::hex << error_code << " " << return_fun(error_code) << endl;
- }
- else if(rcvbuf[1] != 0xC6)
- {
- cerr << "Invalid command callback" << endl;
- return -1;
- }
- cout << "Pico device points set" << endl;
- return 0;
- }
- int pico_set_sample_rate(uint32_t sample_rate)
- {
- sndbuf[0] = 0xAA;
- sndbuf[1] = 0x07;
- memcpy(sndbuf + 2, &sample_rate, sizeof(uint32_t));
- if(socket->Send(sndbuf, sizeof(uint32_t) + 6) == -1)
- {
- cerr << "Failed to send data to socket" << endl;
- return -1;
- }
- if(socket->Receive(MAX_PACKET, rcvbuf) == -1)
- {
- cerr << "Failed to receive data from socket" << endl;
- return -1;
- }
- uint32_t bytes_received = socket->GetBytesReceived();
- if(bytes_received == 0)
- {
- cerr << "Server disconnected" << endl;
- return -1;
- }
- if(bytes_received < 2)
- {
- cerr << "Invalid buffer size" << endl;
- return -1;
- }
- if(rcvbuf[0] != 0xAA)
- {
- cerr << "Invalid magic number" << endl;
- return -1;
- }
- if(rcvbuf[1] == 0xFF)
- {
- if(bytes_received < 7)
- {
- cerr << "Invalid buffer size" << endl;
- return -1;
- }
- cerr << "Error at ADC: " << std::hex << rcvbuf[2] << endl;
- memcpy(&error_state, rcvbuf + 2, sizeof(uint8_t));
- memcpy(&error_code, rcvbuf + 3, sizeof(uint32_t));
- cerr << "Error code: " << std::hex << error_code << " " << return_fun(error_code) << endl;
- return 0;
- }
- else if(rcvbuf[1] != 0xC7)
- {
- cerr << "Invalid command callback" << endl;
- return -1;
- }
- cout << "Pico device sample rate set" << endl;
- return 0;
- }
- int pico_set_times(uint32_t* times, uint32_t size)
- {
- sndbuf[0] = 0xAA;
- sndbuf[1] = 0x08;
- memcpy(sndbuf + 2, &size, sizeof(uint32_t));
- memcpy(sndbuf + 6, times, size * sizeof(uint32_t));
- if(socket->Send(sndbuf, size * sizeof(uint32_t) + 6) == -1)
- {
- cerr << "Failed to send data to socket" << endl;
- return -1;
- }
- if(socket->Receive(MAX_PACKET, rcvbuf) == -1)
- {
- cerr << "Failed to receive data from socket" << endl;
- return -1;
- }
- uint32_t bytes_received = socket->GetBytesReceived();
- if(bytes_received == 0)
- {
- cerr << "Server disconnected" << endl;
- return -1;
- }
- if(bytes_received < 2)
- {
- cerr << "Invalid buffer size" << endl;
- return -1;
- }
- if(rcvbuf[0] != 0xAA)
- {
- cerr << "Invalid magic number" << endl;
- return -1;
- }
- if(rcvbuf[1] == 0xFF)
- {
- if(bytes_received < 7)
- {
- cerr << "Invalid buffer size" << endl;
- return -1;
- }
- cerr << "Error at ADC: " << std::hex << rcvbuf[2] << endl;
- memcpy(&error_state, rcvbuf + 2, sizeof(uint8_t));
- memcpy(&error_code, rcvbuf + 3, sizeof(uint32_t));
- cerr << "Error code: " << std::hex << error_code << " " << return_fun(error_code) << endl;
- }
- else if(rcvbuf[1] != 0xC8)
- {
- cerr << "Invalid command callback" << endl;
- return -1;
- }
- cout << "Pico device times set" << endl;
- return 0;
- }
- int pico_configure_channels(const uint32_t number_channels, uint8_t trigger_channel, int32_t direction, uint16_t threshold, int16_t autoTrigger_ms)
- {
- sndbuf[0] = 0xAA;
- sndbuf[1] = 0x09;
- memcpy(sndbuf + 2, &number_channels, sizeof(uint32_t));
- memcpy(sndbuf + 6, &trigger_channel, sizeof(uint8_t));
- memcpy(sndbuf + 7, &direction, sizeof(int32_t));
- memcpy(sndbuf + 11, &threshold, sizeof(uint16_t));
- memcpy(sndbuf + 13, &autoTrigger_ms, sizeof(int16_t));
- if(socket->Send(sndbuf, 15) == -1)
- {
- cerr << "Failed to send data to socket" << endl;
- return -1;
- }
- if(socket->Receive(MAX_PACKET, rcvbuf) == -1)
- {
- cerr << "Failed to receive data from socket" << endl;
- return -1;
- }
- uint32_t bytes_received = socket->GetBytesReceived();
- if(bytes_received == 0)
- {
- cerr << "Server disconnected" << endl;
- return -1;
- }
- if(bytes_received < 2)
- {
- cerr << "Invalid buffer size" << endl;
- return -1;
- }
- if(rcvbuf[0] != 0xAA)
- {
- cerr << "Invalid magic number" << endl;
- return -1;
- }
- if(rcvbuf[1] == 0xFF)
- {
- if(bytes_received < 7)
- {
- cerr << "Invalid buffer size" << endl;
- return -1;
- }
- cerr << "Error at ADC: " << std::hex << rcvbuf[2] << endl;
- memcpy(&error_state, rcvbuf + 2, sizeof(uint8_t));
- memcpy(&error_code, rcvbuf + 3, sizeof(uint32_t));
- cerr << "Error code: " << std::hex << error_code << " " << return_fun(error_code) << endl;
- }
- else if(rcvbuf[1] != 0xC9)
- {
- cerr << "Invalid command callback" << endl;
- return -1;
- }
- cout << "Pico device channels configured" << endl;
- return 0;
- }
- int pico_begin_measurement()
- {
- sndbuf[0] = 0xAA;
- sndbuf[1] = 0x0A;
- if(socket->Send(sndbuf, 2) == -1)
- {
- cerr << "Failed to send data to socket" << endl;
- return -1;
- }
- if(socket->Receive(MAX_PACKET, rcvbuf) == -1)
- {
- cerr << "Failed to receive data from socket" << endl;
- return -1;
- }
- uint32_t bytes_received = socket->GetBytesReceived();
- if(bytes_received == 0)
- {
- cerr << "Server disconnected" << endl;
- return -1;
- }
- if(bytes_received < 2)
- {
- cerr << "Invalid buffer size" << endl;
- return -1;
- }
- if(rcvbuf[0] != 0xAA)
- {
- cerr << "Invalid magic number" << endl;
- return -1;
- }
- if(rcvbuf[1] == 0xFF)
- {
- if(bytes_received < 7)
- {
- cerr << "Invalid buffer size" << endl;
- return -1;
- }
- cerr << "Error at ADC: " << std::hex << rcvbuf[2] << endl;
- memcpy(&error_state, rcvbuf + 2, sizeof(uint8_t));
- memcpy(&error_code, rcvbuf + 3, sizeof(uint32_t));
- cerr << "Error code: " << std::hex << error_code << " " << return_fun(error_code) << endl;
- }
- else if(rcvbuf[1] != 0xCA)
- {
- cout << "Invalid command callback" << endl;
- }
- cout << "Pico device measurement started" << endl;
- cout << "Measurement in progress..." << endl;
- bool end_of_data = false;
- while(!end_of_data)
- {
- if(socket->Receive(MAX_PACKET, rcvbuf) == -1)
- {
- cerr << "Failed to receive data from socket" << endl;
- return -1;
- }
- bytes_received = socket->GetBytesReceived();
- if(bytes_received == 0)
- {
- cerr << "Server disconnected" << endl;
- return -1;
- }
- if(bytes_received < 2)
- {
- cerr << "Invalid buffer size" << endl;
- return -1;
- }
- if(rcvbuf[0] != 0xAA)
- {
- cerr << "Invalid magic number" << endl;
- return -1;
- }
- if(rcvbuf[1] == 0xFF)
- {
- if(bytes_received < 7)
- {
- cerr << "Invalid buffer size" << endl;
- return -1;
- }
- cerr << "Error at ADC: " << std::hex << rcvbuf[2] << endl;
- memcpy(&error_state, rcvbuf + 2, sizeof(uint8_t));
- memcpy(&error_code, rcvbuf + 3, sizeof(uint32_t));
- cerr << "Error code: " << std::hex << error_code << " " << return_fun(error_code) << endl;
- }
- if(rcvbuf[1] == 0xCB)
- {
- cout << "Measurement completed..." << endl;
- end_of_data = true;
- }
- else if(rcvbuf[1] = 0xCA)
- {
- cout << "Measurement in progress..." << endl;
- }
- else
- {
- cerr << "Invalid command callback" << endl;
- return -1;
- }
- cout << "Measurement in progress..." << endl;
- }
- cout << "Pico device measurement completed" << endl;
- return 0;
- }
- int pico_stop()
- {
- sndbuf[0] = 0xAA;
- sndbuf[1] = 0x0E;
- if(socket->Send(sndbuf, 2) == -1)
- {
- cerr << "Failed to send data to socket" << endl;
- return -1;
- }
- if(socket->Receive(MAX_PACKET, rcvbuf) == -1)
- {
- cerr << "Failed to receive data from socket" << endl;
- return -1;
- }
- uint32_t bytes_received = socket->GetBytesReceived();
- if(bytes_received == 0)
- {
- cerr << "Server disconnected" << endl;
- return -1;
- }
- if(bytes_received < 2)
- {
- cerr << "Invalid buffer size" << endl;
- return -1;
- }
- if(rcvbuf[0] != 0xAA)
- {
- cerr << "Invalid magic number" << endl;
- return -1;
- }
- if(rcvbuf[1] == 0xFF)
- {
- if(bytes_received < 7)
- {
- cerr << "Invalid buffer size" << endl;
- return -1;
- }
- cerr << "Error at ADC: " << std::hex << rcvbuf[2] << endl;
- memcpy(&error_state, rcvbuf + 2, sizeof(uint8_t));
- memcpy(&error_code, rcvbuf + 3, sizeof(uint32_t));
- cerr << "Error code: " << std::hex << error_code << " " << return_fun(error_code) << endl;
- }
- else if(rcvbuf[1] != 0xCE)
- {
- cerr << "Invalid command callback" << endl;
- return -1;
- }
- cout << "Pico device measurement stopped" << endl;
- return 0;
- }
- int pico_exit()
- {
- sndbuf[0] = 0xAA;
- sndbuf[1] = 0x0D;
- if(socket->Send(sndbuf, 2) == -1)
- {
- cerr << "Failed to send data to socket" << endl;
- return -1;
- }
- if(socket->Receive(MAX_PACKET, rcvbuf) == -1)
- {
- cerr << "Failed to receive data from socket" << endl;
- return -1;
- }
- uint32_t bytes_received = socket->GetBytesReceived();
- if(bytes_received == 0)
- {
- cerr << "Server disconnected" << endl;
- return -1;
- }
- if(bytes_received < 2)
- {
- cerr << "Invalid buffer size" << endl;
- return -1;
- }
- if(rcvbuf[0] != 0xAA)
- {
- cerr << "Invalid magic number" << endl;
- return -1;
- }
- if(rcvbuf[1] == 0xFF)
- {
- if(bytes_received < 7)
- {
- cerr << "Invalid buffer size" << endl;
- return -1;
- }
- cerr << "Error at ADC: " << std::hex << rcvbuf[2] << endl;
- memcpy(&error_state, rcvbuf + 2, sizeof(uint8_t));
- memcpy(&error_code, rcvbuf + 3, sizeof(uint32_t));
- cerr << "Error code: " << std::hex << error_code << " " << return_fun(error_code) << endl;
- }
- else if(rcvbuf[1] != 0xCD)
- {
- cerr << "Invalid command callback" << endl;
- return -1;
- }
- cout << "Pico device exited" << endl;
- return 0;
- }
- int get_command()
- {
- if(true)
- {
- cout << "cmd$ ";
- std::getline(std::cin, line_edit);
- cout << endl;
- tokens = split(line_edit, " ");
- if(tokens.size() < 1)
- {
- cerr << "Invalid command" << endl;
- cout << endl;
- return -1;
- }
- if(tokens[0] == "open")
- {
- if(pico_open() != 0)
- {
- cerr << "Failed to open pico device" << endl;
- cout << endl;
- return -1;
- }
- }
- else if(tokens[0] == "xml_config")
- {
- if(tokens.size() < 2)
- {
- cerr << "Invalid command" << endl;
- cout << endl;
- return -1;
- }
- if(pico_xml_config(tokens[1]) != 0)
- {
- cerr << "Failed to configure pico device" << endl;
- cout << endl;
- return -1;
- }
- }
- else if(tokens[0] == "set_params")
- {
- if(tokens.size() < 5)
- {
- cerr << "Invalid command" << endl;
- cout << endl;
- return -1;
- }
- std::vector<uint32_t> points;
- std::vector<uint32_t> times;
- uint32_t sample_rate = std::stoi(tokens[2]);
- uint32_t number_channels = std::stoi(tokens[3]);
- uint32_t size = std::stoi(tokens[4]);
- points = string_to_vector(tokens[5]);
- times = string_to_vector(tokens[6]);
- if(points.size() != size || times.size() != size)
- {
- cerr << "Invalid data size" << endl;
- cout << endl;
- return -1;
- }
- if(pico_set_params(points.data(), times.data(), sample_rate, number_channels, size) != 0)
- {
- cerr << "Failed to set pico device parameters" << endl;
- cout << endl;
- return -1;
- }
- return 0;
- }
- else if(tokens[0] == "close")
- {
- if(pico_close() != 0)
- {
- cerr << "Failed to close pico device" << endl;
- cout << endl;
- return -1;
- }
- }
- else if(tokens[0] == "exit")
- {
- if(pico_exit() != 0)
- {
- cerr << "Failed to exit pico device" << endl;
- cout << endl;
- return -1;
- }
- return 1;
- }
- else if(tokens[0] == "get_current_params")
- {
- if(pico_get_current_params() != 0)
- {
- cerr << "Failed to get pico device parameters" << endl;
- cout << endl;
- return -1;
- }
- }
- else if(tokens[0] == "probe")
- {
- if(pico_probe() != 0)
- {
- cerr << "Failed to probe pico device" << endl;
- cout << endl;
- return -1;
- }
- }
- else if(tokens[0] == "set_points")
- {
- if(tokens.size() < 3)
- {
- cerr << "Invalid command" << endl;
- cout << endl;
- return -1;
- }
- uint32_t size = std::stoi(tokens[1]);
- std::vector<uint32_t> points = string_to_vector(tokens[2]);
- if(points.size() != size)
- {
- cerr << "Invalid data size" << endl;
- cout << endl;
- return -1;
- }
- if(pico_set_points(points.data(), size) != 0)
- {
- cerr << "Failed to set pico device points" << endl;
- cout << endl;
- return -1;
- }
- }
- else if(tokens[0] == "set_sample_rate")
- {
- if(tokens.size() < 2)
- {
- cerr << "Invalid command" << endl;
- cout << endl;
- return -1;
- }
- uint32_t sample_rate = std::stoi(tokens[1]);
- if(pico_set_sample_rate(sample_rate) != 0)
- {
- cerr << "Failed to set pico device sample rate" << endl;
- cout << endl;
- return -1;
- }
- }
- else if(tokens[0] == "set_times")
- {
- if(tokens.size() < 3)
- {
- cerr << "Invalid command" << endl;
- cout << endl;
- return -1;
- }
- uint32_t size = std::stoi(tokens[1]);
- std::vector<uint32_t> times = string_to_vector(tokens[2]);
- if(times.size() != size)
- {
- cerr << "Invalid data size" << endl;
- cout << endl;
- return -1;
- }
- if(pico_set_times(times.data(), size) != 0)
- {
- cerr << "Failed to set pico device times" << endl;
- cout << endl;
- return -1;
- }
- }
- else if(tokens[0] == "configure_channels")
- {
- if(tokens.size() < 6)
- {
- cerr << "Invalid command" << endl;
- cout << endl;
- return -1;
- }
- uint32_t number_channels = std::stoi(tokens[1]); // number of channels (1-8)
- uint8_t trigger_channel = std::stoi(tokens[2]); // trigger channel (0-7, 0 = channel A, 1 = channel B, ...)
- int32_t direction = std::stoi(tokens[3]); // trigger direction (0 = rising, 1 = falling)
- uint16_t threshold = std::stoi(tokens[4]); // trigger threshold (0-65535)
- int16_t autoTrigger_ms = std::stoi(tokens[5]); // auto trigger time (0-65535 ms)
- if(pico_configure_channels(number_channels, trigger_channel, direction, threshold, autoTrigger_ms) != 0)
- {
- cerr << "Failed to configure pico device channels" << endl;
- cout << endl;
- return -1;
- }
- }
- else if(tokens[0] == "begin_measurement")
- {
- if(pico_begin_measurement() != 0)
- {
- cerr << "Failed to begin pico device measurement" << endl;
- cout << endl;
- return -1;
- }
- }
- else if(tokens[0] == "stop")
- {
- if(pico_stop() != 0)
- {
- cerr << "Failed to stop pico device measurement" << endl;
- cout << endl;
- return -1;
- }
- }
- else if(tokens[0] == "help")
- {
- cout << "Available commands:" << endl;
- cout << "open" << endl;
- cout << "xml_config <filename>" << endl;
- cout << "set_params <points> <times> <sample_rate> <number_channels> <size>" << endl;
- cout << "close" << endl;
- cout << "exit" << endl;
- cout << "get_current_params" << endl;
- cout << "probe" << endl;
- cout << "set_points <points> <size>" << endl;
- cout << "set_sample_rate <sample_rate>" << endl;
- cout << "set_times <times> <size>" << endl;
- cout << "configure_channels <number_channels> <trigger_channel> <direction> <threshold> <autoTrigger_ms>" << endl;
- cout << "begin_measurement" << endl;
- cout << "stop" << endl;
- }
- else if(tokens[0] == "test")
- {
- cout << "Test command received" << endl;
- }
- else
- {
- cerr << "Unknown command" << endl;
- cout << endl;
- return -1;
- }
- }
- cout << endl;
- return 0;
- }
- };
- int main()
- {
- cout << "Open socket" << endl;
- CActiveSocket SocketActive(CSimpleSocket::CSocketType::SocketTypeTcp);
- if (!SocketActive.Initialize())
- {
- cerr << "Socket initialization failed" << endl;
- return -1;
- }
- if(!SocketActive.Open("127.0.0.1", 5003))
- {
- cerr << "Socket opening failed" << endl;
- return -1;
- }
- PicoLocalClient pico_client(&SocketActive);
- while(pico_client.get_command() != 1) {
- // empty
- }
- return 0;
- }
|