From d8a3f59d29ed1ff8441b65cf255f08a3db365102 Mon Sep 17 00:00:00 2001 From: Ivan Grokhotkov Date: Wed, 20 Jan 2021 01:15:51 +0100 Subject: [PATCH] examples/blink: convert tabs to spaces --- examples/get-started/blink/main/blink.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/get-started/blink/main/blink.c b/examples/get-started/blink/main/blink.c index 2c27a08826..8d41246e84 100644 --- a/examples/get-started/blink/main/blink.c +++ b/examples/get-started/blink/main/blink.c @@ -30,11 +30,11 @@ void app_main(void) gpio_set_direction(BLINK_GPIO, GPIO_MODE_OUTPUT); while(1) { /* Blink off (output low) */ - printf("Turning off the LED\n"); + printf("Turning off the LED\n"); gpio_set_level(BLINK_GPIO, 0); vTaskDelay(1000 / portTICK_PERIOD_MS); /* Blink on (output high) */ - printf("Turning on the LED\n"); + printf("Turning on the LED\n"); gpio_set_level(BLINK_GPIO, 1); vTaskDelay(1000 / portTICK_PERIOD_MS); }