1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00

Merge pull request #17484 from aabadie/pr/sys/shell_remove_deprecated_defines

sys/shell: remove deprecated SHELL_NO_{ECHO,PROMPT} defines
This commit is contained in:
benpicco 2022-01-07 19:50:12 +01:00 committed by GitHub
commit 9829ac2041
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -67,24 +67,6 @@ extern "C" {
#define CONFIG_SHELL_NO_PROMPT 0 #define CONFIG_SHELL_NO_PROMPT 0
#endif #endif
/**
* @brief Set to 1 to disable shell's echo
* @deprecated This has been replaced by @ref CONFIG_SHELL_NO_ECHO and will be
* removed after release 2021.07.
*/
#ifndef SHELL_NO_ECHO
#define SHELL_NO_ECHO CONFIG_SHELL_NO_ECHO
#endif
/**
* @brief Set to 1 to disable shell's prompt
* @deprecated This has been replaced by @ref CONFIG_SHELL_NO_PROMPT and will be
* removed after release 2021.07.
*/
#ifndef SHELL_NO_PROMPT
#define SHELL_NO_PROMPT CONFIG_SHELL_NO_PROMPT
#endif
/** @} */ /** @} */
/** /**