Add read/write cycles

This commit is contained in:
Robert 2023-07-02 18:32:14 +02:00
parent e227933b53
commit 90fbb5109c
5 changed files with 46 additions and 0 deletions

View file

@ -40,6 +40,8 @@ int main(int argc, char** argv) {
dev1->Connect(dev2); dev1->Connect(dev2);
network.Cycle();
bool shouldClose = false; bool shouldClose = false;
SDL_Event event; SDL_Event event;

View file

@ -25,6 +25,9 @@ public:
void Connect(std::shared_ptr<Device> other); void Connect(std::shared_ptr<Device> other);
void Send();
void Receive();
private: private:
void parseAndSetMac(const std::string& macAddress); void parseAndSetMac(const std::string& macAddress);

View file

@ -15,6 +15,10 @@ public:
void AddDevice(std::shared_ptr<Device> device); void AddDevice(std::shared_ptr<Device> device);
void SendCycle();
void ReceiveCycle();
void Cycle();
private: private:
std::vector<std::shared_ptr<Device>> devices; std::vector<std::shared_ptr<Device>> devices;
std::string name; std::string name;

View file

@ -34,6 +34,26 @@ void Device::Connect(std::shared_ptr<Device> other) {
other->port->Connect(port); other->port->Connect(port);
} }
void Device::Send() {
port->Send({40});
}
void Device::Receive() {
std::vector<uint8_t> data = port->Receive();
if (data.size() != 0) {
std::cout << "Device " << *this << " received data: " << std::endl;
std::cout << "{";
for (uint8_t byte : data) {
std::cout << (int)byte << ", ";
}
std::cout << "}" << std::endl;
}
}
std::ostream& operator<<(std::ostream& os, const Device& device) { std::ostream& operator<<(std::ostream& os, const Device& device) {
printf( printf(
"%02X:%02X:%02X:%02X:%02X:%02X", "%02X:%02X:%02X:%02X:%02X:%02X",

View file

@ -11,6 +11,23 @@ void Network::AddDevice(std::shared_ptr<Device> device) {
devices.push_back(device); devices.push_back(device);
} }
void Network::SendCycle() {
for (auto device : devices) {
device->Send();
}
}
void Network::ReceiveCycle() {
for (auto device : devices) {
device->Receive();
}
}
void Network::Cycle() {
SendCycle();
ReceiveCycle();
}
std::ostream& operator<<(std::ostream& os, const Network& network) { std::ostream& operator<<(std::ostream& os, const Network& network) {
os << "Network '" << network.name << "'" << std::endl << std::endl; os << "Network '" << network.name << "'" << std::endl << std::endl;