Mbed OS-based modules providing common functionalities and a standardized way of structuring the firmware.
By using these, the programmer can focus solely on the application particularities.
|-- Module
| Base class of all modules.
|
|-- examples
| Usage examples.
|
|-- intfs
| | Interface modules.
| |
| |-- TCPFwUpdateModule
| | Remote firmware update interface modules.
| |
| |-- ctrl
| | |-- CtrlIntfModule
| | | Base class of text-based control interface modules.
| | |
| | |-- TCPCtrlIntfModule
| | | TCP text-based control interface module.
| | |
| | |-- UARTCtrlIntfModule
| | | UART text-based control interface module.
|
| |-- stream
| | |-- TCPStreamIntfModule
| | | TCP binary stream interface module.
|
|-- scripts
| |-- intfs
| | |-- TCPFwUpdateModule
| | | Script for interfacing with TCPFwUpdateModule.
CtrlCoreModule is the module responsible for receiving, parsing, acting on and
responding to requests (commands) coming from the interface modules.
Add this repository as a submodule of your application.
git submodule add [email protected]:cnpem/mbed-os-mods.git
