|
TinyTelnetServer
|
Automatically include the telnet namespace. More...
Classes | |
| class | Allocator |
| Memory allocateator which uses malloc. More... | |
| class | AllocatorESP32 |
| ESP32 Memory allocateator which forces the allocation with the defined attributes (default MALLOC_CAP_8BIT | MALLOC_CAP_INTERNAL) More... | |
| class | AllocatorExt |
| Memory allocateator which uses ps_malloc (on the ESP32) and if this fails it resorts to malloc. More... | |
| class | AllocatorPSRAM |
| Memory allocateator which uses ps_malloc to allocate the memory in PSRAM on the ESP32. More... | |
| class | KARadioCommands |
| Class providing KA-Radio control commands for TinyTelnetServer. More... | |
| class | Logger |
| Logger for the TelnetServer. More... | |
| class | SDFileCommands |
| Class providing SD card file commands for TinyTelnetServer. More... | |
| class | Str |
| String which keeps the data on the heap. We grow the allocated memory only if the copy source is not fitting. More... | |
| class | StrView |
| String View: A simple wrapper to provide string functions on existing allocated char*. If the underlying char* is a const we do not allow any updates; The ownership of the char* must be managed externally! More... | |
| class | TinySerialServer |
| A simple serial server for Arduino. Call the addCommand method to register your commands. More... | |
| class | TinyTelnetServer |
| A simple telnet server for Arduino. Call the addCommand method to register your commands. More... | |
| class | Vector |
| Vector implementation which provides the most important methods as defined by std::vector. This class it is quite handy to have and most of the times quite better then dealing with raw c arrays. More... | |
Variables | |
| static String | current_dir = "/" |
| static AllocatorExt | DefaultAllocator |
| static int | max_file_length = 60 |
Automatically include the telnet namespace.