1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

nanocoap: homogenize name of the module

This commit is contained in:
Benjamin Valentin 2023-06-08 16:29:12 +02:00
parent 72914bb197
commit 661829f43f
7 changed files with 12 additions and 12 deletions

View File

@ -10,7 +10,7 @@
*/
/**
* @defgroup net_nanocoap Nanocoap small CoAP library
* @defgroup net_nanocoap nanoCoAP small CoAP library
* @ingroup net
* @brief CoAP library optimized for minimal resource usage
*
@ -112,7 +112,7 @@ extern "C" {
#endif
/**
* @name Nanocoap specific CoAP method flags used in coap_handlers array
* @name nanoCoAP specific CoAP method flags used in coap_handlers array
* @anchor nanocoap_method_flags
* @{
*/
@ -130,12 +130,12 @@ extern "C" {
/** @} */
/**
* @brief Nanocoap-specific value to indicate no format specified
* @brief nanoCoAP-specific value to indicate no format specified
*/
#define COAP_FORMAT_NONE (UINT16_MAX)
/**
* @defgroup net_nanocoap_conf Nanocoap compile configurations
* @defgroup net_nanocoap_conf nanoCoAP compile configurations
* @ingroup net_nanocoap
* @ingroup config
* @{

View File

@ -7,7 +7,7 @@
*/
/**
* @defgroup net_nanocoap_cache Nanocoap-Cache implementation
* @defgroup net_nanocoap_cache nanoCoAP-Cache implementation
* @ingroup net_nanocoap
* @brief A cache implementation for nanocoap response messages
*

View File

@ -9,7 +9,7 @@
*/
/**
* @defgroup net_nanosock Nanocoap Sock
* @defgroup net_nanosock nanoCoAP Sock
* @ingroup net
* @brief Synchronous sock based messaging with nanocoap
*

View File

@ -5,13 +5,13 @@
# directory for more details.
#
# Nanocoap provides CoAP functionalities
# nanoCoAP provides CoAP functionalities
config USEMODULE_NANOCOAP
bool
select HAS_PROTOCOL_COAP
menuconfig KCONFIG_USEMODULE_NANOCOAP
bool "Configure Nanocoap module"
bool "Configure nanoCoAP module"
depends on USEMODULE_NANOCOAP
if KCONFIG_USEMODULE_NANOCOAP
@ -36,7 +36,7 @@ config NANOCOAP_QS_MAX
default 64
menuconfig KCONFIG_USEMODULE_NANOCOAP_CACHE
bool "Configure Nanocoap Cache module"
bool "Configure nanoCoAP Cache module"
depends on USEMODULE_NANOCOAP_CACHE
if KCONFIG_USEMODULE_NANOCOAP_CACHE

View File

@ -13,7 +13,7 @@
* @{
*
* @file
* @brief Nanocoap implementation
* @brief nanoCoAP implementation
*
* @author Kaspar Schleiser <kaspar@schleiser.de>
* @author Hauke Petersen <hauke.petersen@fu-berlin.de>

View File

@ -13,7 +13,7 @@
* @{
*
* @file
* @brief Nanocoap sock helpers
* @brief nanoCoAP sock helpers
*
* @author Kaspar Schleiser <kaspar@schleiser.de>
* @author Benjamin Valentin <benjamin.valentin@ml-pa.com>

View File

@ -11,7 +11,7 @@
* @{
*
* @file
* @brief Nanocoap VFS helpers
* @brief nanoCoAP VFS helpers
*
* @author Benjamin Valentin <benjamin.valentin@ml-pa.com>
*