Skip to content

Commit

Permalink
Fix whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
Sven Hädrich committed Sep 13, 2024
1 parent e13db0c commit efa2dd8
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion source/board/board.c
Original file line number Diff line number Diff line change
Expand Up @@ -95,4 +95,4 @@ void board_init(void)
void board_system_init(void)
{
board_setup_clocking(); // TODO make at least the system clock init part of the pre-main init
}
}
2 changes: 1 addition & 1 deletion source/board/led.c
Original file line number Diff line number Diff line change
Expand Up @@ -102,4 +102,4 @@ void board_led_init(void)
for (uint_fast8_t i = 0; i < LED_MAX; i++) {
reset(i);
}
}
}
2 changes: 1 addition & 1 deletion source/board/led.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ enum board_led { LED_HEARTBEAT = 0, LED_DALI = 1, LED_SERIAL = 2, LED_MAX = 3 };

void board_flash(enum board_led id);
void board_indicate_error(void);
void board_led_init(void);
void board_led_init(void);
2 changes: 1 addition & 1 deletion source/dali_101_lpc/dali_101.h
Original file line number Diff line number Diff line change
Expand Up @@ -131,4 +131,4 @@ void dali_tx_irq_callback(void);
void dali_rx_irq_capture_callback(void);
void dali_rx_irq_stopbit_match_callback(void);
void dali_rx_irq_period_match_callback(void);
void dali_rx_irq_query_match_callback(void);
void dali_rx_irq_query_match_callback(void);
12 changes: 6 additions & 6 deletions source/freertos.c
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
#include <stdbool.h>
#include "FreeRTOS.h"
#include "task.h"

#include "board/led.h"

#include <stdbool.h> // for true
#include <stdint.h> // for uint16_t
#include "FreeRTOS.h" // for vAssertFailed
#include "board/led.h" // for board_indicate_error
#include "portable.h" // for vApplicationMallocFailedHook
#include "task.h" // for TaskHandle_t, tskTaskControlBlock, vApplicationMallocFailedHook

void vApplicationStackOverflowHook(__attribute__((unused)) TaskHandle_t xTask, __attribute__((unused)) char* pcTaskName)
{
Expand Down
2 changes: 1 addition & 1 deletion source/serial.c
Original file line number Diff line number Diff line change
Expand Up @@ -402,4 +402,4 @@ void serial_init(void)

serial_uart_init();
serial_initialize_uart_interrupt();
}
}

0 comments on commit efa2dd8

Please sign in to comment.