Skip to content

Commit 3b301e7

Browse files
committed
samples: cellular: nrf_cloud_multi_service: Fix Kconfig indentations
Fix Kconfig style issues in the sample's Kconfig file. Fixed indentations and order of configs parameters (type first). Signed-off-by: Robert Lubos <[email protected]>
1 parent 124b2bb commit 3b301e7

File tree

1 file changed

+26
-25
lines changed
  • samples/cellular/nrf_cloud_multi_service

1 file changed

+26
-25
lines changed

samples/cellular/nrf_cloud_multi_service/Kconfig

Lines changed: 26 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -154,19 +154,20 @@ choice
154154
default LED_INDICATION_GPIO if BOARD_NRF9160DK_NRF9160_NS || BOARD_NRF9161DK_NRF9161_NS || $(dt_compat_enabled,gpio-leds)
155155
default LED_INDICATION_DISABLED
156156

157-
config LED_INDICATION_PWM
158-
select LED
159-
select LED_PWM
160-
select PWM
161-
bool "Enable LED indication using the pwm-leds driver"
162-
163-
config LED_INDICATION_GPIO
164-
select LED
165-
select LED_GPIO
166-
bool "Enable LED indication using the gpio-leds driver"
167-
168-
config LED_INDICATION_DISABLED
169-
bool "Disable LED indication"
157+
config LED_INDICATION_PWM
158+
bool "Enable LED indication using the pwm-leds driver"
159+
select LED
160+
select LED_PWM
161+
select PWM
162+
163+
config LED_INDICATION_GPIO
164+
bool "Enable LED indication using the gpio-leds driver"
165+
select LED
166+
select LED_GPIO
167+
168+
config LED_INDICATION_DISABLED
169+
bool "Disable LED indication"
170+
170171
endchoice
171172

172173
choice
@@ -176,28 +177,28 @@ choice
176177
default LED_INDICATOR_4LED if !LED_INDICATION_DISABLED
177178
default LED_INDICATOR_NONE
178179

179-
config LED_INDICATOR_RGB
180-
depends on LED_INDICATION_PWM
181-
bool "A single RGB LED"
180+
config LED_INDICATOR_RGB
181+
bool "A single RGB LED"
182+
depends on LED_INDICATION_PWM
182183

183-
config LED_INDICATOR_4LED
184-
depends on !LED_INDICATION_DISABLED
185-
bool "Four binary LEDs"
184+
config LED_INDICATOR_4LED
185+
bool "Four binary LEDs"
186+
depends on !LED_INDICATION_DISABLED
186187

187-
config LED_INDICATOR_NONE
188-
depends on LED_INDICATION_DISABLED
189-
bool "No indicator LEDs"
188+
config LED_INDICATOR_NONE
189+
bool "No indicator LEDs"
190+
depends on LED_INDICATION_DISABLED
190191

191192
endchoice
192193

193194
config LED_VERBOSE_INDICATION
194-
depends on !LED_INDICATION_DISABLED
195195
bool "Enables extra LED status indications"
196+
depends on !LED_INDICATION_DISABLED
196197
default y
197198

198199
config LED_CONTINUOUS_INDICATION
199-
depends on !LED_INDICATION_DISABLED
200200
bool "Show an idle pattern instead of turning LEDs off"
201+
depends on !LED_INDICATION_DISABLED
201202
default y
202203

203204
config GNSS_FIX_TIMEOUT_SECONDS
@@ -225,8 +226,8 @@ config TEST_COUNTER_MULTIPLIER
225226
It is useful for load testing.
226227

227228
config AT_CMD_REQUESTS
228-
depends on !NRF_CLOUD_COAP
229229
bool "Enables remote execution of AT commands using device messages"
230+
depends on !NRF_CLOUD_COAP
230231
default y
231232

232233
config AT_CMD_REQUEST_RESPONSE_BUFFER_LENGTH

0 commit comments

Comments
 (0)