| # |
| # For a description of the syntax of this configuration file, |
| # see the file kconfig-language.txt in the NuttX tools repository. |
| # |
| |
| menuconfig SYSTEM_CLE |
| bool "EMACS-like Command Line Editor" |
| default n |
| ---help--- |
| Enable support for NuttX tiny EMACS-like command line editor. |
| |
| Omitted features: |
| - No keypad cursor control support |
| - No word oriented operations. |
| |
| Assumptions and Limitations: |
| - A VT100 host terminal is assumed. |
| - A fixed width character set (like Courier) is assumed |
| |
| Memory Usage: Looks like 1.5-2KB |
| |
| if SYSTEM_CLE |
| |
| config SYSTEM_CLE_DEBUGLEVEL |
| int "Debug level" |
| default 0 |
| range 0 2 |
| ---help--- |
| 0=Debug off; 1=Print errors on console; 2=Print debug information |
| on the console. |
| |
| Debug output is generated with syslog. The editor works on |
| /dev/console. In order to get both a usable display and also |
| readable debug output, syslog'ing should sent to some device other |
| than /dev/console (which is the default). |
| |
| endif # SYSTEM_CLE |