Skip to content

Commit 5c6dd91

Browse files
committed
Solve merge conflicts
Signed-off-by: Antón Casas <antoncasas@eprosima.com>
1 parent ab0a03e commit 5c6dd91

2 files changed

Lines changed: 0 additions & 27 deletions

File tree

.github/workflows/nightly.yml

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -20,31 +20,15 @@ jobs:
2020
strategy:
2121
fail-fast: false
2222
matrix:
23-
<<<<<<< HEAD
24-
zephyr_version: ["zephyr-v3.1.0", "zephyr-v2.7.2"]
25-
distro: ["iron", "humble", "rolling"]
26-
=======
2723
zephyr_version: ["v4.0.0", "v4.1.0"]
2824
distro: ["rolling", "jazzy", "humble"]
29-
>>>>>>> 7cbe6da (updates project to work with zephyr v4.0.x (#146))
3025
include:
3126
- distro: rolling
3227
branch: rolling
33-
<<<<<<< HEAD
34-
- distro: humble
35-
branch: humble
36-
- zephyr_version: zephyr-v2.7.2
37-
zephyr_sdk: 0.14.2
38-
sdk_filename: zephyr-sdk-$TOOLCHAIN_VERSION\_linux-x86_64_minimal.tar.gz
39-
- zephyr_version: zephyr-v3.1.0
40-
zephyr_sdk: 0.14.2
41-
sdk_filename: zephyr-sdk-$TOOLCHAIN_VERSION\_linux-x86_64_minimal.tar.gz
42-
=======
4328
- distro: jazzy
4429
branch: jazzy
4530
- distro: humble
4631
branch: humble
47-
>>>>>>> 7cbe6da (updates project to work with zephyr v4.0.x (#146))
4832
steps:
4933
- uses: actions/checkout@v4
5034
with:

modules/libmicroros/microros_transports/serial/microros_transports.c

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -50,18 +50,7 @@ static void uart_fifo_callback(const struct device * dev, void * args){
5050
}
5151

5252
bool zephyr_transport_open(struct uxrCustomTransport * transport){
53-
<<<<<<< HEAD
5453
const struct device * uart_dev = (const struct device *) transport->args;
55-
=======
56-
zephyr_transport_params_t * params = (zephyr_transport_params_t*) transport->args;
57-
58-
params->uart_dev = DEVICE_DT_GET(UART_NODE);
59-
if (!params->uart_dev) {
60-
printk("Serial device not found\n");
61-
return false;
62-
}
63-
>>>>>>> 7cbe6da (updates project to work with zephyr v4.0.x (#146))
64-
6554
ring_buf_init(&in_ringbuf, sizeof(uart_in_buffer), uart_out_buffer);
6655

6756
uart_irq_callback_set(uart_dev, uart_fifo_callback);

0 commit comments

Comments
 (0)