瀏覽代碼

fix endings

Wizmo2 1 年之前
父節點
當前提交
7f0b411dac
共有 2 個文件被更改,包括 2 次插入2 次删除
  1. 1 1
      components/led_strip/led_strip.h
  2. 1 1
      components/led_strip/led_vu.c

+ 1 - 1
components/led_strip/led_strip.h

@@ -43,7 +43,7 @@ struct led_strip_t {
 
     // RMT peripheral settings
     rmt_channel_t rmt_channel;
-
+    
     gpio_num_t gpio; // Must be less than GPIO_NUM_33
 
     struct led_color_t *led_strip_working;

+ 1 - 1
components/led_strip/led_vu.c

@@ -100,7 +100,7 @@ void led_vu_init()
     led_strip_config.led_strip_showing = heap_caps_malloc(strip.length * sizeof(struct led_color_t), MALLOC_CAP_8BIT);
     led_strip_config.gpio = strip.gpio;
     led_strip_config.rmt_channel = rmt_system_base_channel++;
-   
+    
     // initialize driver 
     bool led_init_ok = led_strip_init(&led_strip_config);
     if (led_init_ok) {