rotary:[#9] process interrupts and send to master

This commit is contained in:
Vasily Davydov
2023-04-27 01:44:17 +03:00
parent da50fa4de1
commit 2ed0653056
4 changed files with 52 additions and 8 deletions

View File

@@ -47,6 +47,11 @@ public:
return pos->second;
}
void inline setDataOf(Event::EventType e, EventRawData data)
{
events[e] = data;
}
private:
std::map <Event::EventType, EventRawData> events;
};