├── ClassDiagram ├── Handler.cpp ├── Handler.h ├── Looper.cpp ├── Looper.h ├── OS-specific ├── QueueWrapper.h ├── Thread.cpp └── Thread.h ├── Utils ├── CommandInterpreter.cpp ├── CommandInterpreter.h ├── CommandInterpreterThread.cpp ├── CommandInterpreterThread.h ├── LedProcessorThread.cpp ├── LedProcessorThread.h ├── RxBuffer.cpp ├── RxBuffer.h ├── TxBuffer.cpp ├── TxBuffer.h └── readme └── readme /ClassDiagram: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuriykulikov/Abandoned-Event-driven_Framework_for_Embedded_Systems/HEAD/ClassDiagram -------------------------------------------------------------------------------- /Handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuriykulikov/Abandoned-Event-driven_Framework_for_Embedded_Systems/HEAD/Handler.cpp -------------------------------------------------------------------------------- /Handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuriykulikov/Abandoned-Event-driven_Framework_for_Embedded_Systems/HEAD/Handler.h -------------------------------------------------------------------------------- /Looper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuriykulikov/Abandoned-Event-driven_Framework_for_Embedded_Systems/HEAD/Looper.cpp -------------------------------------------------------------------------------- /Looper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuriykulikov/Abandoned-Event-driven_Framework_for_Embedded_Systems/HEAD/Looper.h -------------------------------------------------------------------------------- /OS-specific/QueueWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuriykulikov/Abandoned-Event-driven_Framework_for_Embedded_Systems/HEAD/OS-specific/QueueWrapper.h -------------------------------------------------------------------------------- /OS-specific/Thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuriykulikov/Abandoned-Event-driven_Framework_for_Embedded_Systems/HEAD/OS-specific/Thread.cpp -------------------------------------------------------------------------------- /OS-specific/Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuriykulikov/Abandoned-Event-driven_Framework_for_Embedded_Systems/HEAD/OS-specific/Thread.h -------------------------------------------------------------------------------- /Utils/CommandInterpreter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuriykulikov/Abandoned-Event-driven_Framework_for_Embedded_Systems/HEAD/Utils/CommandInterpreter.cpp -------------------------------------------------------------------------------- /Utils/CommandInterpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuriykulikov/Abandoned-Event-driven_Framework_for_Embedded_Systems/HEAD/Utils/CommandInterpreter.h -------------------------------------------------------------------------------- /Utils/CommandInterpreterThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuriykulikov/Abandoned-Event-driven_Framework_for_Embedded_Systems/HEAD/Utils/CommandInterpreterThread.cpp -------------------------------------------------------------------------------- /Utils/CommandInterpreterThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuriykulikov/Abandoned-Event-driven_Framework_for_Embedded_Systems/HEAD/Utils/CommandInterpreterThread.h -------------------------------------------------------------------------------- /Utils/LedProcessorThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuriykulikov/Abandoned-Event-driven_Framework_for_Embedded_Systems/HEAD/Utils/LedProcessorThread.cpp -------------------------------------------------------------------------------- /Utils/LedProcessorThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuriykulikov/Abandoned-Event-driven_Framework_for_Embedded_Systems/HEAD/Utils/LedProcessorThread.h -------------------------------------------------------------------------------- /Utils/RxBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuriykulikov/Abandoned-Event-driven_Framework_for_Embedded_Systems/HEAD/Utils/RxBuffer.cpp -------------------------------------------------------------------------------- /Utils/RxBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuriykulikov/Abandoned-Event-driven_Framework_for_Embedded_Systems/HEAD/Utils/RxBuffer.h -------------------------------------------------------------------------------- /Utils/TxBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuriykulikov/Abandoned-Event-driven_Framework_for_Embedded_Systems/HEAD/Utils/TxBuffer.cpp -------------------------------------------------------------------------------- /Utils/TxBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuriykulikov/Abandoned-Event-driven_Framework_for_Embedded_Systems/HEAD/Utils/TxBuffer.h -------------------------------------------------------------------------------- /Utils/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuriykulikov/Abandoned-Event-driven_Framework_for_Embedded_Systems/HEAD/Utils/readme -------------------------------------------------------------------------------- /readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuriykulikov/Abandoned-Event-driven_Framework_for_Embedded_Systems/HEAD/readme --------------------------------------------------------------------------------