This is an automated email from the ASF dual-hosted git repository. pkarashchenko pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/nuttx-apps.git
commit 800f1f4bae3bfcae206bed7f29581858cb0ed556 Author: simbit18 <101105604+simbi...@users.noreply.github.com> AuthorDate: Wed Mar 22 19:20:17 2023 +0100 apps/examples/adc/adc.h: fix nxstyle fix error: Relative file path does not match actual file --- examples/adc/adc.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/examples/adc/adc.h b/examples/adc/adc.h index ca136a9de..e7bad34fd 100644 --- a/examples/adc/adc.h +++ b/examples/adc/adc.h @@ -1,5 +1,5 @@ /**************************************************************************** - * apps/examples/examples/adc/adc.h + * apps/examples/adc/adc.h * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with @@ -30,10 +30,13 @@ /**************************************************************************** * Pre-processor Definitions ****************************************************************************/ + /* Configuration ************************************************************/ + /* CONFIG_NSH_BUILTIN_APPS - Build the ADC test as an NSH built-in function. * Default: Built as a standalone program - * CONFIG_EXAMPLES_ADC_DEVPATH - The default path to the ADC device. Default: /dev/adc0 + * CONFIG_EXAMPLES_ADC_DEVPATH - The default path to the ADC device. + * Default: /dev/adc0 * CONFIG_EXAMPLES_ADC_NSAMPLES - This number of samples is * collected and the program terminates. Default: Samples are collected * indefinitely.