123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155 |
- #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;
- points = string_to_vector(tokens[1]);
- times = string_to_vector(tokens[2]);
- uint32_t sample_rate = std::stoi(tokens[3]);
- uint32_t number_channels = std::stoi(tokens[4]);
- uint32_t size = std::stoi(tokens[5]);
- 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;
- }
|