Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Console.h
00001 #pragma once 00002 00003 #include "mbed.h" 00004 00005 #include "Command.h" 00006 #include "Reader.h" 00007 00008 class Console 00009 { 00010 private: 00011 Console(Console const&); 00012 void operator=(Console const&); 00013 00014 uint32_t timeout; 00015 Reader *reader; 00016 00017 Command* parse(string command) const; 00018 00019 public: 00020 explicit Console(uint32_t timeout = 120); 00021 00022 void start(); 00023 bool execute(Command* command); 00024 bool isFinishCommand(const string &command) const; 00025 };
Generated on Fri Aug 19 2022 07:33:34 by
1.7.2