Skip to content

Commit 69df34b

Browse files
committed
fixed directory problems
1 parent 0600381 commit 69df34b

File tree

9 files changed

+13
-13
lines changed

9 files changed

+13
-13
lines changed

.DS_Store

0 Bytes
Binary file not shown.

.github/workflows/build-and-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
-o build/test.elf \
5555
Src/can_wrapper/main.c Src/can_wrapper/can_wrapper.c Src/can_wrapper/test_can_wrapper.c \
5656
Src/can_wrapper/tx_cache.c Src/can_wrapper/can_command_list.c Src/debug/debug_logger.c \
57-
Src/debug/print.c Src/debug/log_buffer.c \
57+
Src/debug/log_buffer.c \
5858
-lc -lm -lnosys
5959
6060
- name: Build Production Version
@@ -76,7 +76,7 @@ jobs:
7676
-o build/production.elf \
7777
Src/can_wrapper/main.c Src/can_wrapper/can_wrapper.c \
7878
Src/can_wrapper/tx_cache.c Src/can_wrapper/can_command_list.c Src/debug/debug_logger.c \
79-
Src/debug/print.c Src/debug/log_buffer.c \
79+
Src/debug/log_buffer.c \
8080
-lc -lm -lnosys
8181
8282
- name: Generate Hex Files

Src/.DS_Store

0 Bytes
Binary file not shown.

Src/can_wrapper/can_command_list.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* Configurations for all valid command ID's.
55
*/
66

7-
#include "tuk/can_wrapper/can_command_list.h"
7+
#include "../../Inc/tuk/can_wrapper/can_command_list.h"
88

99
const CmdConfig CMD_CONFIGS[NUM_COMMANDS] = {
1010
////////////////////////////////////////////

Src/can_wrapper/can_wrapper.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
* IMPROVED VERSION: Single ownership pattern eliminates race conditions.
66
*/
77

8-
#include "tuk/can_wrapper/can_wrapper.h"
9-
#include "tuk/can_wrapper/error_info.h"
10-
#include "tuk/can_wrapper/tx_cache.h"
11-
#include "tuk/debug.h"
12-
#include "tuk/utils.h"
8+
#include "../../Inc/tuk/can_wrapper/can_wrapper.h"
9+
#include "../../Inc/tuk/can_wrapper/error_info.h"
10+
#include "../../Inc/tuk/can_wrapper/tx_cache.h"
11+
#include "../../Inc/tuk/debug/debug.h"
12+
#include "../../Inc/tuk/debug/utils.h"
1313

1414
#include <stddef.h>
1515

Src/can_wrapper/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#include "tuk/can_wrapper/can_wrapper.h"
1+
#include "../../Inc/tuk/can_wrapper/can_wrapper.h"
22

33
#ifdef RUN_TESTS
44
#include "test_can_wrapper.h"

Src/can_wrapper/tx_cache.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
*/
77

88
#include <stdbool.h>
9-
#include <tuk/can_wrapper/tx_cache.h>
9+
#include <../../Inc/tuk/can_wrapper/tx_cache.h>
1010

1111
static bool is_matching_ack(const CANMessage *msg, const CANMessage *ack);
1212

Src/debug/debug_logger.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
* @file debug_logger.c
33
*/
44

5-
#include "tuk/debug/debug_logger.h"
6-
#include "tuk/debug/print.h"
5+
#include "../../Inc/tuk/debug/debug_logger.h"
6+
#include "../../Inc/tuk/debug/print.h"
77

88
#include <string.h>
99
#include <stdint.h>

Src/debug/log_buffer.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
#include <stdbool.h>
66

7-
#include "tuk/debug/log_buffer.h"
7+
#include "../../Inc/tuk/debug/log_buffer.h"
88

99
bool LogBuffer_IsEmpty(const LogBuffer *log_buffer)
1010
{

0 commit comments

Comments
 (0)