Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 3e73e04

Browse files
committedJun 26, 2023
Rename bootloader_core into luos_bootloader
1 parent 506e9c8 commit 3e73e04

File tree

14 files changed

+13
-13
lines changed

14 files changed

+13
-13
lines changed
 

‎engine/bootloader/bootloader_core.c ‎engine/bootloader/luos_bootloader.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#include <stdint.h>
99
#include <stdbool.h>
1010

11-
#include "bootloader_core.h"
11+
#include "luos_bootloader.h"
1212
#include "luos_hal.h"
1313
#include "luos_engine.h"
1414
#include "routing_table.h"
File renamed without changes.

‎examples/projects/NUCLEO-F072RB/bootloader/src/main.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
/* USER CODE BEGIN Includes */
2626
#include "luos_engine.h"
2727
#include "robus.h"
28-
#include "bootloader_core.h"
28+
#include "luos_bootloader.h"
2929
/* USER CODE END Includes */
3030

3131
/* Private typedef -----------------------------------------------------------*/

‎examples/projects/NUCLEO-F401RE/bootloader/src/main.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
/* USER CODE BEGIN Includes */
2525
#include "luos_engine.h"
2626
#include "robus.h"
27-
#include "bootloader_core.h"
27+
#include "luos_bootloader.h"
2828
/* USER CODE END Includes */
2929

3030
/* Private typedef -----------------------------------------------------------*/

‎examples/projects/NUCLEO-F410RB/bootloader/src/main.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
/* USER CODE BEGIN Includes */
2525
#include "luos_engine.h"
2626
#include "robus.h"
27-
#include "bootloader_core.h"
27+
#include "luos_bootloader.h"
2828
/* USER CODE END Includes */
2929

3030
/* Private typedef -----------------------------------------------------------*/

‎examples/projects/NUCLEO-G431KB/bootloader/src/main.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
/* USER CODE BEGIN Includes */
2525
#include "luos_engine.h"
2626
#include "robus.h"
27-
#include "bootloader_core.h"
27+
#include "luos_bootloader.h"
2828
/* USER CODE END Includes */
2929

3030
/* Private typedef -----------------------------------------------------------*/

‎examples/projects/NUCLEO-G474RE/bootloader/src/main.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
/* USER CODE BEGIN Includes */
2525
#include "luos_engine.h"
2626
#include "robus.h"
27-
#include "bootloader_core.h"
27+
#include "luos_bootloader.h"
2828
/* USER CODE END Includes */
2929

3030
/* Private typedef -----------------------------------------------------------*/

‎examples/projects/NUCLEO-L073RZ/bootloader/src/main.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
/* USER CODE BEGIN Includes */
2424
#include "luos_engine.h"
2525
#include "robus.h"
26-
#include "bootloader_core.h"
26+
#include "luos_bootloader.h"
2727
/* USER CODE END Includes */
2828

2929
/* Private typedef -----------------------------------------------------------*/

‎examples/projects/NUCLEO-L432KC/bootloader/src/main.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
/* USER CODE BEGIN Includes */
2525
#include "luos_engine.h"
2626
#include "robus.h"
27-
#include "bootloader_core.h"
27+
#include "luos_bootloader.h"
2828
/* USER CODE END Includes */
2929

3030
/* Private typedef -----------------------------------------------------------*/

‎examples/projects/SAMD21XPLAINED/Bootloader/firmware/src/main.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030
#include "luos_engine.h"
3131
#include "robus.h"
32-
#include "bootloader_core.h"
32+
#include "luos_bootloader.h"
3333

3434
// *****************************************************************************
3535
// *****************************************************************************

‎examples/projects/STM32F4-discovery/bootloader/src/main.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
/* USER CODE BEGIN Includes */
2525
#include "luos_engine.h"
2626
#include "robus.h"
27-
#include "bootloader_core.h"
27+
#include "luos_bootloader.h"
2828
/* USER CODE END Includes */
2929

3030
/* Private typedef -----------------------------------------------------------*/

‎examples/projects/STM32L4S5_discovery/bootloader/src/main.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
/* USER CODE BEGIN Includes */
2525
#include "luos_engine.h"
2626
#include "robus.h"
27-
#include "bootloader_core.h"
27+
#include "luos_bootloader.h"
2828
/* USER CODE END Includes */
2929

3030
/* Private typedef -----------------------------------------------------------*/

‎examples/projects/l0/bootloader/src/main.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
/* USER CODE BEGIN Includes */
2626
#include "luos_engine.h"
2727
#include "robus.h"
28-
#include "bootloader_core.h"
28+
#include "luos_bootloader.h"
2929
/* USER CODE END Includes */
3030

3131
/* Private typedef -----------------------------------------------------------*/

‎tool_services/gate/TinyJSON/bootloader_ex.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#include <stdio.h>
88
#include <stdint.h>
99
#include "bootloader_ex.h"
10-
#include "bootloader_core.h"
10+
#include "luos_bootloader.h"
1111
#include "gate_config.h"
1212
#include "pipe_link.h"
1313
#include "routing_table.h"

0 commit comments

Comments
 (0)
Please sign in to comment.