Merge pull request #10810 from gschorcht/doc_fix_params_h_warnings

doc: fix warnings in *_params.h
This commit is contained in:
Gunar Schorcht 2019-01-18 08:41:17 +01:00 committed by GitHub
commit bb56a9f9c2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 10 additions and 0 deletions

View File

@ -44,6 +44,9 @@ extern "C" {
* @}
*/
/**
* @brief socket_zep configurations
*/
extern socket_zep_params_t socket_zep_params[SOCKET_ZEP_MAX];
#ifdef __cplusplus

View File

@ -79,6 +79,10 @@ static const ads101x_params_t ads101x_params[] =
{
ADS101X_PARAMS
};
/**
* @brief ADS101X/111x alert defaults if not defined for a board or application
*/
static const ads101x_alert_params_t ads101x_alert_params[] =
{
ADS101X_ALERT_PARAMS

View File

@ -52,6 +52,9 @@ static const srf04_params_t srf04_params[] = {
SRF04_PARAMS
};
/**
* @brief Number of SRF04 devices
*/
#define SRF04_NUMOF (sizeof(srf04_params) / sizeof(srf04_params[0]))
#ifdef __cplusplus