Skip to content

Loosing Com Port on GIGA after reinstalling 3.1 #100

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
mjs513 opened this issue Apr 10, 2025 · 9 comments
Open

Loosing Com Port on GIGA after reinstalling 3.1 #100

mjs513 opened this issue Apr 10, 2025 · 9 comments

Comments

@mjs513
Copy link

mjs513 commented Apr 10, 2025

After installing 2.3.6 (IDE) started having issues with the GIGA and loosing the com port while working on Display.

After several tries of rebuilding in ubuntu opted to reinstall 0.3.1 core via the board manager after removing the old core. I did incorporate the USB fixes to make sure I had that covered.

After that I closed the IDE and reopened it. Burned the bootloader and ran the ASCIItable example sketch. Again no com port showed after uploading sketch.

If I cycle power (unplug and replug it back it in) I get the Com port back and serial monitor prints out the table. But if I hit restart I loose the com port again and nothich shows on serial1 for errors.

If I try loading the sketch in debug mode the sketch loads and runs correctly without loosing the com port.

reloading in standard mode it goes back to no comport until I cycle power.

No clue whats going on......

Dont believe @KurtE is having any issues with the giga.

Note. Tried teh C33 and not seeing this problem. Havent tried the H7 yet.

UPDATE: Tried the H7 and not seeing the problems that I am having on the giga.

@mjs513
Copy link
Author

mjs513 commented Apr 11, 2025

Playing around again with the giga verified that I put in the USB Fixes I ran a different sketch, k_define test sketch. Same thing happens. To get Comport back have to remove power for about 10seconds and it comes back. However, the sketch fails to run without any error messages in debug mode.

Image

but I am not seeing the usual cdc enable message on Serial1.

ok finally got somethig on serial1 when I switched back to standard mode using the k_define test sketch. This is probably a separate issue.

uart:~$
[00:00:01.326,000] <err> os: ***** BUS FAULT *****
[00:00:01.334,000] <err> os:   Imprecise data bus error
[00:00:01.342,000] <err> os: r0/a1:  0x2400fcf8  r1/a2:  0x000000aa  r2/a3:  0x480203a8
[00:00:01.353,000] <err> os: r3/a4:  0x24080007 r12/ip:  0x2400f089 r14/lr:  0x080570e3
[00:00:01.363,000] <err> os:  xpsr:  0x81000000
[00:00:01.371,000] <err> os: s[ 0]:  0xaaaaaaaa  s[ 1]:  0xaaaaaaaa  s[ 2]:  0xaaaaaaaa  s[ 3]:  0xaaaaaaaa
[00:00:01.383,000] <err> os: s[ 4]:  0xaaaaaaaa  s[ 5]:  0xaaaaaaaa  s[ 6]:  0xaaaaaaaa  s[ 7]:  0xaaaaaaaa
[00:00:01.396,000] <err> os: s[ 8]:  0xaaaaaaaa  s[ 9]:  0xaaaaaaaa  s[10]:  0xaaaaaaaa  s[11]:  0xaaaaaaaa
[00:00:01.409,000] <err> os: s[12]:  0xaaaaaaaa  s[13]:  0xaaaaaaaa  s[14]:  0xaaaaaaaa  s[15]:  0xaaaaaaaa
[00:00:01.421,000] <err> os: fpscr:  0xaaaaaaaa
[00:00:01.429,000] <err> os: Faulting instruction address (r15/pc): 0x08061360
[00:00:01.439,000] <err> os: >>> ZEPHYR FATAL ERROR 26: Unknown error on CPU 0
[00:00:01.449,000] <err> os: Current thread: 0x24003220 (main)
[00:00:01.457,000] <err> os: Halting system

this is the test sketch

/*
 * Copyright (c) 2017 Linaro Limited
 *
 * SPDX-License-Identifier: Apache-2.0
 */
#include <zephyr/kernel.h>

#include "elapsedMillis.h"
elapsedMillis timer;

/* STEP 2 - Define stack size and scheduling priority used by each thread */
#define STACKSIZE 1024

#define THREAD0_PRIORITY 7
#define THREAD1_PRIORITY 7

void thread0(void)
{
  Serial.print("Hello Thread 0 Started\n");
  while (1) {
    /* STEP 3 - Call printk() to display a simple string "Hello, I am thread0" */
    Serial.print("Hello, I am thread0\n");
    /* STEP 6 - Make the thread yield */
    // k_yield();
    /* STEP 10 - Put the thread to sleep */
    k_msleep(5);
    /* Remember to comment out the line from STEP 6 */
  }
}

void thread1(void)
{
  Serial.println("Thread 1 Started...");
  while (1) {
    /* STEP 3 - Call printk() to display a simple string "Hello, I am thread1" */
    Serial.print("Hello, I am thread1\n");
    /* STEP 8 - Make the thread yield */
    // k_yield();
    /* STEP 10 - Put the thread to sleep */
    k_msleep(10);
    /* Remember to comment out the line from STEP 8 */
  }
}

/* STEP 4 - Define and initialize the two threads */
K_THREAD_DEFINE(thread0_id, STACKSIZE, thread0, NULL, NULL, NULL, THREAD0_PRIORITY, 0, 0);
K_THREAD_DEFINE(thread1_id, STACKSIZE, thread1, NULL, NULL, NULL, THREAD1_PRIORITY, 0, 0);

void setup() {
  // put your setup code here, to run once:
  Serial.begin(115200);
  while (!Serial && millis() < 5000) {};
  Serial.println("Threading sketch #2 started");

  delay(100);

k_tid_t our_tid = k_sched_current_thread_query();
  int main_pri = k_thread_priority_get(our_tid);
  Serial.print("main TID: ");
  Serial.print((uint32_t)our_tid, HEX);
  Serial.print(" pri: ");
  Serial.println(main_pri);
  printk("main TID:%x pri:%d\n", (uint32_t)our_tid, main_pri);
  k_thread_priority_set(our_tid, THREAD0_PRIORITY+1);
  main_pri = k_thread_priority_get(our_tid);
  Serial.print("\tupdated pri: ");
  Serial.println(main_pri);
  printk("main TID:%x pri:%d\n", (uint32_t)our_tid, main_pri);

  Serial.println("End Setup");
}

void loop() {
  // put your main code here, to run repeatedly:
  if(timer > 5000){
    Serial.println("called from loop");
    timer = 0;
  }
  k_msleep(100);
}

@mjs513
Copy link
Author

mjs513 commented Apr 11, 2025

When I run the ascii example sketch still have to poweroff and com port comes back with no errors on Serial1.

Tested with a Giga_scanner sketch and noticed a warning about 1200bps touch:

Sketch uses 5528 bytes (0%) of program storage space. Maximum is 786432 bytes.
Global variables use 2888 bytes (0%) of dynamic memory, leaving 520736 bytes for local variables. Maximum is 523624 bytes.

Cannot perform port reset: 1200-bps touch: opening port at 1200bps: Invalid serial port

dfu-util 0.11-arduino4

Copyright 2005-2009 Weston Schmidt, Harald Welte and OpenMoko Inc.
Copyright 2010-2021 Tormod Volden and Stefan Schmidt
This program is Free Software and has ABSOLUTELY NO WARRANTY
Please report bugs to http://sourceforge.net/p/dfu-util/tickets/

Waiting for device, exit with ctrl-C
Opening DFU capable USB device...
Device ID 2341:0366
Device DFU version 011a
Claiming USB DFU Interface...
Setting Alternate Interface #0 ...
Determining device status...
DFU state(2) = dfuIDLE, status(0) = No error condition is present
DFU mode device DFU version 011a
Device returned transfer size 4096
DfuSe interface name: "Internal Flash  2MB   "
Downloading element to address = 0x080e0000, size = 16548

Erase   	[                         ]   0%            0 bytes
Erase   	[                         ]   0%            0 bytes
Erase   	[======                   ]  24%         4096 bytes
Erase   	[============             ]  49%         8192 bytes
Erase   	[==================       ]  74%        12288 bytes
Erase   	[======================== ]  99%        16384 bytes
Erase   	[=========================] 100%        16548 bytes
Erase    done.

Download	[                         ]   0%            0 bytes
Download	[======                   ]  24%         4096 bytes
Download	[============             ]  49%         8192 bytes
Download	[==================       ]  74%        12288 bytes
Download	[======================== ]  99%        16384 bytes
Download	[=========================] 100%        16548 bytes
Download done.
File downloaded successfully
Submitting leave request...
Transitioning to dfuMANIFEST state

will run after a several seconds of power off.

@mjs513
Copy link
Author

mjs513 commented Apr 11, 2025

Another data point - if I run the graphics test sketch that we were working on:

- Capabilities:
  x_resolution [00:00:01.057,000] <inf> usb_cdc_acm: Device suspended
uart:~$ _resolution = 800
, supported_pixel_formats = 25
  current_pixel_format = 16, current_orientation = 0
[00:00:01.076,000] <err> os: ***** BUS FAULT *****
[00:00:01.083,000] <err> os:   Imprecise data bus error
[00:00:01.091,000] <err> os: r0/a1:  0xc0000000  r1/a2:  0xc0000000  r2/a3:  0xc00bb80c
[00:00:01.102,000] <err> os: r3/a4:  0xc0000000 r12/ip:  0x00000000 r14/lr:  0x240100a5
[00:00:01.113,000] <err> os:  xpsr:  0x01000000
[00:00:01.120,000] <err> os: s[ 0]:  0x24020ae4  s[ 1]:  0x0805a3a1  s[ 2]:  0x00000000  s[ 3]:  0x00000000
[00:00:01.133,000] <err> os: s[ 4]:  0x2401314b  s[ 5]:  0x24036824  s[ 6]:  0x240381b8  s[ 7]:  0x0805a0ad
[00:00:01.146,000] <err> os: s[ 8]:  0x2401314b  s[ 9]:  0x24036824  s[10]:  0x00000320  s[11]:  0x24013060
[00:00:01.158,000] <err> os: s[12]:  0x24013060  s[13]:  0x24413060  s[14]:  0xc0000000  s[15]:  0xc00bb80c
[00:00:01.171,000] <err> os: fpscr:  0x24013060
[00:00:01.178,000] <err> os: Faulting instruction address (r15/pc): 0x2400ff52
[00:00:01.188,000] <err> os: >>> ZEPHYR FATAL ERROR 26: Unknown error on CPU 0
[00:00:01.198,000] <err> os: Current thread: 0x24003220 (main)
[00:00:01.207,000] <err> os: Halting system

so maybe the bus fault is a related issues..

graphicsTestGigaDisplay-250411a.zip

Note have same issues with a second giga I have.

@mjs513
Copy link
Author

mjs513 commented Apr 12, 2025

@facchinm - @pillo79
Any thoughts on this one because I am kind of dead in the water with using the giga and zephyr

@KurtE
Copy link

KurtE commented Apr 12, 2025

@mjs513 and all - I think there is something that gets set somehow on some of the GIGAs that is not getting unset. As I have mentioned, I have 2 gigas with 2 display shields. On one of them, I always have to enter: sketch in window to get it to do anything...

In loader/main.c I added a couple debug printk ...
At the start of loader I added:

static int loader(const struct shell *sh)
{
	const struct flash_area *fa;
	int rc;

	printk("main.c loader called %p\n", sh);

And later on where it is about to look at the flags for the debug setting I added:

	printk("sketch_hdr->flags: %x %x\n", sketch_hdr->flags, TARGET_HAS_USB_CDC_SHELL);
#if TARGET_HAS_USB_CDC_SHELL

I was not seeing anything on my good giga that changed so I also added to the config file for giga
CONFIG_LLEXT_LOG_LEVEL_DBG=y
To see if that showed anything...
Other than the normal:

[00:00:01.348,000] <inf> usb_cdc_acm: Device suspended
[00:00:01.889,000] <inf> usb_cdc_acm: Device configured
uart:~$

But on the other one, I get after programming and turning on just:

uart:~$ 

but if I then enter sketch I see:

uart:~$ sketch
main.c loader called 0x8063b78
sketch_hdr->flags: 0 1
[00:00:39.960,000] <dbg> llext: do_llext_load: Loading ELF data...
[00:00:39.966,000] <dbg> llext: llext_load_elf_data: Loading relocatable ELF
[00:00:39.974,000] <dbg> llext: do_llext_load: Finding ELF tables...
[00:00:39.980,000] <dbg> llext: llext_find_tables: section 0 at 0: name 0, type 0, flags 0, addr 0, align 0, size 0, link 0, info 0
[00:00:39.993,000] <dbg> llext: llext_find_tables: section 1 at 0x34: name 31, type 1, flags 0x6, addr 0, align 0x4, size 1832, link 0, info 0
[00:00:40.006,000] <dbg> llext: llext_find_tables: section 2 at 0x2198: name 27, type 9, flags 0x40, addr 0, align 0x4, size 616, link 10, info 1
[00:00:40.019,000] <dbg> llext: llext_find_tables: section 3 at 0x75c: name 41, type 1, flags 0x2, addr 0x728, align 0x4, size 996, link 0, info 0
[00:00:40.033,000] <dbg> llext: llext_find_tables: section 4 at 0x2400: name 37, type 9, flags 0x40, addr 0, align 0x4, size 984, link 10, info 3
[00:00:40.046,000] <dbg> llext: llext_find_tables: section 5 at 0xb40: name 49, type 8, flags 0x3, addr 0xb10, align 0x8, size 1272, link 0, info 0
[00:00:40.060,000] <dbg> llext: llext_find_tables: section 6 at 0xb40: name 58, type 1, flags 0x2, addr 0x1008, align 0x4, size 8, link 0, info 0
[00:00:40.073,000] <dbg> llext: llext_find_tables: section 7 at 0x27d8: name 54, type 9, flags 0x40, addr 0, align 0x4, size 16, link 10, info 6
[00:00:40.087,000] <dbg> llext: llext_find_tables: section 8 at 0xb48: name 76, type 14, flags 0x3, addr 0x1010, align 0x4, size 12, link 0, info 0
[00:00:40.100,000] <dbg> llext: llext_find_tables: section 9 at 0x27e8: name 72, type 9, flags 0x40, addr 0, align 0x4, size 24, link 10, info 8
[00:00:40.114,000] <dbg> llext: llext_find_tables: section 10 at 0xb54: name 1, type 2, flags 0, addr 0, align 0x4, size 3280, link 11, info 96
[00:00:40.127,000] <dbg> llext: llext_find_tables: symtab at 10
[00:00:40.133,000] <dbg> llext: llext_find_tables: section 11 at 0x1824: name 9, type 3, flags 0, addr 0, align 0x1, size 2420, link 0, info 0
[00:00:40.147,000] <dbg> llext: llext_find_tables: strtab at 11
[00:00:40.153,000] <dbg> llext: llext_find_tables: section 12 at 0x2800: name 17, type 3, flags 0, addr 0, align 0x1, size 88, link 0, info 0
[00:00:40.166,000] <dbg> llext: llext_find_tables: shstrtab at 12
[00:00:40.173,000] <dbg> llext: do_llext_load: Allocate and copy strings...
[00:00:40.180,000] <dbg> llext: llext_init_mem_part: region 7: start 0x2400e3a0, size 96
[00:00:40.188,000] <dbg> llext: llext_init_mem_part: region 6: start 0x2400e420, size 2432
[00:00:40.197,000] <dbg> llext: do_llext_load: Mapping ELF sections...
[00:00:40.204,000] <dbg> llext: llext_map_sections: section 0 name  skipped
[00:00:40.211,000] <dbg> llext: llext_map_sections: section 1 name .text maps to region 0
[00:00:40.220,000] <dbg> llext: llext_map_sections: section 2 name .rel.text skipped
[00:00:40.228,000] <dbg> llext: llext_map_sections: section 3 name .rodata maps to region 2
[00:00:40.237,000] <dbg> llext: llext_map_sections: section 4 name .rel.rodata skipped
[00:00:40.245,000] <dbg> llext: llext_map_sections: section 5 name .bss maps to region 3
[00:00:40.254,000] <dbg> llext: llext_map_sections: section 6 name .exported_sym maps to region 4
[00:00:40.263,000] <dbg> llext: llext_map_sections: section 7 name .rel.exported_sym skipped
[00:00:40.272,000] <dbg> llext: llext_map_sections: section 8 name .init_array maps to region 9
[00:00:40.281,000] <dbg> llext: llext_map_sections: section 9 name .rel.init_array skipped
[00:00:40.290,000] <dbg> llext: llext_map_sections: section 10 name .symtab already mapped to region 5
[00:00:40.299,000] <dbg> llext: llext_map_sections: section 11 name .strtab already mapped to region 6
[00:00:40.309,000] <dbg> llext: llext_map_sections: section 12 name .shstrtab already mapped to region 7
[00:00:40.319,000] <dbg> llext: do_llext_load: Allocate and copy regions...
[00:00:40.326,000] <dbg> llext: llext_init_mem_part: region 0: start 0x2400edc0, size 1856
[00:00:40.335,000] <dbg> llext: llext_init_mem_part: region 2: start 0x2400f520, size 1024
[00:00:40.344,000] <dbg> llext: llext_init_mem_part: region 3: start 0x2400f940, size 1280
[00:00:40.353,000] <dbg> llext: llext_init_mem_part: region 4: start 0x2400fe60, size 32
[00:00:40.361,000] <dbg> llext: llext_init_mem_part: region 5: start 0x2400fea0, size 3296
[00:00:40.370,000] <dbg> llext: llext_init_mem_part: region 9: start 0x24010ba0, size 32
[00:00:40.378,000] <dbg> llext: llext_copy_regions: gdb add-symbol-file flags:
[00:00:40.386,000] <dbg> llext: llext_copy_regions: -s .text 0x2400edc0
[00:00:40.393,000] <dbg> llext: llext_copy_regions: -s .rodata 0x2400f520
[00:00:40.400,000] <dbg> llext: llext_copy_regions: -s .bss 0x2400f940
[00:00:40.407,000] <dbg> llext: do_llext_load: Counting exported symbols...
[00:00:40.414,000] <dbg> llext: llext_count_export_syms: symbol count 205
[00:00:40.422,000] <dbg> llext: llext_count_export_syms: unhandled symbol 1, name .rodata, type tag 3, bind 0, sect 3
[00:00:40.433,000] <dbg> llext: llext_count_export_syms: unhandled symbol 2, name $t, type tag 0, bind 0, sect 1
[00:00:40.443,000] <dbg> llext: llext_count_export_syms: unhandled symbol 3, name $d, type tag 0, bind 0, sect 1
[00:00:40.454,000] <dbg> llext: llext_count_export_syms: unhandled symbol 4, name $t, type tag 0, bind 0, sect 1
[00:00:40.464,000] <dbg> llext: llext_count_export_syms: unhandled symbol 5, name $d, type tag 0, bind 0, sect 1
[00:00:40.475,000] <dbg> llext: llext_count_export_syms: unhandled symbol 6, name $t, type tag 0, bind 0, sect 1
[00:00:40.486,000] <dbg> llext: llext_count_export_syms: unhandled symbol 7, name _GLOBAL__sub_I_A8_PURE, type tag 2, bind 0, sect 1
[00:00:40.498,000] <dbg> llext: llext_count_export_syms: unhandled symbol 8, name $d, type tag 0, bind 0, sect 1
[00:00:40.509,000] <dbg> llext: llext_count_export_syms: unhandled symbol 9, name $d, type tag 0, bind 0, sect 8
[00:00:40.519,000] <dbg> llext: llext_count_export_syms: unhandled symbol 10, name $d, type tag 0, bind 0, sect 5
[00:00:40.530,000] <dbg> llext: llext_count_export_syms: unhandled symbol 11, name $d, type tag 0, bind 0, sect 5
[00:00:40.541,000] <dbg> llext: llext_count_export_syms: unhandled symbol 12, name $d, type tag 0, bind 0, sect 5
[00:00:40.551,000] <dbg> llext: llext_count_export_syms: unhandled symbol 13, name $d, type tag 0, bind 0, sect 5
[00:00:40.562,000] <dbg> llext: llext_count_export_syms: unhandled symbol 14, name $t, type tag 0, bind 0, sect 1
[00:00:40.573,000] <dbg> llext: llext_count_export_syms: unhandled symbol 15, name $d, type tag 0, bind 0, sect 1
[00:00:40.583,000] <dbg> llext: llext_count_export_syms: unhandled symbol 16, name $t, type tag 0, bind 0, sect 1
[00:00:40.594,000] <dbg> llext: llext_count_export_syms: unhandled symbol 17, name $t, type tag 0, bind 0, sect 1
[00:00:40.605,000] <dbg> llext: llext_count_export_syms: unhandled symbol 18, name $d, type tag 0, bind 0, sect 1
[00:00:40.615,000] <dbg> llext: llext_count_export_syms: unhandled symbol 19, name $d, type tag 0, bind 0, sect 6
[00:00:40.626,000] <dbg> llext: llext_count_export_syms: unhandled symbol 20, name _ZL16__llext_sym_main, type tag 1, bind 0, sect 6
[00:00:40.638,000] <dbg> llext: llext_count_export_syms: unhandled symbol 21, name $t, type tag 0, bind 0, sect 1
[00:00:40.649,000] <dbg> llext: llext_count_export_syms: unhandled symbol 22, name $d, type tag 0, bind 0, sect 1
[00:00:40.660,000] <dbg> llext: llext_count_export_syms: unhandled symbol 23, name _ZL12arduino_pins, type tag 1, bind 0, sect 3
[00:00:40.672,000] <dbg> llext: llext_count_export_syms: unhandled symbol 24, name $t, type tag 0, bind 0, sect 1
[00:00:40.682,000] <dbg> llext: llext_count_export_syms: unhandled symbol 25, name gpio_pin_set_dt.isra.0, type tag 2, bind 0, sect 1
[00:00:40.695,000] <dbg> llext: llext_count_export_syms: unhandled symbol 26, name $t, type tag 0, bind 0, sect 1
[00:00:40.705,000] <dbg> llext: llext_count_export_syms: unhandled symbol 27, name gpio_pin_configure_dt.isra.0, type tag 2, bind 0, sect 1
[00:00:40.718,000] <dbg> llext: llext_count_export_syms: unhandled symbol 28, name $t, type tag 0, bind 0, sect 1
[00:00:40.729,000] <dbg> llext: llext_count_export_syms: unhandled symbol 29, name $d, type tag 0, bind 0, sect 1
[00:00:40.740,000] <dbg> llext: llext_count_export_syms: unhandled symbol 30, name $t, type tag 0, bind 0, sect 1
[00:00:40.750,000] <dbg> llext: llext_count_export_syms: unhandled symbol 31, name $d, type tag 0, bind 0, sect 1
[00:00:40.761,000] <dbg> llext: llext_count_export_syms: unhandled symbol 32, name $t, type tag 0, bind 0, sect 1
[00:00:40.772,000] <dbg> llext: llext_count_export_syms: unhandled symbol 33, name $d, type tag 0, bind 0, sect 1
[00:00:40.782,000] <dbg> llext: llext_count_export_syms: unhandled symbol 34, name $t, type tag 0, bind 0, sect 1
[00:00:40.793,000] <dbg> llext: llext_count_export_syms: unhandled symbol 35, name $d, type tag 0, bind 0, sect 1
[00:00:40.804,000] <dbg> llext: llext_count_export_syms: unhandled symbol 36, name $t, type tag 0, bind 0, sect 1
[00:00:40.814,000] <dbg> llext: llext_count_export_syms: unhandled symbol 37, name $d, type tag 0, bind 0, sect 1
[00:00:40.825,000] <dbg> llext: llext_count_export_syms: unhandled symbol 38, name $d, type tag 0, bind 0, sect 3
[00:00:40.836,000] <dbg> llext: llext_count_export_syms: unhandled symbol 39, name $t, type tag 0, bind 0, sect 1
[00:00:40.847,000] <dbg> llext: llext_count_export_syms: unhandled symbol 40, name $t, type tag 0, bind 0, sect 1
[00:00:40.857,000] <dbg> llext: llext_count_export_syms: unhandled symbol 41, name $t, type tag 0, bind 0, sect 1
[00:00:40.868,000] <dbg> llext: llext_count_export_syms: unhandled symbol 42, name $t, type tag 0, bind 0, sect 1
[00:00:40.879,000] <dbg> llext: llext_count_export_syms: unhandled symbol 43, name $d, type tag 0, bind 0, sect 1
[00:00:40.889,000] <dbg> llext: llext_count_export_syms: unhandled symbol 44, name _ZL18_baudChangeHandlerPK6devicej, type tag 2, bind 0, sect 1
[00:00:40.903,000] <dbg> llext: llext_count_export_syms: unhandled symbol 45, name $t, type tag 0, bind 0, sect 1
[00:00:40.913,000] <dbg> llext: llext_count_export_syms: unhandled symbol 46, name $t, type tag 0, bind 0, sect 1
[00:00:40.924,000] <dbg> llext: llext_count_export_syms: unhandled symbol 47, name $d, type tag 0, bind 0, sect 1
[00:00:40.935,000] <dbg> llext: llext_count_export_syms: unhandled symbol 48, name $t, type tag 0, bind 0, sect 1
[00:00:40.945,000] <dbg> llext: llext_count_export_syms: unhandled symbol 49, name $d, type tag 0, bind 0, sect 1
[00:00:40.956,000] <dbg> llext: llext_count_export_syms: unhandled symbol 50, name $t, type tag 0, bind 0, sect 1
[00:00:40.967,000] <dbg> llext: llext_count_export_syms: unhandled symbol 51, name _GLOBAL__sub_I__Z13usb_status_cb18usb_dc_status_codePKh, type tag 2, bind 0, sect 1
[00:00:40.982,000] <dbg> llext: llext_count_export_syms: unhandled symbol 52, name $d, type tag 0, bind 0, sect 1
[00:00:40.993,000] <dbg> llext: llext_count_export_syms: unhandled symbol 53, name $d, type tag 0, bind 0, sect 8
[00:00:41.003,000] <dbg> llext: llext_count_export_syms: unhandled symbol 54, name $d, type tag 0, bind 0, sect 3
[00:00:41.014,000] <dbg> llext: llext_count_export_syms: unhandled symbol 55, name $d, type tag 0, bind 0, sect 5
[00:00:41.025,000] <dbg> llext: llext_count_export_syms: unhandled symbol 56, name $t, type tag 0, bind 0, sect 1
[00:00:41.035,000] <dbg> llext: llext_count_export_syms: unhandled symbol 57, name z_impl_uart_irq_tx_enable, type tag 2, bind 0, sect 1
[00:00:41.048,000] <dbg> llext: llext_count_export_syms: unhandled symbol 58, name $t, type tag 0, bind 0, sect 1
[00:00:41.059,000] <dbg> llext: llext_count_export_syms: unhandled symbol 59, name $t, type tag 0, bind 0, sect 1
[00:00:41.069,000] <dbg> llext: llext_count_export_syms: unhandled symbol 60, name $t, type tag 0, bind 0, sect 1
[00:00:41.080,000] <dbg> llext: llext_count_export_syms: unhandled symbol 61, name k_sem_give, type tag 2, bind 0, sect 1
[00:00:41.091,000] <dbg> llext: llext_count_export_syms: unhandled symbol 62, name $d, type tag 0, bind 0, sect 1
[00:00:41.102,000] <dbg> llext: llext_count_export_syms: unhandled symbol 63, name $t, type tag 0, bind 0, sect 1
[00:00:41.113,000] <dbg> llext: llext_count_export_syms: unhandled symbol 64, name k_sem_take.isra.0, type tag 2, bind 0, sect 1
[00:00:41.125,000] <dbg> llext: llext_count_export_syms: unhandled symbol 65, name $d, type tag 0, bind 0, sect 1
[00:00:41.135,000] <dbg> llext: llext_count_export_syms: unhandled symbol 66, name $t, type tag 0, bind 0, sect 1
[00:00:41.146,000] <dbg> llext: llext_count_export_syms: unhandled symbol 67, name $d, type tag 0, bind 0, sect 1
[00:00:41.157,000] <dbg> llext: llext_count_export_syms: unhandled symbol 68, name $t, type tag 0, bind 0, sect 1
[00:00:41.168,000] <dbg> llext: llext_count_export_syms: unhandled symbol 69, name $d, type tag 0, bind 0, sect 1
[00:00:41.178,000] <dbg> llext: llext_count_export_syms: unhandled symbol 70, name $t, type tag 0, bind 0, sect 1
[00:00:41.189,000] <dbg> llext: llext_count_export_syms: unhandled symbol 71, name $d, type tag 0, bind 0, sect 1
[00:00:41.200,000] <dbg> llext: llext_count_export_syms: unhandled symbol 72, name $t, type tag 0, bind 0, sect 1
[00:00:41.210,000] <dbg> llext: llext_count_export_syms: unhandled symbol 73, name $d, type tag 0, bind 0, sect 1
[00:00:41.221,000] <dbg> llext: llext_count_export_syms: unhandled symbol 74, name $t, type tag 0, bind 0, sect 1
[00:00:41.232,000] <dbg> llext: llext_count_export_syms: unhandled symbol 75, name $d, type tag 0, bind 0, sect 1
[00:00:41.242,000] <dbg> llext: llext_count_export_syms: unhandled symbol 76, name $t, type tag 0, bind 0, sect 1
[00:00:41.253,000] <dbg> llext: llext_count_export_syms: unhandled symbol 77, name $d, type tag 0, bind 0, sect 1
[00:00:41.264,000] <dbg> llext: llext_count_export_syms: unhandled symbol 78, name $t, type tag 0, bind 0, sect 1
[00:00:41.274,000] <dbg> llext: llext_count_export_syms: unhandled symbol 79, name $d, type tag 0, bind 0, sect 1
[00:00:41.285,000] <dbg> llext: llext_count_export_syms: unhandled symbol 80, name $t, type tag 0, bind 0, sect 1
[00:00:41.296,000] <dbg> llext: llext_count_export_syms: unhandled symbol 81, name $d, type tag 0, bind 0, sect 1
[00:00:41.306,000] <dbg> llext: llext_count_export_syms: unhandled symbol 82, name $t, type tag 0, bind 0, sect 1
[00:00:41.317,000] <dbg> llext: llext_count_export_syms: unhandled symbol 83, name $d, type tag 0, bind 0, sect 1
[00:00:41.328,000] <dbg> llext: llext_count_export_syms: unhandled symbol 84, name $t, type tag 0, bind 0, sect 1
[00:00:41.338,000] <dbg> llext: llext_count_export_syms: unhandled symbol 85, name $d, type tag 0, bind 0, sect 1
[00:00:41.349,000] <dbg> llext: llext_count_export_syms: unhandled symbol 86, name $t, type tag 0, bind 0, sect 1
[00:00:41.360,000] <dbg> llext: llext_count_export_syms: unhandled symbol 87, name _GLOBAL__sub_I__ZN7arduino12ZephyrSerial5beginEmt, type tag 2, bind 0, sect 1
[00:00:41.375,000] <dbg> llext: llext_count_export_syms: unhandled symbol 88, name $d, type tag 0, bind 0, sect 1
[00:00:41.385,000] <dbg> llext: llext_count_export_syms: unhandled symbol 89, name $d, type tag 0, bind 0, sect 8
[00:00:41.396,000] <dbg> llext: llext_count_export_syms: unhandled symbol 90, name $d, type tag 0, bind 0, sect 3
[00:00:41.407,000] <dbg> llext: llext_count_export_syms: unhandled symbol 91, name $d, type tag 0, bind 0, sect 5
[00:00:41.417,000] <dbg> llext: llext_count_export_syms: unhandled symbol 92, name $d, type tag 0, bind 0, sect 5
[00:00:41.428,000] <dbg> llext: llext_count_export_syms: unhandled symbol 93, name $d, type tag 0, bind 0, sect 5
[00:00:41.439,000] <dbg> llext: llext_count_export_syms: unhandled symbol 94, name $d, type tag 0, bind 0, sect 5
[00:00:41.449,000] <dbg> llext: llext_count_export_syms: unhandled symbol 95, name $d, type tag 0, bind 0, sect 3
[00:00:41.460,000] <dbg> llext: llext_count_export_syms: unhandled symbol 96, name _sidata, type tag 0, bind 1, sect 0
[00:00:41.471,000] <dbg> llext: llext_count_export_syms: unhandled symbol 97, name __device_dts_ord_56, type tag 0, bind 1, sect 0
[00:00:41.483,000] <dbg> llext: llext_count_export_syms: unhandled symbol 98, name _sbss, type tag 0, bind 1, sect 0
[00:00:41.494,000] <dbg> llext: llext_count_export_syms: unhandled symbol 99, name sys_clock_cycle_get_64, type tag 0, bind 1, sect 0
[00:00:41.507,000] <dbg> llext: llext_count_export_syms: unhandled symbol 100, name z_impl_k_timer_stop, type tag 0, bind 1, sect 0
[00:00:41.519,000] <dbg> llext: llext_count_export_syms: unhandled symbol 101, name memcpy, type tag 0, bind 1, sect 0
[00:00:41.530,000] <dbg> llext: llext_count_export_syms: unhandled symbol 102, name __device_dts_ord_106, type tag 0, bind 1, sect 0
[00:00:41.542,000] <dbg> llext: llext_count_export_syms: unhandled symbol 103, name __aeabi_uldivmod, type tag 0, bind 1, sect 0
[00:00:41.554,000] <dbg> llext: llext_count_export_syms: unhandled symbol 104, name _sdata, type tag 0, bind 1, sect 0
[00:00:41.565,000] <dbg> llext: llext_count_export_syms: unhandled symbol 105, name __device_dts_ord_53, type tag 0, bind 1, sect 0
[00:00:41.578,000] <dbg> llext: llext_count_export_syms: unhandled symbol 106, name _ebss, type tag 0, bind 1, sect 0
[00:00:41.589,000] <dbg> llext: llext_count_export_syms: unhandled symbol 107, name kheap_llext_heap, type tag 0, bind 1, sect 0
[00:00:41.601,000] <dbg> llext: llext_count_export_syms: unhandled symbol 108, name z_impl_k_uptime_ticks, type tag 0, bind 1, sect 0
[00:00:41.613,000] <dbg> llext: llext_count_export_syms: unhandled symbol 109, name rand, type tag 0, bind 1, sect 0
[00:00:41.624,000] <dbg> llext: llext_count_export_syms: unhandled symbol 110, name z_impl_device_is_ready, type tag 0, bind 1, sect 0
[00:00:41.637,000] <dbg> llext: llext_count_export_syms: unhandled symbol 111, name printk, type tag 0, bind 1, sect 0
[00:00:41.648,000] <dbg> llext: llext_count_export_syms: unhandled symbol 112, name __device_dts_ord_103, type tag 0, bind 1, sect 0
[00:00:41.660,000] <dbg> llext: llext_count_export_syms: unhandled symbol 113, name __device_dts_ord_99, type tag 0, bind 1, sect 0
[00:00:41.672,000] <dbg> llext: llext_count_export_syms: unhandled symbol 114, name memset, type tag 0, bind 1, sect 0
[00:00:41.683,000] <dbg> llext: llext_count_export_syms: unhandled symbol 115, name k_timer_init, type tag 0, bind 1, sect 0
[00:00:41.695,000] <dbg> llext: llext_count_export_syms: unhandled symbol 116, name srand, type tag 0, bind 1, sect 0
[00:00:41.706,000] <dbg> llext: llext_count_export_syms: unhandled symbol 117, name z_impl_k_timer_start, type tag 0, bind 1, sect 0
[00:00:41.718,000] <dbg> llext: llext_count_export_syms: unhandled symbol 118, name __init_array_end, type tag 0, bind 1, sect 0
[00:00:41.730,000] <dbg> llext: llext_count_export_syms: unhandled symbol 119, name __heap_end, type tag 0, bind 1, sect 0
[00:00:41.742,000] <dbg> llext: llext_count_export_syms: unhandled symbol 120, name __preinit_array_end, type tag 0, bind 1, sect 0
[00:00:41.754,000] <dbg> llext: llext_count_export_syms: unhandled symbol 121, name __heap_start, type tag 0, bind 1, sect 0
[00:00:41.766,000] <dbg> llext: llext_count_export_syms: unhandled symbol 122, name _edata, type tag 0, bind 1, sect 0
[00:00:41.777,000] <dbg> llext: llext_count_export_syms: unhandled symbol 123, name __device_dts_ord_94, type tag 0, bind 1, sect 0
[00:00:41.789,000] <dbg> llext: llext_count_export_syms: unhandled symbol 124, name __init_array_start, type tag 0, bind 1, sect 0
[00:00:41.801,000] <dbg> llext: llext_count_export_syms: unhandled symbol 125, name kheap_llext_heap_size, type tag 0, bind 1, sect 0
[00:00:41.814,000] <dbg> llext: llext_count_export_syms: unhandled symbol 126, name __device_dts_ord_90, type tag 0, bind 1, sect 0
[00:00:41.826,000] <dbg> llext: llext_count_export_syms: unhandled symbol 127, name __preinit_array_start, type tag 0, bind 1, sect 0
[00:00:41.838,000] <dbg> llext: llext_count_export_syms: unhandled symbol 128, name __aeabi_ldivmod, type tag 0, bind 1, sect 0
[00:00:41.850,000] <dbg> llext: llext_count_export_syms: unhandled symbol 129, name __device_dts_ord_13, type tag 0, bind 1, sect 0
[00:00:41.862,000] <dbg> llext: llext_count_export_syms: unhandled symbol 130, name __device_dts_ord_40, type tag 0, bind 1, sect 0
[00:00:41.875,000] <dbg> llext: llext_count_export_syms: function symbol 131, name yield, type tag 2, bind 1, sect 1
[00:00:41.886,000] <dbg> llext: llext_count_export_syms: unhandled symbol 132, name z_impl_k_thread_create, type tag 0, bind 1, sect 0
[00:00:41.898,000] <dbg> llext: llext_count_export_syms: function symbol 133, name _Z20start_static_threadsv, type tag 2, bind 1, sect 1
[00:00:41.911,000] <dbg> llext: llext_count_export_syms: unhandled symbol 134, name __device_dts_ord_85, type tag 0, bind 1, sect 0
[00:00:41.923,000] <dbg> llext: llext_count_export_syms: unhandled symbol 135, name __device_dts_ord_60, type tag 0, bind 1, sect 0
[00:00:41.935,000] <dbg> llext: llext_count_export_syms: function symbol 136, name _ZN7arduino12ZephyrSerial5writeEPKhj, type tag 2, bind 1, sect 1
[00:00:41.949,000] <dbg> llext: llext_count_export_syms: unhandled symbol 137, name z_impl_k_thread_name_set, type tag 0, bind 1, sect 0
[00:00:41.962,000] <dbg> llext: llext_count_export_syms: unhandled symbol 138, name _ZN7arduino12ZephyrSerial3endEv, type tag 2, bind 2, sect 1
[00:00:41.975,000] <dbg> llext: llext_count_export_syms: function symbol 139, name _ZN7arduino12ZephyrSerial5flushEv, type tag 2, bind 1, sect 1
[00:00:41.988,000] <dbg> llext: llext_count_export_syms: unhandled symbol 140, name z_impl_k_yield, type tag 0, bind 1, sect 0
[00:00:42.000,000] <dbg> llext: llext_count_export_syms: function symbol 141, name Serial1, type tag 1, bind 1, sect 5
[00:00:42.011,000] <dbg> llext: llext_count_export_syms: unhandled symbol 142, name _ZN7arduino12ZephyrSerialcvbEv, type tag 2, bind 2, sect 1
[00:00:42.024,000] <dbg> llext: llext_count_export_syms: function symbol 143, name A11_PURE, type tag 1, bind 1, sect 5
[00:00:42.036,000] <dbg> llext: llext_count_export_syms: function symbol 144, name loop, type tag 2, bind 1, sect 1
[00:00:42.046,000] <dbg> llext: llext_count_export_syms: unhandled symbol 145, name initVariant, type tag 2, bind 2, sect 1
[00:00:42.058,000] <dbg> llext: llext_count_export_syms: function symbol 146, name A8_PURE, type tag 1, bind 1, sect 5
[00:00:42.069,000] <dbg> llext: llext_count_export_syms: unhandled symbol 147, name __device_dts_ord_83, type tag 0, bind 1, sect 0
[00:00:42.081,000] <dbg> llext: llext_count_export_syms: function symbol 148, name _ZN7arduino12ZephyrSerial10IrqHandlerEv, type tag 2, bind 1, sect 1
[00:00:42.095,000] <dbg> llext: llext_count_export_syms: unhandled symbol 149, name z_impl_k_sem_take, type tag 0, bind 1, sect 0
[00:00:42.107,000] <dbg> llext: llext_count_export_syms: unhandled symbol 150, name __device_dts_ord_18, type tag 0, bind 1, sect 0
[00:00:42.119,000] <dbg> llext: llext_count_export_syms: unhandled symbol 151, name k_sched_lock, type tag 0, bind 1, sect 0
[00:00:42.131,000] <dbg> llext: llext_count_export_syms: function symbol 152, name digitalWrite, type tag 2, bind 1, sect 1
[00:00:42.143,000] <dbg> llext: llext_count_export_syms: function symbol 153, name pinMode, type tag 2, bind 1, sect 1
[00:00:42.154,000] <dbg> llext: llext_count_export_syms: function symbol 154, name _ZTVN7arduino12ZephyrSerialE, type tag 1, bind 1, sect 3
[00:00:42.167,000] <dbg> llext: llext_count_export_syms: unhandled symbol 155, name __device_dts_ord_81, type tag 0, bind 1, sect 0
[00:00:42.179,000] <dbg> llext: llext_count_export_syms: unhandled symbol 156, name z_impl_k_sem_init, type tag 0, bind 1, sect 0
[00:00:42.191,000] <dbg> llext: llext_count_export_syms: unhandled symbol 157, name _ZN7arduino12ZephyrSerialC2EPK6device, type tag 2, bind 2, sect 1
[00:00:42.205,000] <dbg> llext: llext_count_export_syms: unhandled symbol 158, name _ZN7arduino10SerialUSB_5beginEm, type tag 2, bind 2, sect 1
[00:00:42.218,000] <dbg> llext: llext_count_export_syms: function symbol 159, name Serial3, type tag 1, bind 1, sect 5
[00:00:42.229,000] <dbg> llext: llext_count_export_syms: unhandled symbol 160, name __device_dts_ord_111, type tag 0, bind 1, sect 0
[00:00:42.242,000] <dbg> llext: llext_count_export_syms: function symbol 161, name _Z12_on_1200_bpsv, type tag 2, bind 1, sect 1
[00:00:42.254,000] <dbg> llext: llext_count_export_syms: function symbol 162, name Serial, type tag 1, bind 1, sect 5
[00:00:42.265,000] <dbg> llext: llext_count_export_syms: unhandled symbol 163, name ring_buf_put, type tag 0, bind 1, sect 0
[00:00:42.276,000] <dbg> llext: llext_count_export_syms: function symbol 164, name _ZN7arduino10SerialUSB_5beginEmt, type tag 2, bind 1, sect 1
[00:00:42.290,000] <dbg> llext: llext_count_export_syms: unhandled symbol 165, name __static_thread_data_list_end, type tag 0, bind 1, sect 1
[00:00:42.303,000] <dbg> llext: llext_count_export_syms: unhandled symbol 166, name z_impl_k_sem_give, type tag 0, bind 1, sect 0
[00:00:42.315,000] <dbg> llext: llext_count_export_syms: function symbol 167, name _ZN7arduino12ZephyrSerial4readEv, type tag 2, bind 1, sect 1
[00:00:42.328,000] <dbg> llext: llext_count_export_syms: unhandled symbol 168, name z_impl_k_sleep, type tag 0, bind 1, sect 0
[00:00:42.340,000] <dbg> llext: llext_count_export_syms: unhandled symbol 169, name ring_buf_get, type tag 0, bind 1, sect 0
[00:00:42.351,000] <dbg> llext: llext_count_export_syms: unhandled symbol 170, name __device_dts_ord_69, type tag 0, bind 1, sect 0
[00:00:42.364,000] <dbg> llext: llext_count_export_syms: function symbol 171, name _ZN7arduino12ZephyrSerial11IrqDispatchEPK6devicePv, type tag 2, bind 1, sect 1
[00:00:42.379,000] <dbg> llext: llext_count_export_syms: unhandled symbol 172, name __device_dts_ord_86, type tag 0, bind 1, sect 0
[00:00:42.391,000] <dbg> llext: llext_count_export_syms: unhandled symbol 173, name k_sched_unlock, type tag 0, bind 1, sect 0
[00:00:42.403,000] <dbg> llext: llext_count_export_syms: function symbol 174, name _ZN7arduino12ZephyrSerial5beginEmt, type tag 2, bind 1, sect 1
[00:00:42.416,000] <dbg> llext: llext_count_export_syms: unhandled symbol 175, name _ZN7arduino12ZephyrSerial5writeEh, type tag 2, bind 2, sect 1
[00:00:42.429,000] <dbg> llext: llext_count_export_syms: unhandled symbol 176, name main, type tag 2, bind 2, sect 1
[00:00:42.440,000] <dbg> llext: llext_count_export_syms: unhandled symbol 177, name __device_dts_ord_79, type tag 0, bind 1, sect 0
[00:00:42.453,000] <dbg> llext: llext_count_export_syms: function symbol 178, name _ZN7arduino12ZephyrSerial9availableEv, type tag 2, bind 1, sect 1
[00:00:42.466,000] <dbg> llext: llext_count_export_syms: function symbol 179, name delay, type tag 2, bind 1, sect 1
[00:00:42.477,000] <dbg> llext: llext_count_export_syms: function symbol 180, name _ZTVN7arduino10SerialUSB_E, type tag 1, bind 1, sect 3
[00:00:42.490,000] <dbg> llext: llext_count_export_syms: unhandled symbol 181, name _ZN7arduino12ZephyrSerialC1EPK6device, type tag 2, bind 2, sect 1
[00:00:42.504,000] <dbg> llext: llext_count_export_syms: unhandled symbol 182, name _ZN7arduino12ZephyrSerial18ZephyrSerialBufferILi64EEC1Ev, type tag 2, bind 2, sect 1
[00:00:42.519,000] <dbg> llext: llext_count_export_syms: function symbol 183, name setup, type tag 2, bind 1, sect 1
[00:00:42.530,000] <dbg> llext: llext_count_export_syms: unhandled symbol 184, name _ZN7arduino12ZephyrSerial5beginEm, type tag 2, bind 2, sect 1
[00:00:42.544,000] <dbg> llext: llext_count_export_syms: function symbol 185, name A9_PURE, type tag 1, bind 1, sect 5
[00:00:42.555,000] <dbg> llext: llext_count_export_syms: unhandled symbol 186, name __device_dts_ord_80, type tag 0, bind 1, sect 0
[00:00:42.567,000] <dbg> llext: llext_count_export_syms: function symbol 187, name A10_PURE, type tag 1, bind 1, sect 5
[00:00:42.578,000] <dbg> llext: llext_count_export_syms: unhandled symbol 188, name __device_dts_ord_84, type tag 0, bind 1, sect 0
[00:00:42.591,000] <dbg> llext: llext_count_export_syms: unhandled symbol 189, name __device_dts_ord_66, type tag 0, bind 1, sect 0
[00:00:42.603,000] <dbg> llext: llext_count_export_syms: function symbol 190, name _ZN7arduino12ZephyrSerial4peekEv, type tag 2, bind 1, sect 1
[00:00:42.616,000] <dbg> llext: llext_count_export_syms: function symbol 191, name _ZN7arduino12ZephyrSerial17availableForWriteEv, type tag 2, bind 1, sect 1
[00:00:42.631,000] <dbg> llext: llext_count_export_syms: function symbol 192, name _ZN7arduino10SerialUSB_cvbEv, type tag 2, bind 1, sect 1
[00:00:42.644,000] <dbg> llext: llext_count_export_syms: unhandled symbol 193, name __static_thread_data_list_start, type tag 0, bind 1, sect 1
[00:00:42.657,000] <dbg> llext: llext_count_export_syms: function symbol 194, name Serial4, type tag 1, bind 1, sect 5
[00:00:42.668,000] <dbg> llext: llext_count_export_syms: unhandled symbol 195, name _ZN7arduino12ZephyrSerial18ZephyrSerialBufferILi64EEC2Ev, type tag 2, bind 2, sect 1
[00:00:42.683,000] <dbg> llext: llext_count_export_syms: unhandled symbol 196, name ring_buf_peek, type tag 0, bind 1, sect 0
[00:00:42.695,000] <dbg> llext: llext_count_export_syms: unhandled symbol 197, name __device_dts_ord_63, type tag 0, bind 1, sect 0
[00:00:42.707,000] <dbg> llext: llext_count_export_syms: unhandled symbol 198, name __device_dts_ord_82, type tag 0, bind 1, sect 0
[00:00:42.720,000] <dbg> llext: llext_count_export_syms: unhandled symbol 199, name z_impl_k_wakeup, type tag 0, bind 1, sect 0
[00:00:42.731,000] <dbg> llext: llext_count_export_syms: unhandled symbol 200, name usb_disable, type tag 0, bind 1, sect 0
[00:00:42.743,000] <dbg> llext: llext_count_export_syms: unhandled symbol 201, name usb_enable, type tag 0, bind 1, sect 0
[00:00:42.754,000] <dbg> llext: llext_count_export_syms: unhandled symbol 202, name __device_dts_ord_78, type tag 0, bind 1, sect 0
[00:00:42.767,000] <dbg> llext: llext_count_export_syms: unhandled symbol 203, name cdc_acm_dte_rate_callback_set, type tag 0, bind 1, sect 0
[00:00:42.780,000] <dbg> llext: llext_count_export_syms: function symbol 204, name Serial2, type tag 1, bind 1, sect 5
[00:00:42.791,000] <dbg> llext: do_llext_load: Allocating memory for symbol table...
[00:00:42.799,000] <dbg> llext: do_llext_load: Copying symbols...
[00:00:42.806,000] <dbg> llext: llext_copy_symbols: function symbol 0 name yield addr 0x2400ef89
[00:00:42.815,000] <dbg> llext: llext_copy_symbols: function symbol 1 name _Z20start_static_threadsv addr 0x2400eea9
[00:00:42.826,000] <dbg> llext: llext_copy_symbols: function symbol 2 name _ZN7arduino12ZephyrSerial5writeEPKhj addr 0x2400f30d
[00:00:42.838,000] <dbg> llext: llext_copy_symbols: function symbol 3 name _ZN7arduino12ZephyrSerial5flushEv addr 0x2400f2e1
[00:00:42.849,000] <dbg> llext: llext_copy_symbols: function symbol 4 name Serial1 addr 0x2400fd4c
[00:00:42.859,000] <dbg> llext: llext_copy_symbols: function symbol 5 name A11_PURE addr 0x2400f940
[00:00:42.868,000] <dbg> llext: llext_copy_symbols: function symbol 6 name loop addr 0x2400edcd
[00:00:42.877,000] <dbg> llext: llext_copy_symbols: function symbol 7 name A8_PURE addr 0x2400f94c
[00:00:42.887,000] <dbg> llext: llext_copy_symbols: function symbol 8 name _ZN7arduino12ZephyrSerial10IrqHandlerEv addr 0x2400f37d
[00:00:42.899,000] <dbg> llext: llext_copy_symbols: function symbol 9 name digitalWrite addr 0x2400efcd
[00:00:42.909,000] <dbg> llext: llext_copy_symbols: function symbol 10 name pinMode addr 0x2400ef91
[00:00:42.918,000] <dbg> llext: llext_copy_symbols: function symbol 11 name _ZTVN7arduino12ZephyrSerialE addr 0x2400f8d0
[00:00:42.929,000] <dbg> llext: llext_copy_symbols: function symbol 12 name Serial3 addr 0x2400fb74
[00:00:42.939,000] <dbg> llext: llext_copy_symbols: function symbol 13 name _Z12_on_1200_bpsv addr 0x2400ee39
[00:00:42.949,000] <dbg> llext: llext_copy_symbols: function symbol 14 name Serial addr 0x2400f950
[00:00:42.959,000] <dbg> llext: llext_copy_symbols: function symbol 15 name _ZN7arduino10SerialUSB_5beginEmt addr 0x2400f015
[00:00:42.970,000] <dbg> llext: llext_copy_symbols: function symbol 16 name _ZN7arduino12ZephyrSerial4readEv addr 0x2400f129
[00:00:42.982,000] <dbg> llext: llext_copy_symbols: function symbol 17 name _ZN7arduino12ZephyrSerial11IrqDispatchEPK6devicePv addr 0x2400f469
[00:00:42.995,000] <dbg> llext: llext_copy_symbols: function symbol 18 name _ZN7arduino12ZephyrSerial5beginEmt addr 0x2400f229
[00:00:43.007,000] <dbg> llext: llext_copy_symbols: function symbol 19 name _ZN7arduino12ZephyrSerial9availableEv addr 0x2400f1f5
[00:00:43.019,000] <dbg> llext: llext_copy_symbols: function symbol 20 name delay addr 0x2400efe1
[00:00:43.028,000] <dbg> llext: llext_copy_symbols: function symbol 21 name _ZTVN7arduino10SerialUSB_E addr 0x2400f89c
[00:00:43.039,000] <dbg> llext: llext_copy_symbols: function symbol 22 name setup addr 0x2400edc1
[00:00:43.049,000] <dbg> llext: llext_copy_symbols: function symbol 23 name A9_PURE addr 0x2400f948
[00:00:43.058,000] <dbg> llext: llext_copy_symbols: function symbol 24 name A10_PURE addr 0x2400f944
[00:00:43.068,000] <dbg> llext: llext_copy_symbols: function symbol 25 name _ZN7arduino12ZephyrSerial4peekEv addr 0x2400f171
[00:00:43.079,000] <dbg> llext: llext_copy_symbols: function symbol 26 name _ZN7arduino12ZephyrSerial17availableForWriteEv addr 0x2400f1b9
[00:00:43.092,000] <dbg> llext: llext_copy_symbols: function symbol 27 name _ZN7arduino10SerialUSB_cvbEv addr 0x2400f055
[00:00:43.103,000] <dbg> llext: llext_copy_symbols: function symbol 28 name Serial4 addr 0x2400fa88
[00:00:43.113,000] <dbg> llext: llext_copy_symbols: function symbol 29 name Serial2 addr 0x2400fc60
[00:00:43.122,000] <dbg> llext: do_llext_load: Linking ELF...
[00:00:43.128,000] <dbg> llext: llext_link: relocation section .rel.text (2) acting on section 1 has 77 relocations
[00:00:43.139,000] <dbg> llext: llext_link: relocation 2:0 info 0x9902 (type 2, sym 153) offset 8 sym_name pinMode sym_type 2 sym_bind 1 sym_ndx 1
[00:00:43.153,000] <inf> llext: writing relocation type 2 at 0x2400edc8 with symbol pinMode (0x2400ef91)
[00:00:43.163,000] <dbg> elf: arch_elf_relocate: 2 2400edc8 2400ef91 pinMode
[00:00:43.170,000] <dbg> llext: llext_link: relocation 2:1 info 0x9802 (type 2, sym 152) offset 68 sym_name digitalWrite sym_type 2 sym_bind 1 sym_ndx 1
[00:00:43.184,000] <inf> llext: writing relocation type 2 at 0x2400ee04 with symbol digitalWrite (0x2400efcd)
[00:00:43.195,000] <dbg> elf: arch_elf_relocate: 2 2400ee04 2400efcd digitalWrite
[00:00:43.203,000] <dbg> llext: llext_link: relocation 2:2 info 0xb302 (type 2, sym 179) offset 72 sym_name delay sym_type 2 sym_bind 1 sym_ndx 1
[00:00:43.216,000] <inf> llext: writing relocation type 2 at 0x2400ee08 with symbol delay (0x2400efe1)
[00:00:43.226,000] <dbg> elf: arch_elf_relocate: 2 2400ee08 2400efe1 delay
[00:00:43.233,000] <dbg> llext: llext_link: relocation 2:3 info 0x9202 (type 2, sym 146) offset 104 sym_name A8_PURE sym_type 1 sym_bind 1 sym_ndx 5
[00:00:43.247,000] <inf> llext: writing relocation type 2 at 0x2400ee28 with symbol A8_PURE (0x2400f94c)
[00:00:43.257,000] <dbg> elf: arch_elf_relocate: 2 2400ee28 2400f94c A8_PURE
[00:00:43.264,000] <dbg> llext: llext_link: relocation 2:4 info 0xb902 (type 2, sym 185) offset 108 sym_name A9_PURE sym_type 1 sym_bind 1 sym_ndx 5
[00:00:43.278,000] <inf> llext: writing relocation type 2 at 0x2400ee2c with symbol A9_PURE (0x2400f948)
[00:00:43.288,000] <dbg> elf: arch_elf_relocate: 2 2400ee2c 2400f948 A9_PURE
[00:00:43.295,000] <dbg> llext: llext_link: relocation 2:5 info 0xbb02 (type 2, sym 187) offset 112 sym_name A10_PURE sym_type 1 sym_bind 1 sym_ndx 5
[00:00:43.309,000] <inf> llext: writing relocation type 2 at 0x2400ee30 with symbol A10_PURE (0x2400f944)
[00:00:43.319,000] <dbg> elf: arch_elf_relocate: 2 2400ee30 2400f944 A10_PURE
[00:00:43.327,000] <dbg> llext: llext_link: relocation 2:6 info 0x8f02 (type 2, sym 143) offset 116 sym_name A11_PURE sym_type 1 sym_bind 1 sym_ndx 5
[00:00:43.340,000] <inf> llext: writing relocation type 2 at 0x2400ee34 with symbol A11_PURE (0x2400f940)
[00:00:43.350,000] <dbg> elf: arch_elf_relocate: 2 2400ee34 2400f940 A11_PURE
[00:00:43.358,000] <dbg> llext: llext_link: relocation 2:7 info 0xa202 (type 2, sym 162) offset 208 sym_name Serial sym_type 1 sym_bind 1 sym_ndx 5
[00:00:43.372,000] <inf> llext: writing relocation type 2 at 0x2400ee90 with symbol Serial (0x2400f950)
[00:00:43.381,000] <dbg> elf: arch_elf_relocate: 2 2400ee90 2400f950 Serial
[00:00:43.389,000] <dbg> llext: llext_link: relocation 2:8 info 0xa402 (type 2, sym 164) offset 212 sym_name _ZN7arduino10SerialUSB_5beginEmt sym_type 2 sym_bind 1 sym_ndx 1
[00:00:43.405,000] <inf> llext: writing relocation type 2 at 0x2400ee94 with symbol _ZN7arduino10SerialUSB_5beginEmt (0x2400f015)
[00:00:43.417,000] <dbg> elf: arch_elf_relocate: 2 2400ee94 2400f015 _ZN7arduino10SerialUSB_5beginEmt
[00:00:43.426,000] <dbg> llext: llext_link: relocation 2:9 info 0x9102 (type 2, sym 145) offset 216 sym_name initVariant sym_type 2 sym_bind 2 sym_ndx 1
[00:00:43.440,000] <inf> llext: writing relocation type 2 at 0x2400ee98 with symbol initVariant (0x2400ee69)
[00:00:43.451,000] <dbg> elf: arch_elf_relocate: 2 2400ee98 2400ee69 initVariant
[00:00:43.458,000] <dbg> llext: llext_link: relocation 2:10 info 0x9002 (type 2, sym 144) offset 220 sym_name loop sym_type 2 sym_bind 1 sym_ndx 1
[00:00:43.472,000] <inf> llext: writing relocation type 2 at 0x2400ee9c with symbol loop (0x2400edcd)
[00:00:43.482,000] <dbg> elf: arch_elf_relocate: 2 2400ee9c 2400edcd loop
[00:00:43.489,000] <dbg> llext: llext_link: relocation 2:11 info 0x8502 (type 2, sym 133) offset 224 sym_name _Z20start_static_threadsv sym_type 2 sym_bind 1 sym_ndx 1
[00:00:43.504,000] <inf> llext: writing relocation type 2 at 0x2400eea0 with symbol _Z20start_static_threadsv (0x2400eea9)
[00:00:43.516,000] <dbg> elf: arch_elf_relocate: 2 2400eea0 2400eea9 _Z20start_static_threadsv
[00:00:43.525,000] <dbg> llext: llext_link: relocation 2:12 info 0xb702 (type 2, sym 183) offset 228 sym_name setup sym_type 2 sym_bind 1 sym_ndx 1
[00:00:43.538,000] <inf> llext: writing relocation type 2 at 0x2400eea4 with symbol setup (0x2400edc1)
[00:00:43.548,000] <dbg> elf: arch_elf_relocate: 2 2400eea4 2400edc1 setup
[00:00:43.555,000] <dbg> llext: llext_link: relocation 2:13 info 0xc102 (type 2, sym 193) offset 344 sym_name __static_thread_data_list_start sym_type 0 sym_bind 1 sym_ndx 1
[00:00:43.571,000] <inf> llext: writing relocation type 2 at 0x2400ef18 with symbol __static_thread_data_list_start (0x2400f4e8)
[00:00:43.583,000] <dbg> elf: arch_elf_relocate: 2 2400ef18 2400f4e8 __static_thread_data_list_start
[00:00:43.593,000] <dbg> llext: llext_link: relocation 2:14 info 0xa502 (type 2, sym 165) offset 348 sym_name __static_thread_data_list_end sym_type 0 sym_bind 1 sym_ndx 1
[00:00:43.608,000] <inf> llext: writing relocation type 2 at 0x2400ef1c with symbol __static_thread_data_list_end (0x2400f4e8)
[00:00:43.620,000] <dbg> elf: arch_elf_relocate: 2 2400ef1c 2400f4e8 __static_thread_data_list_end
[00:00:43.630,000] <inf> llext: found symbol z_impl_k_thread_create at 0x8057ac5
[00:00:43.638,000] <dbg> llext: llext_link: relocation 2:15 info 0x8402 (type 2, sym 132) offset 352 sym_name z_impl_k_thread_create sym_type 0 sym_bind 1 sym_ndx 0
[00:00:43.653,000] <inf> llext: writing relocation type 2 at 0x2400ef20 with symbol z_impl_k_thread_create (0x8057ac5)
[00:00:43.664,000] <inf> llext: found symbol z_impl_k_thread_create at 0x8057ac5
[00:00:43.672,000] <dbg> elf: arch_elf_relocate: 2 2400ef20 8057ac5 z_impl_k_thread_create
[00:00:43.680,000] <inf> llext: found symbol z_impl_k_wakeup at 0x8058171
[00:00:43.687,000] <dbg> llext: llext_link: relocation 2:16 info 0xc702 (type 2, sym 199) offset 356 sym_name z_impl_k_wakeup sym_type 0 sym_bind 1 sym_ndx 0
[00:00:43.702,000] <inf> llext: writing relocation type 2 at 0x2400ef24 with symbol z_impl_k_wakeup (0x8058171)
[00:00:43.712,000] <inf> llext: found symbol z_impl_k_wakeup at 0x8058171
[00:00:43.720,000] <dbg> elf: arch_elf_relocate: 2 2400ef24 8058171 z_impl_k_wakeup
[00:00:43.728,000] <inf> llext: found symbol k_sched_lock at 0x8057f49
[00:00:43.735,000] <dbg> llext: llext_link: relocation 2:17 info 0x9702 (type 2, sym 151) offset 360 sym_name k_sched_lock sym_type 0 sym_bind 1 sym_ndx 0
[00:00:43.749,000] <inf> llext: writing relocation type 2 at 0x2400ef28 with symbol k_sched_lock (0x8057f49)
[00:00:43.759,000] <inf> llext: found symbol k_sched_lock at 0x8057f49
[00:00:43.766,000] <dbg> elf: arch_elf_relocate: 2 2400ef28 8057f49 k_sched_lock
[00:00:43.774,000] <inf> llext: found symbol k_sched_unlock at 0x8057f71
[00:00:43.781,000] <dbg> llext: llext_link: relocation 2:18 info 0xad02 (type 2, sym 173) offset 364 sym_name k_sched_unlock sym_type 0 sym_bind 1 sym_ndx 0
[00:00:43.795,000] <inf> llext: writing relocation type 2 at 0x2400ef2c with symbol k_sched_unlock (0x8057f71)
[00:00:43.806,000] <inf> llext: found symbol k_sched_unlock at 0x8057f71
[00:00:43.813,000] <dbg> elf: arch_elf_relocate: 2 2400ef2c 8057f71 k_sched_unlock
[00:00:43.821,000] <inf> llext: found symbol z_impl_k_thread_name_set at 0x805794d
[00:00:43.829,000] <dbg> llext: llext_link: relocation 2:19 info 0x8902 (type 2, sym 137) offset 368 sym_name z_impl_k_thread_name_set sym_type 0 sym_bind 1 sym_ndx 0
[00:00:43.844,000] <inf> llext: writing relocation type 2 at 0x2400ef30 with symbol z_impl_k_thread_name_set (0x805794d)
[00:00:43.856,000] <inf> llext: found symbol z_impl_k_thread_name_set at 0x805794d
[00:00:43.864,000] <dbg> elf: arch_elf_relocate: 2 2400ef30 805794d z_impl_k_thread_name_set
[00:00:43.872,000] <inf> llext: found symbol z_impl_k_yield at 0x8058069
[00:00:43.880,000] <dbg> llext: llext_link: relocation 2:20 info 0x8c02 (type 2, sym 140) offset 460 sym_name z_impl_k_yield sym_type 0 sym_bind 1 sym_ndx 0
[00:00:43.894,000] <inf> llext: writing relocation type 2 at 0x2400ef8c with symbol z_impl_k_yield (0x8058069)
[00:00:43.904,000] <inf> llext: found symbol z_impl_k_yield at 0x8058069
[00:00:43.911,000] <dbg> elf: arch_elf_relocate: 2 2400ef8c 8058069 z_impl_k_yield
[00:00:43.919,000] <dbg> llext: llext_link: relocation 2:21 info 0x102 (type 2, sym 1) offset 508 sym_name .rodata sym_type 3 sym_bind 0 sym_ndx 3
[00:00:43.933,000] <inf> llext: writing relocation type 2 at 0x2400efbc with symbol .rodata (0x2400f520)
[00:00:43.943,000] <dbg> elf: arch_elf_relocate: 2 2400efbc 2400f520 .rodata
[00:00:43.950,000] <dbg> llext: llext_link: relocation 2:22 info 0x1b02 (type 2, sym 27) offset 512 sym_name gpio_pin_configure_dt.isra.0 sym_type 2 sym_bind 0 sym_ndx 1
[00:00:43.966,000] <inf> llext: writing relocation type 2 at 0x2400efc0 with symbol gpio_pin_configure_dt.isra.0 (0x2400ef5d)
[00:00:43.978,000] <dbg> elf: arch_elf_relocate: 2 2400efc0 2400ef5d gpio_pin_configure_dt.isra.0
[00:00:43.987,000] <dbg> llext: llext_link: relocation 2:23 info 0x102 (type 2, sym 1) offset 536 sym_name .rodata sym_type 3 sym_bind 0 sym_ndx 3
[00:00:44.000,000] <inf> llext: writing relocation type 2 at 0x2400efd8 with symbol .rodata (0x2400f520)
[00:00:44.010,000] <dbg> elf: arch_elf_relocate: 2 2400efd8 2400f520 .rodata
[00:00:44.018,000] <dbg> llext: llext_link: relocation 2:24 info 0x1902 (type 2, sym 25) offset 540 sym_name gpio_pin_set_dt.isra.0 sym_type 2 sym_bind 0 sym_ndx 1
[00:00:44.033,000] <inf> llext: writing relocation type 2 at 0x2400efdc with symbol gpio_pin_set_dt.isra.0 (0x2400ef35)
[00:00:44.044,000] <dbg> elf: arch_elf_relocate: 2 2400efdc 2400ef35 gpio_pin_set_dt.isra.0
[00:00:44.053,000] <inf> llext: found symbol z_impl_k_sleep at 0x8061009
[00:00:44.060,000] <dbg> llext: llext_link: relocation 2:25 info 0xa802 (type 2, sym 168) offset 556 sym_name z_impl_k_sleep sym_type 0 sym_bind 1 sym_ndx 0
[00:00:44.074,000] <inf> llext: writing relocation type 2 at 0x2400efec with symbol z_impl_k_sleep (0x8061009)
[00:00:44.085,000] <inf> llext: found symbol z_impl_k_sleep at 0x8061009
[00:00:44.092,000] <dbg> elf: arch_elf_relocate: 2 2400efec 8061009 z_impl_k_sleep
[00:00:44.100,000] <inf> llext: found symbol usb_enable at 0x8044e75
[00:00:44.107,000] <dbg> llext: llext_link: relocation 2:26 info 0xc902 (type 2, sym 201) offset 640 sym_name usb_enable sym_type 0 sym_bind 1 sym_ndx 0
[00:00:44.121,000] <inf> llext: writing relocation type 2 at 0x2400f040 with symbol usb_enable (0x8044e75)
[00:00:44.131,000] <inf> llext: found symbol usb_enable at 0x8044e75
[00:00:44.138,000] <dbg> elf: arch_elf_relocate: 2 2400f040 8044e75 usb_enable
[00:00:44.145,000] <dbg> llext: llext_link: relocation 2:27 info 0x2c02 (type 2, sym 44) offset 644 sym_name _ZL18_baudChangeHandlerPK6devicej sym_type 2 sym_bind 0 sym_ndx 1
[00:00:44.161,000] <inf> llext: writing relocation type 2 at 0x2400f044 with symbol _ZL18_baudChangeHandlerPK6devicej (0x2400f075)
[00:00:44.173,000] <dbg> elf: arch_elf_relocate: 2 2400f044 2400f075 _ZL18_baudChangeHandlerPK6devicej
[00:00:44.183,000] <inf> llext: found symbol cdc_acm_dte_rate_callback_set at 0x8045ca1
[00:00:44.192,000] <dbg> llext: llext_link: relocation 2:28 info 0xcb02 (type 2, sym 203) offset 648 sym_name cdc_acm_dte_rate_callback_set sym_type 0 sym_bind 1 sym_ndx 0
[00:00:44.207,000] <inf> llext: writing relocation type 2 at 0x2400f048 with symbol cdc_acm_dte_rate_callback_set (0x8045ca1)
[00:00:44.219,000] <inf> llext: found symbol cdc_acm_dte_rate_callback_set at 0x8045ca1
[00:00:44.227,000] <dbg> elf: arch_elf_relocate: 2 2400f048 8045ca1 cdc_acm_dte_rate_callback_set
[00:00:44.237,000] <inf> llext: found symbol __device_dts_ord_111 at 0x8062288
[00:00:44.244,000] <dbg> llext: llext_link: relocation 2:29 info 0xa002 (type 2, sym 160) offset 652 sym_name __device_dts_ord_111 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:44.259,000] <inf> llext: writing relocation type 2 at 0x2400f04c with symbol __device_dts_ord_111 (0x8062288)
[00:00:44.270,000] <inf> llext: found symbol __device_dts_ord_111 at 0x8062288
[00:00:44.278,000] <dbg> elf: arch_elf_relocate: 2 2400f04c 8062288 __device_dts_ord_111
[00:00:44.286,000] <dbg> llext: llext_link: relocation 2:30 info 0xae02 (type 2, sym 174) offset 656 sym_name _ZN7arduino12ZephyrSerial5beginEmt sym_type 2 sym_bind 1 sym_ndx 1
[00:00:44.302,000] <inf> llext: writing relocation type 2 at 0x2400f050 with symbol _ZN7arduino12ZephyrSerial5beginEmt (0x2400f229)
[00:00:44.315,000] <dbg> elf: arch_elf_relocate: 2 2400f050 2400f229 _ZN7arduino12ZephyrSerial5beginEmt
[00:00:44.325,000] <inf> llext: found symbol usb_disable at 0x8044c29
[00:00:44.331,000] <dbg> llext: llext_link: relocation 2:31 info 0xc802 (type 2, sym 200) offset 712 sym_name usb_disable sym_type 0 sym_bind 1 sym_ndx 0
[00:00:44.346,000] <inf> llext: writing relocation type 2 at 0x2400f088 with symbol usb_disable (0x8044c29)
[00:00:44.356,000] <inf> llext: found symbol usb_disable at 0x8044c29
[00:00:44.363,000] <dbg> elf: arch_elf_relocate: 2 2400f088 8044c29 usb_disable
[00:00:44.370,000] <dbg> llext: llext_link: relocation 2:32 info 0xa102 (type 2, sym 161) offset 716 sym_name _Z12_on_1200_bpsv sym_type 2 sym_bind 1 sym_ndx 1
[00:00:44.385,000] <inf> llext: writing relocation type 2 at 0x2400f08c with symbol _Z12_on_1200_bpsv (0x2400ee39)
[00:00:44.396,000] <dbg> elf: arch_elf_relocate: 2 2400f08c 2400ee39 _Z12_on_1200_bpsv
[00:00:44.404,000] <inf> llext: found symbol z_impl_k_sem_init at 0x8060c69
[00:00:44.411,000] <dbg> llext: llext_link: relocation 2:33 info 0x9c02 (type 2, sym 156) offset 756 sym_name z_impl_k_sem_init sym_type 0 sym_bind 1 sym_ndx 0
[00:00:44.426,000] <inf> llext: writing relocation type 2 at 0x2400f0b4 with symbol z_impl_k_sem_init (0x8060c69)
[00:00:44.437,000] <inf> llext: found symbol z_impl_k_sem_init at 0x8060c69
[00:00:44.444,000] <dbg> elf: arch_elf_relocate: 2 2400f0b4 8060c69 z_impl_k_sem_init
[00:00:44.452,000] <dbg> llext: llext_link: relocation 2:34 info 0xa202 (type 2, sym 162) offset 812 sym_name Serial sym_type 1 sym_bind 1 sym_ndx 5
[00:00:44.466,000] <inf> llext: writing relocation type 2 at 0x2400f0ec with symbol Serial (0x2400f950)
[00:00:44.476,000] <dbg> elf: arch_elf_relocate: 2 2400f0ec 2400f950 Serial
[00:00:44.483,000] <dbg> llext: llext_link: relocation 2:35 info 0xb602 (type 2, sym 182) offset 816 sym_name _ZN7arduino12ZephyrSerial18ZephyrSerialBufferILi64EEC1Ev sym_type 2 sym_bind 2 sym_ndx 1
[00:00:44.501,000] <inf> llext: writing relocation type 2 at 0x2400f0f0 with symbol _ZN7arduino12ZephyrSerial18ZephyrSerialBufferILi64EEC1Ev (0x2400f091)
[00:00:44.516,000] <dbg> elf: arch_elf_relocate: 2 2400f0f0 2400f091 _ZN7arduino12ZephyrSerial18ZephyrSerialBufferILi64EEC1Ev
[00:00:44.527,000] <dbg> llext: llext_link: relocation 2:36 info 0x9a02 (type 2, sym 154) offset 820 sym_name _ZTVN7arduino12ZephyrSerialE sym_type 1 sym_bind 1 sym_ndx 3
[00:00:44.543,000] <inf> llext: writing relocation type 2 at 0x2400f0f4 with symbol _ZTVN7arduino12ZephyrSerialE (0x2400f8d0)
[00:00:44.555,000] <dbg> elf: arch_elf_relocate: 2 2400f0f4 2400f8d0 _ZTVN7arduino12ZephyrSerialE
[00:00:44.564,000] <inf> llext: found symbol __device_dts_ord_111 at 0x8062288
[00:00:44.572,000] <dbg> llext: llext_link: relocation 2:37 info 0xa002 (type 2, sym 160) offset 824 sym_name __device_dts_ord_111 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:44.587,000] <inf> llext: writing relocation type 2 at 0x2400f0f8 with symbol __device_dts_ord_111 (0x8062288)
[00:00:44.597,000] <inf> llext: found symbol __device_dts_ord_111 at 0x8062288
[00:00:44.605,000] <dbg> elf: arch_elf_relocate: 2 2400f0f8 8062288 __device_dts_ord_111
[00:00:44.614,000] <dbg> llext: llext_link: relocation 2:38 info 0xb402 (type 2, sym 180) offset 828 sym_name _ZTVN7arduino10SerialUSB_E sym_type 1 sym_bind 1 sym_ndx 3
[00:00:44.629,000] <inf> llext: writing relocation type 2 at 0x2400f0fc with symbol _ZTVN7arduino10SerialUSB_E (0x2400f89c)
[00:00:44.641,000] <dbg> elf: arch_elf_relocate: 2 2400f0fc 2400f89c _ZTVN7arduino10SerialUSB_E
[00:00:44.650,000] <inf> llext: found symbol z_impl_k_sem_give at 0x80572f9
[00:00:44.657,000] <dbg> llext: llext_link: relocation 2:39 info 0xa602 (type 2, sym 166) offset 860 sym_name z_impl_k_sem_give sym_type 0 sym_bind 1 sym_ndx 0
[00:00:44.672,000] <inf> llext: writing relocation type 2 at 0x2400f11c with symbol z_impl_k_sem_give (0x80572f9)
[00:00:44.682,000] <inf> llext: found symbol z_impl_k_sem_give at 0x80572f9
[00:00:44.690,000] <dbg> elf: arch_elf_relocate: 2 2400f11c 80572f9 z_impl_k_sem_give
[00:00:44.698,000] <inf> llext: found symbol z_impl_k_sem_take at 0x8057371
[00:00:44.705,000] <dbg> llext: llext_link: relocation 2:40 info 0x9502 (type 2, sym 149) offset 868 sym_name z_impl_k_sem_take sym_type 0 sym_bind 1 sym_ndx 0
[00:00:44.720,000] <inf> llext: writing relocation type 2 at 0x2400f124 with symbol z_impl_k_sem_take (0x8057371)
[00:00:44.731,000] <inf> llext: found symbol z_impl_k_sem_take at 0x8057371
[00:00:44.738,000] <dbg> elf: arch_elf_relocate: 2 2400f124 8057371 z_impl_k_sem_take
[00:00:44.746,000] <dbg> llext: llext_link: relocation 2:41 info 0x4002 (type 2, sym 64) offset 932 sym_name k_sem_take.isra.0 sym_type 2 sym_bind 0 sym_ndx 1
[00:00:44.761,000] <inf> llext: writing relocation type 2 at 0x2400f164 with symbol k_sem_take.isra.0 (0x2400f121)
[00:00:44.772,000] <dbg> elf: arch_elf_relocate: 2 2400f164 2400f121 k_sem_take.isra.0
[00:00:44.780,000] <inf> llext: found symbol ring_buf_get at 0x805abc1
[00:00:44.787,000] <dbg> llext: llext_link: relocation 2:42 info 0xa902 (type 2, sym 169) offset 936 sym_name ring_buf_get sym_type 0 sym_bind 1 sym_ndx 0
[00:00:44.801,000] <inf> llext: writing relocation type 2 at 0x2400f168 with symbol ring_buf_get (0x805abc1)
[00:00:44.812,000] <inf> llext: found symbol ring_buf_get at 0x805abc1
[00:00:44.819,000] <dbg> elf: arch_elf_relocate: 2 2400f168 805abc1 ring_buf_get
[00:00:44.826,000] <dbg> llext: llext_link: relocation 2:43 info 0x3d02 (type 2, sym 61) offset 940 sym_name k_sem_give sym_type 2 sym_bind 0 sym_ndx 1
[00:00:44.840,000] <inf> llext: writing relocation type 2 at 0x2400f16c with symbol k_sem_give (0x2400f119)
[00:00:44.850,000] <dbg> elf: arch_elf_relocate: 2 2400f16c 2400f119 k_sem_give
[00:00:44.858,000] <dbg> llext: llext_link: relocation 2:44 info 0x4002 (type 2, sym 64) offset 1004 sym_name k_sem_take.isra.0 sym_type 2 sym_bind 0 sym_ndx 1
[00:00:44.873,000] <inf> llext: writing relocation type 2 at 0x2400f1ac with symbol k_sem_take.isra.0 (0x2400f121)
[00:00:44.884,000] <dbg> elf: arch_elf_relocate: 2 2400f1ac 2400f121 k_sem_take.isra.0
[00:00:44.892,000] <inf> llext: found symbol ring_buf_peek at 0x805ac05
[00:00:44.899,000] <dbg> llext: llext_link: relocation 2:45 info 0xc402 (type 2, sym 196) offset 1008 sym_name ring_buf_peek sym_type 0 sym_bind 1 sym_ndx 0
[00:00:44.913,000] <inf> llext: writing relocation type 2 at 0x2400f1b0 with symbol ring_buf_peek (0x805ac05)
[00:00:44.924,000] <inf> llext: found symbol ring_buf_peek at 0x805ac05
[00:00:44.931,000] <dbg> elf: arch_elf_relocate: 2 2400f1b0 805ac05 ring_buf_peek
[00:00:44.939,000] <dbg> llext: llext_link: relocation 2:46 info 0x3d02 (type 2, sym 61) offset 1012 sym_name k_sem_give sym_type 2 sym_bind 0 sym_ndx 1
[00:00:44.953,000] <inf> llext: writing relocation type 2 at 0x2400f1b4 with symbol k_sem_give (0x2400f119)
[00:00:44.963,000] <dbg> elf: arch_elf_relocate: 2 2400f1b4 2400f119 k_sem_give
[00:00:44.971,000] <dbg> llext: llext_link: relocation 2:47 info 0x4002 (type 2, sym 64) offset 1068 sym_name k_sem_take.isra.0 sym_type 2 sym_bind 0 sym_ndx 1
[00:00:44.985,000] <inf> llext: writing relocation type 2 at 0x2400f1ec with symbol k_sem_take.isra.0 (0x2400f121)
[00:00:44.996,000] <dbg> elf: arch_elf_relocate: 2 2400f1ec 2400f121 k_sem_take.isra.0
[00:00:45.004,000] <dbg> llext: llext_link: relocation 2:48 info 0x3d02 (type 2, sym 61) offset 1072 sym_name k_sem_give sym_type 2 sym_bind 0 sym_ndx 1
[00:00:45.018,000] <inf> llext: writing relocation type 2 at 0x2400f1f0 with symbol k_sem_give (0x2400f119)
[00:00:45.029,000] <dbg> elf: arch_elf_relocate: 2 2400f1f0 2400f119 k_sem_give
[00:00:45.036,000] <dbg> llext: llext_link: relocation 2:49 info 0x4002 (type 2, sym 64) offset 1120 sym_name k_sem_take.isra.0 sym_type 2 sym_bind 0 sym_ndx 1
[00:00:45.051,000] <inf> llext: writing relocation type 2 at 0x2400f220 with symbol k_sem_take.isra.0 (0x2400f121)
[00:00:45.062,000] <dbg> elf: arch_elf_relocate: 2 2400f220 2400f121 k_sem_take.isra.0
[00:00:45.070,000] <dbg> llext: llext_link: relocation 2:50 info 0x3d02 (type 2, sym 61) offset 1124 sym_name k_sem_give sym_type 2 sym_bind 0 sym_ndx 1
[00:00:45.084,000] <inf> llext: writing relocation type 2 at 0x2400f224 with symbol k_sem_give (0x2400f119)
[00:00:45.094,000] <dbg> elf: arch_elf_relocate: 2 2400f224 2400f119 k_sem_give
[00:00:45.102,000] <dbg> llext: llext_link: relocation 2:51 info 0xab02 (type 2, sym 171) offset 1300 sym_name _ZN7arduino12ZephyrSerial11IrqDispatchEPK6devicePv sym_type 2 sym_bind 1 sym_ndx 1
[00:00:45.120,000] <inf> llext: writing relocation type 2 at 0x2400f2d4 with symbol _ZN7arduino12ZephyrSerial11IrqDispatchEPK6devicePv (0x2400f469)
[00:00:45.133,000] <dbg> elf: arch_elf_relocate: 2 2400f2d4 2400f469 _ZN7arduino12ZephyrSerial11IrqDispatchEPK6devicePv
[00:00:45.145,000] <dbg> llext: llext_link: relocation 2:52 info 0x4002 (type 2, sym 64) offset 1304 sym_name k_sem_take.isra.0 sym_type 2 sym_bind 0 sym_ndx 1
[00:00:45.159,000] <inf> llext: writing relocation type 2 at 0x2400f2d8 with symbol k_sem_take.isra.0 (0x2400f121)
[00:00:45.170,000] <dbg> elf: arch_elf_relocate: 2 2400f2d8 2400f121 k_sem_take.isra.0
[00:00:45.178,000] <dbg> llext: llext_link: relocation 2:53 info 0x3d02 (type 2, sym 61) offset 1308 sym_name k_sem_give sym_type 2 sym_bind 0 sym_ndx 1
[00:00:45.192,000] <inf> llext: writing relocation type 2 at 0x2400f2dc with symbol k_sem_give (0x2400f119)
[00:00:45.203,000] <dbg> elf: arch_elf_relocate: 2 2400f2dc 2400f119 k_sem_give
[00:00:45.210,000] <inf> llext: found symbol z_impl_k_yield at 0x8058069
[00:00:45.217,000] <dbg> llext: llext_link: relocation 2:54 info 0x8c02 (type 2, sym 140) offset 1352 sym_name z_impl_k_yield sym_type 0 sym_bind 1 sym_ndx 0
[00:00:45.232,000] <inf> llext: writing relocation type 2 at 0x2400f308 with symbol z_impl_k_yield (0x8058069)
[00:00:45.242,000] <inf> llext: found symbol z_impl_k_yield at 0x8058069
[00:00:45.249,000] <dbg> elf: arch_elf_relocate: 2 2400f308 8058069 z_impl_k_yield
[00:00:45.257,000] <inf> llext: found symbol ring_buf_put at 0x805ab81
[00:00:45.264,000] <dbg> llext: llext_link: relocation 2:55 info 0xa302 (type 2, sym 163) offset 1448 sym_name ring_buf_put sym_type 0 sym_bind 1 sym_ndx 0
[00:00:45.279,000] <inf> llext: writing relocation type 2 at 0x2400f368 with symbol ring_buf_put (0x805ab81)
[00:00:45.289,000] <inf> llext: found symbol ring_buf_put at 0x805ab81
[00:00:45.296,000] <dbg> elf: arch_elf_relocate: 2 2400f368 805ab81 ring_buf_put
[00:00:45.304,000] <dbg> llext: llext_link: relocation 2:56 info 0x3902 (type 2, sym 57) offset 1452 sym_name z_impl_uart_irq_tx_enable sym_type 2 sym_bind 0 sym_ndx 1
[00:00:45.319,000] <inf> llext: writing relocation type 2 at 0x2400f36c with symbol z_impl_uart_irq_tx_enable (0x2400f101)
[00:00:45.331,000] <dbg> elf: arch_elf_relocate: 2 2400f36c 2400f101 z_impl_uart_irq_tx_enable
[00:00:45.340,000] <dbg> llext: llext_link: relocation 2:57 info 0x8302 (type 2, sym 131) offset 1456 sym_name yield sym_type 2 sym_bind 1 sym_ndx 1
[00:00:45.353,000] <inf> llext: writing relocation type 2 at 0x2400f370 with symbol yield (0x2400ef89)
[00:00:45.363,000] <dbg> elf: arch_elf_relocate: 2 2400f370 2400ef89 yield
[00:00:45.370,000] <dbg> llext: llext_link: relocation 2:58 info 0x4002 (type 2, sym 64) offset 1460 sym_name k_sem_take.isra.0 sym_type 2 sym_bind 0 sym_ndx 1
[00:00:45.385,000] <inf> llext: writing relocation type 2 at 0x2400f374 with symbol k_sem_take.isra.0 (0x2400f121)
[00:00:45.396,000] <dbg> elf: arch_elf_relocate: 2 2400f374 2400f121 k_sem_take.isra.0
[00:00:45.404,000] <dbg> llext: llext_link: relocation 2:59 info 0x3d02 (type 2, sym 61) offset 1464 sym_name k_sem_give sym_type 2 sym_bind 0 sym_ndx 1
[00:00:45.418,000] <inf> llext: writing relocation type 2 at 0x2400f378 with symbol k_sem_give (0x2400f119)
[00:00:45.428,000] <dbg> elf: arch_elf_relocate: 2 2400f378 2400f119 k_sem_give
[00:00:45.436,000] <inf> llext: found symbol ring_buf_put at 0x805ab81
[00:00:45.443,000] <dbg> llext: llext_link: relocation 2:60 info 0xa302 (type 2, sym 163) offset 1684 sym_name ring_buf_put sym_type 0 sym_bind 1 sym_ndx 0
[00:00:45.457,000] <inf> llext: writing relocation type 2 at 0x2400f454 with symbol ring_buf_put (0x805ab81)
[00:00:45.468,000] <inf> llext: found symbol ring_buf_put at 0x805ab81
[00:00:45.475,000] <dbg> elf: arch_elf_relocate: 2 2400f454 805ab81 ring_buf_put
[00:00:45.482,000] <dbg> llext: llext_link: relocation 2:61 info 0x4002 (type 2, sym 64) offset 1688 sym_name k_sem_take.isra.0 sym_type 2 sym_bind 0 sym_ndx 1
[00:00:45.497,000] <inf> llext: writing relocation type 2 at 0x2400f458 with symbol k_sem_take.isra.0 (0x2400f121)
[00:00:45.508,000] <dbg> elf: arch_elf_relocate: 2 2400f458 2400f121 k_sem_take.isra.0
[00:00:45.516,000] <dbg> llext: llext_link: relocation 2:62 info 0x3d02 (type 2, sym 61) offset 1692 sym_name k_sem_give sym_type 2 sym_bind 0 sym_ndx 1
[00:00:45.530,000] <inf> llext: writing relocation type 2 at 0x2400f45c with symbol k_sem_give (0x2400f119)
[00:00:45.540,000] <dbg> elf: arch_elf_relocate: 2 2400f45c 2400f119 k_sem_give
[00:00:45.548,000] <inf> llext: found symbol ring_buf_peek at 0x805ac05
[00:00:45.555,000] <dbg> llext: llext_link: relocation 2:63 info 0xc402 (type 2, sym 196) offset 1696 sym_name ring_buf_peek sym_type 0 sym_bind 1 sym_ndx 0
[00:00:45.570,000] <inf> llext: writing relocation type 2 at 0x2400f460 with symbol ring_buf_peek (0x805ac05)
[00:00:45.580,000] <inf> llext: found symbol ring_buf_peek at 0x805ac05
[00:00:45.587,000] <dbg> elf: arch_elf_relocate: 2 2400f460 805ac05 ring_buf_peek
[00:00:45.595,000] <inf> llext: found symbol ring_buf_get at 0x805abc1
[00:00:45.602,000] <dbg> llext: llext_link: relocation 2:64 info 0xa902 (type 2, sym 169) offset 1700 sym_name ring_buf_get sym_type 0 sym_bind 1 sym_ndx 0
[00:00:45.616,000] <inf> llext: writing relocation type 2 at 0x2400f464 with symbol ring_buf_get (0x805abc1)
[00:00:45.626,000] <inf> llext: found symbol ring_buf_get at 0x805abc1
[00:00:45.633,000] <dbg> elf: arch_elf_relocate: 2 2400f464 805abc1 ring_buf_get
[00:00:45.641,000] <dbg> llext: llext_link: relocation 2:65 info 0x9402 (type 2, sym 148) offset 1712 sym_name _ZN7arduino12ZephyrSerial10IrqHandlerEv sym_type 2 sym_bind 1 sym_ndx 1
[00:00:45.658,000] <inf> llext: writing relocation type 2 at 0x2400f470 with symbol _ZN7arduino12ZephyrSerial10IrqHandlerEv (0x2400f37d)
[00:00:45.670,000] <dbg> elf: arch_elf_relocate: 2 2400f470 2400f37d _ZN7arduino12ZephyrSerial10IrqHandlerEv
[00:00:45.681,000] <dbg> llext: llext_link: relocation 2:66 info 0xb602 (type 2, sym 182) offset 1756 sym_name _ZN7arduino12ZephyrSerial18ZephyrSerialBufferILi64EEC1Ev sym_type 2 sym_bind 2 sym_ndx 1
[00:00:45.699,000] <inf> llext: writing relocation type 2 at 0x2400f49c with symbol _ZN7arduino12ZephyrSerial18ZephyrSerialBufferILi64EEC1Ev (0x2400f091)
[00:00:45.713,000] <dbg> elf: arch_elf_relocate: 2 2400f49c 2400f091 _ZN7arduino12ZephyrSerial18ZephyrSerialBufferILi64EEC1Ev
[00:00:45.725,000] <dbg> llext: llext_link: relocation 2:67 info 0x9a02 (type 2, sym 154) offset 1760 sym_name _ZTVN7arduino12ZephyrSerialE sym_type 1 sym_bind 1 sym_ndx 3
[00:00:45.740,000] <inf> llext: writing relocation type 2 at 0x2400f4a0 with symbol _ZTVN7arduino12ZephyrSerialE (0x2400f8d0)
[00:00:45.752,000] <dbg> elf: arch_elf_relocate: 2 2400f4a0 2400f8d0 _ZTVN7arduino12ZephyrSerialE
[00:00:45.761,000] <inf> llext: found symbol __device_dts_ord_66 at 0x8062360
[00:00:45.769,000] <dbg> llext: llext_link: relocation 2:68 info 0xbd02 (type 2, sym 189) offset 1796 sym_name __device_dts_ord_66 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:45.784,000] <inf> llext: writing relocation type 2 at 0x2400f4c4 with symbol __device_dts_ord_66 (0x8062360)
[00:00:45.795,000] <inf> llext: found symbol __device_dts_ord_66 at 0x8062360
[00:00:45.802,000] <dbg> elf: arch_elf_relocate: 2 2400f4c4 8062360 __device_dts_ord_66
[00:00:45.811,000] <dbg> llext: llext_link: relocation 2:69 info 0xb502 (type 2, sym 181) offset 1800 sym_name _ZN7arduino12ZephyrSerialC1EPK6device sym_type 2 sym_bind 2 sym_ndx 1
[00:00:45.827,000] <inf> llext: writing relocation type 2 at 0x2400f4c8 with symbol _ZN7arduino12ZephyrSerialC1EPK6device (0x2400f475)
[00:00:45.840,000] <dbg> elf: arch_elf_relocate: 2 2400f4c8 2400f475 _ZN7arduino12ZephyrSerialC1EPK6device
[00:00:45.850,000] <dbg> llext: llext_link: relocation 2:70 info 0x8d02 (type 2, sym 141) offset 1804 sym_name Serial1 sym_type 1 sym_bind 1 sym_ndx 5
[00:00:45.864,000] <inf> llext: writing relocation type 2 at 0x2400f4cc with symbol Serial1 (0x2400fd4c)
[00:00:45.874,000] <dbg> elf: arch_elf_relocate: 2 2400f4cc 2400fd4c Serial1
[00:00:45.881,000] <inf> llext: found symbol __device_dts_ord_60 at 0x806233c
[00:00:45.889,000] <dbg> llext: llext_link: relocation 2:71 info 0x8702 (type 2, sym 135) offset 1808 sym_name __device_dts_ord_60 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:45.904,000] <inf> llext: writing relocation type 2 at 0x2400f4d0 with symbol __device_dts_ord_60 (0x806233c)
[00:00:45.914,000] <inf> llext: found symbol __device_dts_ord_60 at 0x806233c
[00:00:45.922,000] <dbg> elf: arch_elf_relocate: 2 2400f4d0 806233c __device_dts_ord_60
[00:00:45.930,000] <dbg> llext: llext_link: relocation 2:72 info 0xcc02 (type 2, sym 204) offset 1812 sym_name Serial2 sym_type 1 sym_bind 1 sym_ndx 5
[00:00:45.944,000] <inf> llext: writing relocation type 2 at 0x2400f4d4 with symbol Serial2 (0x2400fc60)
[00:00:45.954,000] <dbg> elf: arch_elf_relocate: 2 2400f4d4 2400fc60 Serial2
[00:00:45.962,000] <inf> llext: found symbol __device_dts_ord_63 at 0x8062318
[00:00:45.969,000] <dbg> llext: llext_link: relocation 2:73 info 0xc502 (type 2, sym 197) offset 1816 sym_name __device_dts_ord_63 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:45.984,000] <inf> llext: writing relocation type 2 at 0x2400f4d8 with symbol __device_dts_ord_63 (0x8062318)
[00:00:45.995,000] <inf> llext: found symbol __device_dts_ord_63 at 0x8062318
[00:00:46.003,000] <dbg> elf: arch_elf_relocate: 2 2400f4d8 8062318 __device_dts_ord_63
[00:00:46.011,000] <dbg> llext: llext_link: relocation 2:74 info 0x9f02 (type 2, sym 159) offset 1820 sym_name Serial3 sym_type 1 sym_bind 1 sym_ndx 5
[00:00:46.025,000] <inf> llext: writing relocation type 2 at 0x2400f4dc with symbol Serial3 (0x2400fb74)
[00:00:46.035,000] <dbg> elf: arch_elf_relocate: 2 2400f4dc 2400fb74 Serial3
[00:00:46.042,000] <inf> llext: found symbol __device_dts_ord_69 at 0x80622f4
[00:00:46.050,000] <dbg> llext: llext_link: relocation 2:75 info 0xaa02 (type 2, sym 170) offset 1824 sym_name __device_dts_ord_69 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:46.065,000] <inf> llext: writing relocation type 2 at 0x2400f4e0 with symbol __device_dts_ord_69 (0x80622f4)
[00:00:46.076,000] <inf> llext: found symbol __device_dts_ord_69 at 0x80622f4
[00:00:46.083,000] <dbg> elf: arch_elf_relocate: 2 2400f4e0 80622f4 __device_dts_ord_69
[00:00:46.092,000] <dbg> llext: llext_link: relocation 2:76 info 0xc202 (type 2, sym 194) offset 1828 sym_name Serial4 sym_type 1 sym_bind 1 sym_ndx 5
[00:00:46.105,000] <inf> llext: writing relocation type 2 at 0x2400f4e4 with symbol Serial4 (0x2400fa88)
[00:00:46.115,000] <dbg> elf: arch_elf_relocate: 2 2400f4e4 2400fa88 Serial4
[00:00:46.123,000] <dbg> llext: llext_link: relocation section .rel.rodata (4) acting on section 3 has 123 relocations
[00:00:46.134,000] <inf> llext: found symbol __device_dts_ord_79 at 0x806221c
[00:00:46.142,000] <dbg> llext: llext_link: relocation 4:0 info 0xb102 (type 2, sym 177) offset 84 sym_name __device_dts_ord_79 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:46.156,000] <inf> llext: writing relocation type 2 at 0x2400f574 with symbol __device_dts_ord_79 (0x806221c)
[00:00:46.167,000] <inf> llext: found symbol __device_dts_ord_79 at 0x806221c
[00:00:46.175,000] <dbg> elf: arch_elf_relocate: 2 2400f574 806221c __device_dts_ord_79
[00:00:46.183,000] <inf> llext: found symbol __device_dts_ord_78 at 0x8062240
[00:00:46.191,000] <dbg> llext: llext_link: relocation 4:1 info 0xca02 (type 2, sym 202) offset 92 sym_name __device_dts_ord_78 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:46.205,000] <inf> llext: writing relocation type 2 at 0x2400f57c with symbol __device_dts_ord_78 (0x8062240)
[00:00:46.216,000] <inf> llext: found symbol __device_dts_ord_78 at 0x8062240
[00:00:46.224,000] <dbg> elf: arch_elf_relocate: 2 2400f57c 8062240 __device_dts_ord_78
[00:00:46.232,000] <inf> llext: found symbol __device_dts_ord_78 at 0x8062240
[00:00:46.240,000] <dbg> llext: llext_link: relocation 4:2 info 0xca02 (type 2, sym 202) offset 100 sym_name __device_dts_ord_78 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:46.254,000] <inf> llext: writing relocation type 2 at 0x2400f584 with symbol __device_dts_ord_78 (0x8062240)
[00:00:46.265,000] <inf> llext: found symbol __device_dts_ord_78 at 0x8062240
[00:00:46.273,000] <dbg> elf: arch_elf_relocate: 2 2400f584 8062240 __device_dts_ord_78
[00:00:46.281,000] <inf> llext: found symbol __device_dts_ord_78 at 0x8062240
[00:00:46.289,000] <dbg> llext: llext_link: relocation 4:3 info 0xca02 (type 2, sym 202) offset 108 sym_name __device_dts_ord_78 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:46.304,000] <inf> llext: writing relocation type 2 at 0x2400f58c with symbol __device_dts_ord_78 (0x8062240)
[00:00:46.314,000] <inf> llext: found symbol __device_dts_ord_78 at 0x8062240
[00:00:46.322,000] <dbg> elf: arch_elf_relocate: 2 2400f58c 8062240 __device_dts_ord_78
[00:00:46.330,000] <inf> llext: found symbol __device_dts_ord_85 at 0x80620fc
[00:00:46.338,000] <dbg> llext: llext_link: relocation 4:4 info 0x8602 (type 2, sym 134) offset 116 sym_name __device_dts_ord_85 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:46.353,000] <inf> llext: writing relocation type 2 at 0x2400f594 with symbol __device_dts_ord_85 (0x80620fc)
[00:00:46.364,000] <inf> llext: found symbol __device_dts_ord_85 at 0x80620fc
[00:00:46.371,000] <dbg> elf: arch_elf_relocate: 2 2400f594 80620fc __device_dts_ord_85
[00:00:46.380,000] <inf> llext: found symbol __device_dts_ord_78 at 0x8062240
[00:00:46.387,000] <dbg> llext: llext_link: relocation 4:5 info 0xca02 (type 2, sym 202) offset 124 sym_name __device_dts_ord_78 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:46.402,000] <inf> llext: writing relocation type 2 at 0x2400f59c with symbol __device_dts_ord_78 (0x8062240)
[00:00:46.413,000] <inf> llext: found symbol __device_dts_ord_78 at 0x8062240
[00:00:46.420,000] <dbg> elf: arch_elf_relocate: 2 2400f59c 8062240 __device_dts_ord_78
[00:00:46.429,000] <inf> llext: found symbol __device_dts_ord_81 at 0x80621d4
[00:00:46.436,000] <dbg> llext: llext_link: relocation 4:6 info 0x9b02 (type 2, sym 155) offset 132 sym_name __device_dts_ord_81 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:46.451,000] <inf> llext: writing relocation type 2 at 0x2400f5a4 with symbol __device_dts_ord_81 (0x80621d4)
[00:00:46.462,000] <inf> llext: found symbol __device_dts_ord_81 at 0x80621d4
[00:00:46.469,000] <dbg> elf: arch_elf_relocate: 2 2400f5a4 80621d4 __device_dts_ord_81
[00:00:46.478,000] <inf> llext: found symbol __device_dts_ord_79 at 0x806221c
[00:00:46.485,000] <dbg> llext: llext_link: relocation 4:7 info 0xb102 (type 2, sym 177) offset 140 sym_name __device_dts_ord_79 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:46.500,000] <inf> llext: writing relocation type 2 at 0x2400f5ac with symbol __device_dts_ord_79 (0x806221c)
[00:00:46.511,000] <inf> llext: found symbol __device_dts_ord_79 at 0x806221c
[00:00:46.519,000] <dbg> elf: arch_elf_relocate: 2 2400f5ac 806221c __device_dts_ord_79
[00:00:46.527,000] <inf> llext: found symbol __device_dts_ord_79 at 0x806221c
[00:00:46.535,000] <dbg> llext: llext_link: relocation 4:8 info 0xb102 (type 2, sym 177) offset 148 sym_name __device_dts_ord_79 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:46.549,000] <inf> llext: writing relocation type 2 at 0x2400f5b4 with symbol __device_dts_ord_79 (0x806221c)
[00:00:46.560,000] <inf> llext: found symbol __device_dts_ord_79 at 0x806221c
[00:00:46.568,000] <dbg> elf: arch_elf_relocate: 2 2400f5b4 806221c __device_dts_ord_79
[00:00:46.576,000] <inf> llext: found symbol __device_dts_ord_79 at 0x806221c
[00:00:46.584,000] <dbg> llext: llext_link: relocation 4:9 info 0xb102 (type 2, sym 177) offset 156 sym_name __device_dts_ord_79 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:46.598,000] <inf> llext: writing relocation type 2 at 0x2400f5bc with symbol __device_dts_ord_79 (0x806221c)
[00:00:46.609,000] <inf> llext: found symbol __device_dts_ord_79 at 0x806221c
[00:00:46.617,000] <dbg> elf: arch_elf_relocate: 2 2400f5bc 806221c __device_dts_ord_79
[00:00:46.625,000] <inf> llext: found symbol __device_dts_ord_86 at 0x80620d8
[00:00:46.633,000] <dbg> llext: llext_link: relocation 4:10 info 0xac02 (type 2, sym 172) offset 164 sym_name __device_dts_ord_86 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:46.648,000] <inf> llext: writing relocation type 2 at 0x2400f5c4 with symbol __device_dts_ord_86 (0x80620d8)
[00:00:46.659,000] <inf> llext: found symbol __device_dts_ord_86 at 0x80620d8
[00:00:46.666,000] <dbg> elf: arch_elf_relocate: 2 2400f5c4 80620d8 __device_dts_ord_86
[00:00:46.675,000] <inf> llext: found symbol __device_dts_ord_85 at 0x80620fc
[00:00:46.682,000] <dbg> llext: llext_link: relocation 4:11 info 0x8602 (type 2, sym 134) offset 172 sym_name __device_dts_ord_85 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:46.697,000] <inf> llext: writing relocation type 2 at 0x2400f5cc with symbol __device_dts_ord_85 (0x80620fc)
[00:00:46.708,000] <inf> llext: found symbol __device_dts_ord_85 at 0x80620fc
[00:00:46.715,000] <dbg> elf: arch_elf_relocate: 2 2400f5cc 80620fc __device_dts_ord_85
[00:00:46.724,000] <inf> llext: found symbol __device_dts_ord_85 at 0x80620fc
[00:00:46.731,000] <dbg> llext: llext_link: relocation 4:12 info 0x8602 (type 2, sym 134) offset 180 sym_name __device_dts_ord_85 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:46.746,000] <inf> llext: writing relocation type 2 at 0x2400f5d4 with symbol __device_dts_ord_85 (0x80620fc)
[00:00:46.757,000] <inf> llext: found symbol __device_dts_ord_85 at 0x80620fc
[00:00:46.765,000] <dbg> elf: arch_elf_relocate: 2 2400f5d4 80620fc __device_dts_ord_85
[00:00:46.773,000] <inf> llext: found symbol __device_dts_ord_84 at 0x8062144
[00:00:46.781,000] <dbg> llext: llext_link: relocation 4:13 info 0xbc02 (type 2, sym 188) offset 188 sym_name __device_dts_ord_84 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:46.795,000] <inf> llext: writing relocation type 2 at 0x2400f5dc with symbol __device_dts_ord_84 (0x8062144)
[00:00:46.806,000] <inf> llext: found symbol __device_dts_ord_84 at 0x8062144
[00:00:46.814,000] <dbg> elf: arch_elf_relocate: 2 2400f5dc 8062144 __device_dts_ord_84
[00:00:46.822,000] <inf> llext: found symbol __device_dts_ord_83 at 0x8062168
[00:00:46.830,000] <dbg> llext: llext_link: relocation 4:14 info 0x9302 (type 2, sym 147) offset 196 sym_name __device_dts_ord_83 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:46.845,000] <inf> llext: writing relocation type 2 at 0x2400f5e4 with symbol __device_dts_ord_83 (0x8062168)
[00:00:46.855,000] <inf> llext: found symbol __device_dts_ord_83 at 0x8062168
[00:00:46.863,000] <dbg> elf: arch_elf_relocate: 2 2400f5e4 8062168 __device_dts_ord_83
[00:00:46.871,000] <inf> llext: found symbol __device_dts_ord_80 at 0x80621f8
[00:00:46.879,000] <dbg> llext: llext_link: relocation 4:15 info 0xba02 (type 2, sym 186) offset 204 sym_name __device_dts_ord_80 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:46.894,000] <inf> llext: writing relocation type 2 at 0x2400f5ec with symbol __device_dts_ord_80 (0x80621f8)
[00:00:46.905,000] <inf> llext: found symbol __device_dts_ord_80 at 0x80621f8
[00:00:46.912,000] <dbg> elf: arch_elf_relocate: 2 2400f5ec 80621f8 __device_dts_ord_80
[00:00:46.921,000] <inf> llext: found symbol __device_dts_ord_84 at 0x8062144
[00:00:46.928,000] <dbg> llext: llext_link: relocation 4:16 info 0xbc02 (type 2, sym 188) offset 212 sym_name __device_dts_ord_84 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:46.943,000] <inf> llext: writing relocation type 2 at 0x2400f5f4 with symbol __device_dts_ord_84 (0x8062144)
[00:00:46.954,000] <inf> llext: found symbol __device_dts_ord_84 at 0x8062144
[00:00:46.961,000] <dbg> elf: arch_elf_relocate: 2 2400f5f4 8062144 __device_dts_ord_84
[00:00:46.970,000] <inf> llext: found symbol __device_dts_ord_18 at 0x8062120
[00:00:46.977,000] <dbg> llext: llext_link: relocation 4:17 info 0x9602 (type 2, sym 150) offset 220 sym_name __device_dts_ord_18 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:46.992,000] <inf> llext: writing relocation type 2 at 0x2400f5fc with symbol __device_dts_ord_18 (0x8062120)
[00:00:47.003,000] <inf> llext: found symbol __device_dts_ord_18 at 0x8062120
[00:00:47.011,000] <dbg> elf: arch_elf_relocate: 2 2400f5fc 8062120 __device_dts_ord_18
[00:00:47.019,000] <inf> llext: found symbol __device_dts_ord_81 at 0x80621d4
[00:00:47.027,000] <dbg> llext: llext_link: relocation 4:18 info 0x9b02 (type 2, sym 155) offset 228 sym_name __device_dts_ord_81 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:47.042,000] <inf> llext: writing relocation type 2 at 0x2400f604 with symbol __device_dts_ord_81 (0x80621d4)
[00:00:47.052,000] <inf> llext: found symbol __device_dts_ord_81 at 0x80621d4
[00:00:47.060,000] <dbg> elf: arch_elf_relocate: 2 2400f604 80621d4 __device_dts_ord_81
[00:00:47.068,000] <inf> llext: found symbol __device_dts_ord_81 at 0x80621d4
[00:00:47.076,000] <dbg> llext: llext_link: relocation 4:19 info 0x9b02 (type 2, sym 155) offset 236 sym_name __device_dts_ord_81 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:47.091,000] <inf> llext: writing relocation type 2 at 0x2400f60c with symbol __device_dts_ord_81 (0x80621d4)
[00:00:47.102,000] <inf> llext: found symbol __device_dts_ord_81 at 0x80621d4
[00:00:47.109,000] <dbg> elf: arch_elf_relocate: 2 2400f60c 80621d4 __device_dts_ord_81
[00:00:47.118,000] <inf> llext: found symbol __device_dts_ord_79 at 0x806221c
[00:00:47.125,000] <dbg> llext: llext_link: relocation 4:20 info 0xb102 (type 2, sym 177) offset 244 sym_name __device_dts_ord_79 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:47.140,000] <inf> llext: writing relocation type 2 at 0x2400f614 with symbol __device_dts_ord_79 (0x806221c)
[00:00:47.151,000] <inf> llext: found symbol __device_dts_ord_79 at 0x806221c
[00:00:47.158,000] <dbg> elf: arch_elf_relocate: 2 2400f614 806221c __device_dts_ord_79
[00:00:47.167,000] <inf> llext: found symbol __device_dts_ord_84 at 0x8062144
[00:00:47.174,000] <dbg> llext: llext_link: relocation 4:21 info 0xbc02 (type 2, sym 188) offset 252 sym_name __device_dts_ord_84 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:47.189,000] <inf> llext: writing relocation type 2 at 0x2400f61c with symbol __device_dts_ord_84 (0x8062144)
[00:00:47.200,000] <inf> llext: found symbol __device_dts_ord_84 at 0x8062144
[00:00:47.208,000] <dbg> elf: arch_elf_relocate: 2 2400f61c 8062144 __device_dts_ord_84
[00:00:47.216,000] <inf> llext: found symbol __device_dts_ord_85 at 0x80620fc
[00:00:47.224,000] <dbg> llext: llext_link: relocation 4:22 info 0x8602 (type 2, sym 134) offset 260 sym_name __device_dts_ord_85 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:47.238,000] <inf> llext: writing relocation type 2 at 0x2400f624 with symbol __device_dts_ord_85 (0x80620fc)
[00:00:47.249,000] <inf> llext: found symbol __device_dts_ord_85 at 0x80620fc
[00:00:47.257,000] <dbg> elf: arch_elf_relocate: 2 2400f624 80620fc __device_dts_ord_85
[00:00:47.265,000] <inf> llext: found symbol __device_dts_ord_83 at 0x8062168
[00:00:47.273,000] <dbg> llext: llext_link: relocation 4:23 info 0x9302 (type 2, sym 147) offset 268 sym_name __device_dts_ord_83 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:47.288,000] <inf> llext: writing relocation type 2 at 0x2400f62c with symbol __device_dts_ord_83 (0x8062168)
[00:00:47.299,000] <inf> llext: found symbol __device_dts_ord_83 at 0x8062168
[00:00:47.306,000] <dbg> elf: arch_elf_relocate: 2 2400f62c 8062168 __device_dts_ord_83
[00:00:47.315,000] <inf> llext: found symbol __device_dts_ord_83 at 0x8062168
[00:00:47.322,000] <dbg> llext: llext_link: relocation 4:24 info 0x9302 (type 2, sym 147) offset 276 sym_name __device_dts_ord_83 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:47.337,000] <inf> llext: writing relocation type 2 at 0x2400f634 with symbol __device_dts_ord_83 (0x8062168)
[00:00:47.348,000] <inf> llext: found symbol __device_dts_ord_83 at 0x8062168
[00:00:47.355,000] <dbg> elf: arch_elf_relocate: 2 2400f634 8062168 __device_dts_ord_83
[00:00:47.364,000] <inf> llext: found symbol __device_dts_ord_85 at 0x80620fc
[00:00:47.371,000] <dbg> llext: llext_link: relocation 4:25 info 0x8602 (type 2, sym 134) offset 284 sym_name __device_dts_ord_85 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:47.386,000] <inf> llext: writing relocation type 2 at 0x2400f63c with symbol __device_dts_ord_85 (0x80620fc)
[00:00:47.397,000] <inf> llext: found symbol __device_dts_ord_85 at 0x80620fc
[00:00:47.405,000] <dbg> elf: arch_elf_relocate: 2 2400f63c 80620fc __device_dts_ord_85
[00:00:47.413,000] <inf> llext: found symbol __device_dts_ord_85 at 0x80620fc
[00:00:47.421,000] <dbg> llext: llext_link: relocation 4:26 info 0x8602 (type 2, sym 134) offset 292 sym_name __device_dts_ord_85 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:47.435,000] <inf> llext: writing relocation type 2 at 0x2400f644 with symbol __device_dts_ord_85 (0x80620fc)
[00:00:47.446,000] <inf> llext: found symbol __device_dts_ord_85 at 0x80620fc
[00:00:47.454,000] <dbg> elf: arch_elf_relocate: 2 2400f644 80620fc __device_dts_ord_85
[00:00:47.462,000] <inf> llext: found symbol __device_dts_ord_85 at 0x80620fc
[00:00:47.470,000] <dbg> llext: llext_link: relocation 4:27 info 0x8602 (type 2, sym 134) offset 300 sym_name __device_dts_ord_85 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:47.485,000] <inf> llext: writing relocation type 2 at 0x2400f64c with symbol __device_dts_ord_85 (0x80620fc)
[00:00:47.496,000] <inf> llext: found symbol __device_dts_ord_85 at 0x80620fc
[00:00:47.503,000] <dbg> elf: arch_elf_relocate: 2 2400f64c 80620fc __device_dts_ord_85
[00:00:47.511,000] <inf> llext: found symbol __device_dts_ord_85 at 0x80620fc
[00:00:47.519,000] <dbg> llext: llext_link: relocation 4:28 info 0x8602 (type 2, sym 134) offset 308 sym_name __device_dts_ord_85 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:47.534,000] <inf> llext: writing relocation type 2 at 0x2400f654 with symbol __device_dts_ord_85 (0x80620fc)
[00:00:47.545,000] <inf> llext: found symbol __device_dts_ord_85 at 0x80620fc
[00:00:47.552,000] <dbg> elf: arch_elf_relocate: 2 2400f654 80620fc __device_dts_ord_85
[00:00:47.561,000] <inf> llext: found symbol __device_dts_ord_85 at 0x80620fc
[00:00:47.568,000] <dbg> llext: llext_link: relocation 4:29 info 0x8602 (type 2, sym 134) offset 316 sym_name __device_dts_ord_85 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:47.583,000] <inf> llext: writing relocation type 2 at 0x2400f65c with symbol __device_dts_ord_85 (0x80620fc)
[00:00:47.594,000] <inf> llext: found symbol __device_dts_ord_85 at 0x80620fc
[00:00:47.602,000] <dbg> elf: arch_elf_relocate: 2 2400f65c 80620fc __device_dts_ord_85
[00:00:47.610,000] <inf> llext: found symbol __device_dts_ord_86 at 0x80620d8
[00:00:47.618,000] <dbg> llext: llext_link: relocation 4:30 info 0xac02 (type 2, sym 172) offset 324 sym_name __device_dts_ord_86 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:47.632,000] <inf> llext: writing relocation type 2 at 0x2400f664 with symbol __device_dts_ord_86 (0x80620d8)
[00:00:47.643,000] <inf> llext: found symbol __device_dts_ord_86 at 0x80620d8
[00:00:47.651,000] <dbg> elf: arch_elf_relocate: 2 2400f664 80620d8 __device_dts_ord_86
[00:00:47.659,000] <inf> llext: found symbol __device_dts_ord_85 at 0x80620fc
[00:00:47.667,000] <dbg> llext: llext_link: relocation 4:31 info 0x8602 (type 2, sym 134) offset 332 sym_name __device_dts_ord_85 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:47.682,000] <inf> llext: writing relocation type 2 at 0x2400f66c with symbol __device_dts_ord_85 (0x80620fc)
[00:00:47.692,000] <inf> llext: found symbol __device_dts_ord_85 at 0x80620fc
[00:00:47.700,000] <dbg> elf: arch_elf_relocate: 2 2400f66c 80620fc __device_dts_ord_85
[00:00:47.708,000] <inf> llext: found symbol __device_dts_ord_86 at 0x80620d8
[00:00:47.716,000] <dbg> llext: llext_link: relocation 4:32 info 0xac02 (type 2, sym 172) offset 340 sym_name __device_dts_ord_86 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:47.731,000] <inf> llext: writing relocation type 2 at 0x2400f674 with symbol __device_dts_ord_86 (0x80620d8)
[00:00:47.742,000] <inf> llext: found symbol __device_dts_ord_86 at 0x80620d8
[00:00:47.749,000] <dbg> elf: arch_elf_relocate: 2 2400f674 80620d8 __device_dts_ord_86
[00:00:47.758,000] <inf> llext: found symbol __device_dts_ord_85 at 0x80620fc
[00:00:47.765,000] <dbg> llext: llext_link: relocation 4:33 info 0x8602 (type 2, sym 134) offset 348 sym_name __device_dts_ord_85 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:47.780,000] <inf> llext: writing relocation type 2 at 0x2400f67c with symbol __device_dts_ord_85 (0x80620fc)
[00:00:47.791,000] <inf> llext: found symbol __device_dts_ord_85 at 0x80620fc
[00:00:47.798,000] <dbg> elf: arch_elf_relocate: 2 2400f67c 80620fc __device_dts_ord_85
[00:00:47.807,000] <inf> llext: found symbol __device_dts_ord_86 at 0x80620d8
[00:00:47.814,000] <dbg> llext: llext_link: relocation 4:34 info 0xac02 (type 2, sym 172) offset 356 sym_name __device_dts_ord_86 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:47.829,000] <inf> llext: writing relocation type 2 at 0x2400f684 with symbol __device_dts_ord_86 (0x80620d8)
[00:00:47.840,000] <inf> llext: found symbol __device_dts_ord_86 at 0x80620d8
[00:00:47.848,000] <dbg> elf: arch_elf_relocate: 2 2400f684 80620d8 __device_dts_ord_86
[00:00:47.856,000] <inf> llext: found symbol __device_dts_ord_85 at 0x80620fc
[00:00:47.864,000] <dbg> llext: llext_link: relocation 4:35 info 0x8602 (type 2, sym 134) offset 364 sym_name __device_dts_ord_85 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:47.879,000] <inf> llext: writing relocation type 2 at 0x2400f68c with symbol __device_dts_ord_85 (0x80620fc)
[00:00:47.889,000] <inf> llext: found symbol __device_dts_ord_85 at 0x80620fc
[00:00:47.897,000] <dbg> elf: arch_elf_relocate: 2 2400f68c 80620fc __device_dts_ord_85
[00:00:47.905,000] <inf> llext: found symbol __device_dts_ord_86 at 0x80620d8
[00:00:47.913,000] <dbg> llext: llext_link: relocation 4:36 info 0xac02 (type 2, sym 172) offset 372 sym_name __device_dts_ord_86 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:47.928,000] <inf> llext: writing relocation type 2 at 0x2400f694 with symbol __device_dts_ord_86 (0x80620d8)
[00:00:47.939,000] <inf> llext: found symbol __device_dts_ord_86 at 0x80620d8
[00:00:47.946,000] <dbg> elf: arch_elf_relocate: 2 2400f694 80620d8 __device_dts_ord_86
[00:00:47.955,000] <inf> llext: found symbol __device_dts_ord_85 at 0x80620fc
[00:00:47.962,000] <dbg> llext: llext_link: relocation 4:37 info 0x8602 (type 2, sym 134) offset 380 sym_name __device_dts_ord_85 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:47.977,000] <inf> llext: writing relocation type 2 at 0x2400f69c with symbol __device_dts_ord_85 (0x80620fc)
[00:00:47.988,000] <inf> llext: found symbol __device_dts_ord_85 at 0x80620fc
[00:00:47.995,000] <dbg> elf: arch_elf_relocate: 2 2400f69c 80620fc __device_dts_ord_85
[00:00:48.004,000] <inf> llext: found symbol __device_dts_ord_85 at 0x80620fc
[00:00:48.011,000] <dbg> llext: llext_link: relocation 4:38 info 0x8602 (type 2, sym 134) offset 388 sym_name __device_dts_ord_85 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:48.026,000] <inf> llext: writing relocation type 2 at 0x2400f6a4 with symbol __device_dts_ord_85 (0x80620fc)
[00:00:48.037,000] <inf> llext: found symbol __device_dts_ord_85 at 0x80620fc
[00:00:48.045,000] <dbg> elf: arch_elf_relocate: 2 2400f6a4 80620fc __device_dts_ord_85
[00:00:48.053,000] <inf> llext: found symbol __device_dts_ord_18 at 0x8062120
[00:00:48.061,000] <dbg> llext: llext_link: relocation 4:39 info 0x9602 (type 2, sym 150) offset 396 sym_name __device_dts_ord_18 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:48.075,000] <inf> llext: writing relocation type 2 at 0x2400f6ac with symbol __device_dts_ord_18 (0x8062120)
[00:00:48.086,000] <inf> llext: found symbol __device_dts_ord_18 at 0x8062120
[00:00:48.094,000] <dbg> elf: arch_elf_relocate: 2 2400f6ac 8062120 __device_dts_ord_18
[00:00:48.102,000] <inf> llext: found symbol __device_dts_ord_82 at 0x80621b0
[00:00:48.110,000] <dbg> llext: llext_link: relocation 4:40 info 0xc602 (type 2, sym 198) offset 404 sym_name __device_dts_ord_82 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:48.125,000] <inf> llext: writing relocation type 2 at 0x2400f6b4 with symbol __device_dts_ord_82 (0x80621b0)
[00:00:48.136,000] <inf> llext: found symbol __device_dts_ord_82 at 0x80621b0
[00:00:48.143,000] <dbg> elf: arch_elf_relocate: 2 2400f6b4 80621b0 __device_dts_ord_82
[00:00:48.152,000] <inf> llext: found symbol __device_dts_ord_86 at 0x80620d8
[00:00:48.159,000] <dbg> llext: llext_link: relocation 4:41 info 0xac02 (type 2, sym 172) offset 412 sym_name __device_dts_ord_86 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:48.174,000] <inf> llext: writing relocation type 2 at 0x2400f6bc with symbol __device_dts_ord_86 (0x80620d8)
[00:00:48.185,000] <inf> llext: found symbol __device_dts_ord_86 at 0x80620d8
[00:00:48.192,000] <dbg> elf: arch_elf_relocate: 2 2400f6bc 80620d8 __device_dts_ord_86
[00:00:48.201,000] <inf> llext: found symbol __device_dts_ord_18 at 0x8062120
[00:00:48.208,000] <dbg> llext: llext_link: relocation 4:42 info 0x9602 (type 2, sym 150) offset 420 sym_name __device_dts_ord_18 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:48.223,000] <inf> llext: writing relocation type 2 at 0x2400f6c4 with symbol __device_dts_ord_18 (0x8062120)
[00:00:48.234,000] <inf> llext: found symbol __device_dts_ord_18 at 0x8062120
[00:00:48.242,000] <dbg> elf: arch_elf_relocate: 2 2400f6c4 8062120 __device_dts_ord_18
[00:00:48.250,000] <inf> llext: found symbol __device_dts_ord_18 at 0x8062120
[00:00:48.258,000] <dbg> llext: llext_link: relocation 4:43 info 0x9602 (type 2, sym 150) offset 428 sym_name __device_dts_ord_18 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:48.272,000] <inf> llext: writing relocation type 2 at 0x2400f6cc with symbol __device_dts_ord_18 (0x8062120)
[00:00:48.283,000] <inf> llext: found symbol __device_dts_ord_18 at 0x8062120
[00:00:48.291,000] <dbg> elf: arch_elf_relocate: 2 2400f6cc 8062120 __device_dts_ord_18
[00:00:48.299,000] <inf> llext: found symbol __device_dts_ord_83 at 0x8062168
[00:00:48.307,000] <dbg> llext: llext_link: relocation 4:44 info 0x9302 (type 2, sym 147) offset 436 sym_name __device_dts_ord_83 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:48.322,000] <inf> llext: writing relocation type 2 at 0x2400f6d4 with symbol __device_dts_ord_83 (0x8062168)
[00:00:48.332,000] <inf> llext: found symbol __device_dts_ord_83 at 0x8062168
[00:00:48.340,000] <dbg> elf: arch_elf_relocate: 2 2400f6d4 8062168 __device_dts_ord_83
[00:00:48.348,000] <inf> llext: found symbol __device_dts_ord_18 at 0x8062120
[00:00:48.356,000] <dbg> llext: llext_link: relocation 4:45 info 0x9602 (type 2, sym 150) offset 444 sym_name __device_dts_ord_18 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:48.371,000] <inf> llext: writing relocation type 2 at 0x2400f6dc with symbol __device_dts_ord_18 (0x8062120)
[00:00:48.382,000] <inf> llext: found symbol __device_dts_ord_18 at 0x8062120
[00:00:48.389,000] <dbg> elf: arch_elf_relocate: 2 2400f6dc 8062120 __device_dts_ord_18
[00:00:48.398,000] <inf> llext: found symbol __device_dts_ord_84 at 0x8062144
[00:00:48.405,000] <dbg> llext: llext_link: relocation 4:46 info 0xbc02 (type 2, sym 188) offset 452 sym_name __device_dts_ord_84 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:48.420,000] <inf> llext: writing relocation type 2 at 0x2400f6e4 with symbol __device_dts_ord_84 (0x8062144)
[00:00:48.431,000] <inf> llext: found symbol __device_dts_ord_84 at 0x8062144
[00:00:48.439,000] <dbg> elf: arch_elf_relocate: 2 2400f6e4 8062144 __device_dts_ord_84
[00:00:48.447,000] <inf> llext: found symbol __device_dts_ord_79 at 0x806221c
[00:00:48.454,000] <dbg> llext: llext_link: relocation 4:47 info 0xb102 (type 2, sym 177) offset 460 sym_name __device_dts_ord_79 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:48.469,000] <inf> llext: writing relocation type 2 at 0x2400f6ec with symbol __device_dts_ord_79 (0x806221c)
[00:00:48.480,000] <inf> llext: found symbol __device_dts_ord_79 at 0x806221c
[00:00:48.488,000] <dbg> elf: arch_elf_relocate: 2 2400f6ec 806221c __device_dts_ord_79
[00:00:48.496,000] <inf> llext: found symbol __device_dts_ord_86 at 0x80620d8
[00:00:48.504,000] <dbg> llext: llext_link: relocation 4:48 info 0xac02 (type 2, sym 172) offset 468 sym_name __device_dts_ord_86 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:48.519,000] <inf> llext: writing relocation type 2 at 0x2400f6f4 with symbol __device_dts_ord_86 (0x80620d8)
[00:00:48.529,000] <inf> llext: found symbol __device_dts_ord_86 at 0x80620d8
[00:00:48.537,000] <dbg> elf: arch_elf_relocate: 2 2400f6f4 80620d8 __device_dts_ord_86
[00:00:48.545,000] <inf> llext: found symbol __device_dts_ord_82 at 0x80621b0
[00:00:48.553,000] <dbg> llext: llext_link: relocation 4:49 info 0xc602 (type 2, sym 198) offset 476 sym_name __device_dts_ord_82 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:48.568,000] <inf> llext: writing relocation type 2 at 0x2400f6fc with symbol __device_dts_ord_82 (0x80621b0)
[00:00:48.579,000] <inf> llext: found symbol __device_dts_ord_82 at 0x80621b0
[00:00:48.586,000] <dbg> elf: arch_elf_relocate: 2 2400f6fc 80621b0 __device_dts_ord_82
[00:00:48.595,000] <inf> llext: found symbol __device_dts_ord_18 at 0x8062120
[00:00:48.602,000] <dbg> llext: llext_link: relocation 4:50 info 0x9602 (type 2, sym 150) offset 484 sym_name __device_dts_ord_18 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:48.617,000] <inf> llext: writing relocation type 2 at 0x2400f704 with symbol __device_dts_ord_18 (0x8062120)
[00:00:48.628,000] <inf> llext: found symbol __device_dts_ord_18 at 0x8062120
[00:00:48.635,000] <dbg> elf: arch_elf_relocate: 2 2400f704 8062120 __device_dts_ord_18
[00:00:48.644,000] <inf> llext: found symbol __device_dts_ord_82 at 0x80621b0
[00:00:48.651,000] <dbg> llext: llext_link: relocation 4:51 info 0xc602 (type 2, sym 198) offset 492 sym_name __device_dts_ord_82 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:48.666,000] <inf> llext: writing relocation type 2 at 0x2400f70c with symbol __device_dts_ord_82 (0x80621b0)
[00:00:48.677,000] <inf> llext: found symbol __device_dts_ord_82 at 0x80621b0
[00:00:48.685,000] <dbg> elf: arch_elf_relocate: 2 2400f70c 80621b0 __device_dts_ord_82
[00:00:48.693,000] <inf> llext: found symbol __device_dts_ord_86 at 0x80620d8
[00:00:48.701,000] <dbg> llext: llext_link: relocation 4:52 info 0xac02 (type 2, sym 172) offset 500 sym_name __device_dts_ord_86 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:48.716,000] <inf> llext: writing relocation type 2 at 0x2400f714 with symbol __device_dts_ord_86 (0x80620d8)
[00:00:48.726,000] <inf> llext: found symbol __device_dts_ord_86 at 0x80620d8
[00:00:48.734,000] <dbg> elf: arch_elf_relocate: 2 2400f714 80620d8 __device_dts_ord_86
[00:00:48.742,000] <inf> llext: found symbol __device_dts_ord_83 at 0x8062168
[00:00:48.750,000] <dbg> llext: llext_link: relocation 4:53 info 0x9302 (type 2, sym 147) offset 508 sym_name __device_dts_ord_83 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:48.765,000] <inf> llext: writing relocation type 2 at 0x2400f71c with symbol __device_dts_ord_83 (0x8062168)
[00:00:48.776,000] <inf> llext: found symbol __device_dts_ord_83 at 0x8062168
[00:00:48.783,000] <dbg> elf: arch_elf_relocate: 2 2400f71c 8062168 __device_dts_ord_83
[00:00:48.792,000] <inf> llext: found symbol __device_dts_ord_18 at 0x8062120
[00:00:48.799,000] <dbg> llext: llext_link: relocation 4:54 info 0x9602 (type 2, sym 150) offset 516 sym_name __device_dts_ord_18 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:48.814,000] <inf> llext: writing relocation type 2 at 0x2400f724 with symbol __device_dts_ord_18 (0x8062120)
[00:00:48.825,000] <inf> llext: found symbol __device_dts_ord_18 at 0x8062120
[00:00:48.832,000] <dbg> elf: arch_elf_relocate: 2 2400f724 8062120 __device_dts_ord_18
[00:00:48.841,000] <inf> llext: found symbol __device_dts_ord_84 at 0x8062144
[00:00:48.848,000] <dbg> llext: llext_link: relocation 4:55 info 0xbc02 (type 2, sym 188) offset 524 sym_name __device_dts_ord_84 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:48.863,000] <inf> llext: writing relocation type 2 at 0x2400f72c with symbol __device_dts_ord_84 (0x8062144)
[00:00:48.874,000] <inf> llext: found symbol __device_dts_ord_84 at 0x8062144
[00:00:48.882,000] <dbg> elf: arch_elf_relocate: 2 2400f72c 8062144 __device_dts_ord_84
[00:00:48.890,000] <inf> llext: found symbol __device_dts_ord_78 at 0x8062240
[00:00:48.898,000] <dbg> llext: llext_link: relocation 4:56 info 0xca02 (type 2, sym 202) offset 532 sym_name __device_dts_ord_78 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:48.912,000] <inf> llext: writing relocation type 2 at 0x2400f734 with symbol __device_dts_ord_78 (0x8062240)
[00:00:48.923,000] <inf> llext: found symbol __device_dts_ord_78 at 0x8062240
[00:00:48.931,000] <dbg> elf: arch_elf_relocate: 2 2400f734 8062240 __device_dts_ord_78
[00:00:48.939,000] <inf> llext: found symbol __device_dts_ord_85 at 0x80620fc
[00:00:48.947,000] <dbg> llext: llext_link: relocation 4:57 info 0x8602 (type 2, sym 134) offset 540 sym_name __device_dts_ord_85 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:48.962,000] <inf> llext: writing relocation type 2 at 0x2400f73c with symbol __device_dts_ord_85 (0x80620fc)
[00:00:48.973,000] <inf> llext: found symbol __device_dts_ord_85 at 0x80620fc
[00:00:48.980,000] <dbg> elf: arch_elf_relocate: 2 2400f73c 80620fc __device_dts_ord_85
[00:00:48.989,000] <inf> llext: found symbol __device_dts_ord_18 at 0x8062120
[00:00:48.996,000] <dbg> llext: llext_link: relocation 4:58 info 0x9602 (type 2, sym 150) offset 548 sym_name __device_dts_ord_18 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:49.011,000] <inf> llext: writing relocation type 2 at 0x2400f744 with symbol __device_dts_ord_18 (0x8062120)
[00:00:49.022,000] <inf> llext: found symbol __device_dts_ord_18 at 0x8062120
[00:00:49.029,000] <dbg> elf: arch_elf_relocate: 2 2400f744 8062120 __device_dts_ord_18
[00:00:49.038,000] <inf> llext: found symbol __device_dts_ord_18 at 0x8062120
[00:00:49.045,000] <dbg> llext: llext_link: relocation 4:59 info 0x9602 (type 2, sym 150) offset 556 sym_name __device_dts_ord_18 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:49.060,000] <inf> llext: writing relocation type 2 at 0x2400f74c with symbol __device_dts_ord_18 (0x8062120)
[00:00:49.071,000] <inf> llext: found symbol __device_dts_ord_18 at 0x8062120
[00:00:49.079,000] <dbg> elf: arch_elf_relocate: 2 2400f74c 8062120 __device_dts_ord_18
[00:00:49.087,000] <inf> llext: found symbol __device_dts_ord_18 at 0x8062120
[00:00:49.095,000] <dbg> llext: llext_link: relocation 4:60 info 0x9602 (type 2, sym 150) offset 564 sym_name __device_dts_ord_18 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:49.109,000] <inf> llext: writing relocation type 2 at 0x2400f754 with symbol __device_dts_ord_18 (0x8062120)
[00:00:49.120,000] <inf> llext: found symbol __device_dts_ord_18 at 0x8062120
[00:00:49.128,000] <dbg> elf: arch_elf_relocate: 2 2400f754 8062120 __device_dts_ord_18
[00:00:49.136,000] <inf> llext: found symbol __device_dts_ord_84 at 0x8062144
[00:00:49.144,000] <dbg> llext: llext_link: relocation 4:61 info 0xbc02 (type 2, sym 188) offset 572 sym_name __device_dts_ord_84 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:49.159,000] <inf> llext: writing relocation type 2 at 0x2400f75c with symbol __device_dts_ord_84 (0x8062144)
[00:00:49.169,000] <inf> llext: found symbol __device_dts_ord_84 at 0x8062144
[00:00:49.177,000] <dbg> elf: arch_elf_relocate: 2 2400f75c 8062144 __device_dts_ord_84
[00:00:49.185,000] <inf> llext: found symbol __device_dts_ord_83 at 0x8062168
[00:00:49.193,000] <dbg> llext: llext_link: relocation 4:62 info 0x9302 (type 2, sym 147) offset 580 sym_name __device_dts_ord_83 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:49.208,000] <inf> llext: writing relocation type 2 at 0x2400f764 with symbol __device_dts_ord_83 (0x8062168)
[00:00:49.219,000] <inf> llext: found symbol __device_dts_ord_83 at 0x8062168
[00:00:49.226,000] <dbg> elf: arch_elf_relocate: 2 2400f764 8062168 __device_dts_ord_83
[00:00:49.235,000] <inf> llext: found symbol __device_dts_ord_84 at 0x8062144
[00:00:49.242,000] <dbg> llext: llext_link: relocation 4:63 info 0xbc02 (type 2, sym 188) offset 588 sym_name __device_dts_ord_84 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:49.257,000] <inf> llext: writing relocation type 2 at 0x2400f76c with symbol __device_dts_ord_84 (0x8062144)
[00:00:49.268,000] <inf> llext: found symbol __device_dts_ord_84 at 0x8062144
[00:00:49.275,000] <dbg> elf: arch_elf_relocate: 2 2400f76c 8062144 __device_dts_ord_84
[00:00:49.284,000] <inf> llext: found symbol __device_dts_ord_84 at 0x8062144
[00:00:49.291,000] <dbg> llext: llext_link: relocation 4:64 info 0xbc02 (type 2, sym 188) offset 596 sym_name __device_dts_ord_84 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:49.306,000] <inf> llext: writing relocation type 2 at 0x2400f774 with symbol __device_dts_ord_84 (0x8062144)
[00:00:49.317,000] <inf> llext: found symbol __device_dts_ord_84 at 0x8062144
[00:00:49.325,000] <dbg> elf: arch_elf_relocate: 2 2400f774 8062144 __device_dts_ord_84
[00:00:49.333,000] <inf> llext: found symbol __device_dts_ord_84 at 0x8062144
[00:00:49.341,000] <dbg> llext: llext_link: relocation 4:65 info 0xbc02 (type 2, sym 188) offset 604 sym_name __device_dts_ord_84 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:49.356,000] <inf> llext: writing relocation type 2 at 0x2400f77c with symbol __device_dts_ord_84 (0x8062144)
[00:00:49.366,000] <inf> llext: found symbol __device_dts_ord_84 at 0x8062144
[00:00:49.374,000] <dbg> elf: arch_elf_relocate: 2 2400f77c 8062144 __device_dts_ord_84
[00:00:49.382,000] <inf> llext: found symbol __device_dts_ord_78 at 0x8062240
[00:00:49.390,000] <dbg> llext: llext_link: relocation 4:66 info 0xca02 (type 2, sym 202) offset 612 sym_name __device_dts_ord_78 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:49.405,000] <inf> llext: writing relocation type 2 at 0x2400f784 with symbol __device_dts_ord_78 (0x8062240)
[00:00:49.416,000] <inf> llext: found symbol __device_dts_ord_78 at 0x8062240
[00:00:49.423,000] <dbg> elf: arch_elf_relocate: 2 2400f784 8062240 __device_dts_ord_78
[00:00:49.432,000] <inf> llext: found symbol __device_dts_ord_81 at 0x80621d4
[00:00:49.439,000] <dbg> llext: llext_link: relocation 4:67 info 0x9b02 (type 2, sym 155) offset 620 sym_name __device_dts_ord_81 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:49.454,000] <inf> llext: writing relocation type 2 at 0x2400f78c with symbol __device_dts_ord_81 (0x80621d4)
[00:00:49.465,000] <inf> llext: found symbol __device_dts_ord_81 at 0x80621d4
[00:00:49.472,000] <dbg> elf: arch_elf_relocate: 2 2400f78c 80621d4 __device_dts_ord_81
[00:00:49.481,000] <inf> llext: found symbol __device_dts_ord_80 at 0x80621f8
[00:00:49.488,000] <dbg> llext: llext_link: relocation 4:68 info 0xba02 (type 2, sym 186) offset 628 sym_name __device_dts_ord_80 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:49.503,000] <inf> llext: writing relocation type 2 at 0x2400f794 with symbol __device_dts_ord_80 (0x80621f8)
[00:00:49.514,000] <inf> llext: found symbol __device_dts_ord_80 at 0x80621f8
[00:00:49.522,000] <dbg> elf: arch_elf_relocate: 2 2400f794 80621f8 __device_dts_ord_80
[00:00:49.530,000] <inf> llext: found symbol __device_dts_ord_18 at 0x8062120
[00:00:49.538,000] <dbg> llext: llext_link: relocation 4:69 info 0x9602 (type 2, sym 150) offset 636 sym_name __device_dts_ord_18 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:49.552,000] <inf> llext: writing relocation type 2 at 0x2400f79c with symbol __device_dts_ord_18 (0x8062120)
[00:00:49.563,000] <inf> llext: found symbol __device_dts_ord_18 at 0x8062120
[00:00:49.571,000] <dbg> elf: arch_elf_relocate: 2 2400f79c 8062120 __device_dts_ord_18
[00:00:49.579,000] <inf> llext: found symbol __device_dts_ord_18 at 0x8062120
[00:00:49.587,000] <dbg> llext: llext_link: relocation 4:70 info 0x9602 (type 2, sym 150) offset 644 sym_name __device_dts_ord_18 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:49.602,000] <inf> llext: writing relocation type 2 at 0x2400f7a4 with symbol __device_dts_ord_18 (0x8062120)
[00:00:49.613,000] <inf> llext: found symbol __device_dts_ord_18 at 0x8062120
[00:00:49.620,000] <dbg> elf: arch_elf_relocate: 2 2400f7a4 8062120 __device_dts_ord_18
[00:00:49.629,000] <inf> llext: found symbol __device_dts_ord_18 at 0x8062120
[00:00:49.636,000] <dbg> llext: llext_link: relocation 4:71 info 0x9602 (type 2, sym 150) offset 652 sym_name __device_dts_ord_18 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:49.651,000] <inf> llext: writing relocation type 2 at 0x2400f7ac with symbol __device_dts_ord_18 (0x8062120)
[00:00:49.662,000] <inf> llext: found symbol __device_dts_ord_18 at 0x8062120
[00:00:49.669,000] <dbg> elf: arch_elf_relocate: 2 2400f7ac 8062120 __device_dts_ord_18
[00:00:49.678,000] <inf> llext: found symbol __device_dts_ord_18 at 0x8062120
[00:00:49.685,000] <dbg> llext: llext_link: relocation 4:72 info 0x9602 (type 2, sym 150) offset 660 sym_name __device_dts_ord_18 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:49.700,000] <inf> llext: writing relocation type 2 at 0x2400f7b4 with symbol __device_dts_ord_18 (0x8062120)
[00:00:49.711,000] <inf> llext: found symbol __device_dts_ord_18 at 0x8062120
[00:00:49.719,000] <dbg> elf: arch_elf_relocate: 2 2400f7b4 8062120 __device_dts_ord_18
[00:00:49.727,000] <inf> llext: found symbol __device_dts_ord_80 at 0x80621f8
[00:00:49.735,000] <dbg> llext: llext_link: relocation 4:73 info 0xba02 (type 2, sym 186) offset 668 sym_name __device_dts_ord_80 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:49.749,000] <inf> llext: writing relocation type 2 at 0x2400f7bc with symbol __device_dts_ord_80 (0x80621f8)
[00:00:49.760,000] <inf> llext: found symbol __device_dts_ord_80 at 0x80621f8
[00:00:49.768,000] <dbg> elf: arch_elf_relocate: 2 2400f7bc 80621f8 __device_dts_ord_80
[00:00:49.776,000] <inf> llext: found symbol __device_dts_ord_79 at 0x806221c
[00:00:49.784,000] <dbg> llext: llext_link: relocation 4:74 info 0xb102 (type 2, sym 177) offset 676 sym_name __device_dts_ord_79 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:49.799,000] <inf> llext: writing relocation type 2 at 0x2400f7c4 with symbol __device_dts_ord_79 (0x806221c)
[00:00:49.810,000] <inf> llext: found symbol __device_dts_ord_79 at 0x806221c
[00:00:49.817,000] <dbg> elf: arch_elf_relocate: 2 2400f7c4 806221c __device_dts_ord_79
[00:00:49.826,000] <inf> llext: found symbol __device_dts_ord_81 at 0x80621d4
[00:00:49.833,000] <dbg> llext: llext_link: relocation 4:75 info 0x9b02 (type 2, sym 155) offset 684 sym_name __device_dts_ord_81 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:49.848,000] <inf> llext: writing relocation type 2 at 0x2400f7cc with symbol __device_dts_ord_81 (0x80621d4)
[00:00:49.859,000] <inf> llext: found symbol __device_dts_ord_81 at 0x80621d4
[00:00:49.866,000] <dbg> elf: arch_elf_relocate: 2 2400f7cc 80621d4 __device_dts_ord_81
[00:00:49.875,000] <inf> llext: found symbol __device_dts_ord_80 at 0x80621f8
[00:00:49.882,000] <dbg> llext: llext_link: relocation 4:76 info 0xba02 (type 2, sym 186) offset 692 sym_name __device_dts_ord_80 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:49.897,000] <inf> llext: writing relocation type 2 at 0x2400f7d4 with symbol __device_dts_ord_80 (0x80621f8)
[00:00:49.908,000] <inf> llext: found symbol __device_dts_ord_80 at 0x80621f8
[00:00:49.916,000] <dbg> elf: arch_elf_relocate: 2 2400f7d4 80621f8 __device_dts_ord_80
[00:00:49.924,000] <inf> llext: found symbol __device_dts_ord_80 at 0x80621f8
[00:00:49.932,000] <dbg> llext: llext_link: relocation 4:77 info 0xba02 (type 2, sym 186) offset 700 sym_name __device_dts_ord_80 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:49.946,000] <inf> llext: writing relocation type 2 at 0x2400f7dc with symbol __device_dts_ord_80 (0x80621f8)
[00:00:49.957,000] <inf> llext: found symbol __device_dts_ord_80 at 0x80621f8
[00:00:49.965,000] <dbg> elf: arch_elf_relocate: 2 2400f7dc 80621f8 __device_dts_ord_80
[00:00:49.973,000] <inf> llext: found symbol __device_dts_ord_79 at 0x806221c
[00:00:49.981,000] <dbg> llext: llext_link: relocation 4:78 info 0xb102 (type 2, sym 177) offset 708 sym_name __device_dts_ord_79 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:49.996,000] <inf> llext: writing relocation type 2 at 0x2400f7e4 with symbol __device_dts_ord_79 (0x806221c)
[00:00:50.006,000] <inf> llext: found symbol __device_dts_ord_79 at 0x806221c
[00:00:50.014,000] <dbg> elf: arch_elf_relocate: 2 2400f7e4 806221c __device_dts_ord_79
[00:00:50.022,000] <inf> llext: found symbol __device_dts_ord_79 at 0x806221c
[00:00:50.030,000] <dbg> llext: llext_link: relocation 4:79 info 0xb102 (type 2, sym 177) offset 716 sym_name __device_dts_ord_79 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:50.045,000] <inf> llext: writing relocation type 2 at 0x2400f7ec with symbol __device_dts_ord_79 (0x806221c)
[00:00:50.056,000] <inf> llext: found symbol __device_dts_ord_79 at 0x806221c
[00:00:50.063,000] <dbg> elf: arch_elf_relocate: 2 2400f7ec 806221c __device_dts_ord_79
[00:00:50.072,000] <inf> llext: found symbol __device_dts_ord_80 at 0x80621f8
[00:00:50.079,000] <dbg> llext: llext_link: relocation 4:80 info 0xba02 (type 2, sym 186) offset 724 sym_name __device_dts_ord_80 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:50.094,000] <inf> llext: writing relocation type 2 at 0x2400f7f4 with symbol __device_dts_ord_80 (0x80621f8)
[00:00:50.105,000] <inf> llext: found symbol __device_dts_ord_80 at 0x80621f8
[00:00:50.112,000] <dbg> elf: arch_elf_relocate: 2 2400f7f4 80621f8 __device_dts_ord_80
[00:00:50.121,000] <inf> llext: found symbol __device_dts_ord_80 at 0x80621f8
[00:00:50.128,000] <dbg> llext: llext_link: relocation 4:81 info 0xba02 (type 2, sym 186) offset 732 sym_name __device_dts_ord_80 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:50.143,000] <inf> llext: writing relocation type 2 at 0x2400f7fc with symbol __device_dts_ord_80 (0x80621f8)
[00:00:50.154,000] <inf> llext: found symbol __device_dts_ord_80 at 0x80621f8
[00:00:50.162,000] <dbg> elf: arch_elf_relocate: 2 2400f7fc 80621f8 __device_dts_ord_80
[00:00:50.170,000] <inf> llext: found symbol __device_dts_ord_80 at 0x80621f8
[00:00:50.178,000] <dbg> llext: llext_link: relocation 4:82 info 0xba02 (type 2, sym 186) offset 740 sym_name __device_dts_ord_80 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:50.193,000] <inf> llext: writing relocation type 2 at 0x2400f804 with symbol __device_dts_ord_80 (0x80621f8)
[00:00:50.203,000] <inf> llext: found symbol __device_dts_ord_80 at 0x80621f8
[00:00:50.211,000] <dbg> elf: arch_elf_relocate: 2 2400f804 80621f8 __device_dts_ord_80
[00:00:50.219,000] <inf> llext: found symbol __device_dts_ord_78 at 0x8062240
[00:00:50.227,000] <dbg> llext: llext_link: relocation 4:83 info 0xca02 (type 2, sym 202) offset 748 sym_name __device_dts_ord_78 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:50.242,000] <inf> llext: writing relocation type 2 at 0x2400f80c with symbol __device_dts_ord_78 (0x8062240)
[00:00:50.253,000] <inf> llext: found symbol __device_dts_ord_78 at 0x8062240
[00:00:50.260,000] <dbg> elf: arch_elf_relocate: 2 2400f80c 8062240 __device_dts_ord_78
[00:00:50.269,000] <inf> llext: found symbol __device_dts_ord_78 at 0x8062240
[00:00:50.276,000] <dbg> llext: llext_link: relocation 4:84 info 0xca02 (type 2, sym 202) offset 756 sym_name __device_dts_ord_78 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:50.291,000] <inf> llext: writing relocation type 2 at 0x2400f814 with symbol __device_dts_ord_78 (0x8062240)
[00:00:50.302,000] <inf> llext: found symbol __device_dts_ord_78 at 0x8062240
[00:00:50.309,000] <dbg> elf: arch_elf_relocate: 2 2400f814 8062240 __device_dts_ord_78
[00:00:50.318,000] <inf> llext: found symbol __device_dts_ord_78 at 0x8062240
[00:00:50.325,000] <dbg> llext: llext_link: relocation 4:85 info 0xca02 (type 2, sym 202) offset 764 sym_name __device_dts_ord_78 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:50.340,000] <inf> llext: writing relocation type 2 at 0x2400f81c with symbol __device_dts_ord_78 (0x8062240)
[00:00:50.351,000] <inf> llext: found symbol __device_dts_ord_78 at 0x8062240
[00:00:50.359,000] <dbg> elf: arch_elf_relocate: 2 2400f81c 8062240 __device_dts_ord_78
[00:00:50.367,000] <inf> llext: found symbol __device_dts_ord_18 at 0x8062120
[00:00:50.375,000] <dbg> llext: llext_link: relocation 4:86 info 0x9602 (type 2, sym 150) offset 772 sym_name __device_dts_ord_18 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:50.389,000] <inf> llext: writing relocation type 2 at 0x2400f824 with symbol __device_dts_ord_18 (0x8062120)
[00:00:50.400,000] <inf> llext: found symbol __device_dts_ord_18 at 0x8062120
[00:00:50.408,000] <dbg> elf: arch_elf_relocate: 2 2400f824 8062120 __device_dts_ord_18
[00:00:50.416,000] <inf> llext: found symbol __device_dts_ord_85 at 0x80620fc
[00:00:50.424,000] <dbg> llext: llext_link: relocation 4:87 info 0x8602 (type 2, sym 134) offset 780 sym_name __device_dts_ord_85 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:50.439,000] <inf> llext: writing relocation type 2 at 0x2400f82c with symbol __device_dts_ord_85 (0x80620fc)
[00:00:50.450,000] <inf> llext: found symbol __device_dts_ord_85 at 0x80620fc
[00:00:50.457,000] <dbg> elf: arch_elf_relocate: 2 2400f82c 80620fc __device_dts_ord_85
[00:00:50.466,000] <inf> llext: found symbol __device_dts_ord_82 at 0x80621b0
[00:00:50.473,000] <dbg> llext: llext_link: relocation 4:88 info 0xc602 (type 2, sym 198) offset 788 sym_name __device_dts_ord_82 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:50.488,000] <inf> llext: writing relocation type 2 at 0x2400f834 with symbol __device_dts_ord_82 (0x80621b0)
[00:00:50.499,000] <inf> llext: found symbol __device_dts_ord_82 at 0x80621b0
[00:00:50.506,000] <dbg> elf: arch_elf_relocate: 2 2400f834 80621b0 __device_dts_ord_82
[00:00:50.515,000] <inf> llext: found symbol __device_dts_ord_83 at 0x8062168
[00:00:50.522,000] <dbg> llext: llext_link: relocation 4:89 info 0x9302 (type 2, sym 147) offset 796 sym_name __device_dts_ord_83 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:50.537,000] <inf> llext: writing relocation type 2 at 0x2400f83c with symbol __device_dts_ord_83 (0x8062168)
[00:00:50.548,000] <inf> llext: found symbol __device_dts_ord_83 at 0x8062168
[00:00:50.556,000] <dbg> elf: arch_elf_relocate: 2 2400f83c 8062168 __device_dts_ord_83
[00:00:50.564,000] <inf> llext: found symbol __device_dts_ord_81 at 0x80621d4
[00:00:50.572,000] <dbg> llext: llext_link: relocation 4:90 info 0x9b02 (type 2, sym 155) offset 804 sym_name __device_dts_ord_81 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:50.586,000] <inf> llext: writing relocation type 2 at 0x2400f844 with symbol __device_dts_ord_81 (0x80621d4)
[00:00:50.597,000] <inf> llext: found symbol __device_dts_ord_81 at 0x80621d4
[00:00:50.605,000] <dbg> elf: arch_elf_relocate: 2 2400f844 80621d4 __device_dts_ord_81
[00:00:50.613,000] <inf> llext: found symbol __device_dts_ord_79 at 0x806221c
[00:00:50.621,000] <dbg> llext: llext_link: relocation 4:91 info 0xb102 (type 2, sym 177) offset 812 sym_name __device_dts_ord_79 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:50.636,000] <inf> llext: writing relocation type 2 at 0x2400f84c with symbol __device_dts_ord_79 (0x806221c)
[00:00:50.647,000] <inf> llext: found symbol __device_dts_ord_79 at 0x806221c
[00:00:50.654,000] <dbg> elf: arch_elf_relocate: 2 2400f84c 806221c __device_dts_ord_79
[00:00:50.662,000] <inf> llext: found symbol __device_dts_ord_78 at 0x8062240
[00:00:50.670,000] <dbg> llext: llext_link: relocation 4:92 info 0xca02 (type 2, sym 202) offset 820 sym_name __device_dts_ord_78 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:50.685,000] <inf> llext: writing relocation type 2 at 0x2400f854 with symbol __device_dts_ord_78 (0x8062240)
[00:00:50.696,000] <inf> llext: found symbol __device_dts_ord_78 at 0x8062240
[00:00:50.703,000] <dbg> elf: arch_elf_relocate: 2 2400f854 8062240 __device_dts_ord_78
[00:00:50.712,000] <inf> llext: found symbol __device_dts_ord_79 at 0x806221c
[00:00:50.719,000] <dbg> llext: llext_link: relocation 4:93 info 0xb102 (type 2, sym 177) offset 828 sym_name __device_dts_ord_79 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:50.734,000] <inf> llext: writing relocation type 2 at 0x2400f85c with symbol __device_dts_ord_79 (0x806221c)
[00:00:50.745,000] <inf> llext: found symbol __device_dts_ord_79 at 0x806221c
[00:00:50.753,000] <dbg> elf: arch_elf_relocate: 2 2400f85c 806221c __device_dts_ord_79
[00:00:50.761,000] <inf> llext: found symbol __device_dts_ord_79 at 0x806221c
[00:00:50.769,000] <dbg> llext: llext_link: relocation 4:94 info 0xb102 (type 2, sym 177) offset 836 sym_name __device_dts_ord_79 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:50.783,000] <inf> llext: writing relocation type 2 at 0x2400f864 with symbol __device_dts_ord_79 (0x806221c)
[00:00:50.794,000] <inf> llext: found symbol __device_dts_ord_79 at 0x806221c
[00:00:50.802,000] <dbg> elf: arch_elf_relocate: 2 2400f864 806221c __device_dts_ord_79
[00:00:50.810,000] <inf> llext: found symbol __device_dts_ord_79 at 0x806221c
[00:00:50.818,000] <dbg> llext: llext_link: relocation 4:95 info 0xb102 (type 2, sym 177) offset 844 sym_name __device_dts_ord_79 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:50.833,000] <inf> llext: writing relocation type 2 at 0x2400f86c with symbol __device_dts_ord_79 (0x806221c)
[00:00:50.843,000] <inf> llext: found symbol __device_dts_ord_79 at 0x806221c
[00:00:50.851,000] <dbg> elf: arch_elf_relocate: 2 2400f86c 806221c __device_dts_ord_79
[00:00:50.859,000] <inf> llext: found symbol __device_dts_ord_84 at 0x8062144
[00:00:50.867,000] <dbg> llext: llext_link: relocation 4:96 info 0xbc02 (type 2, sym 188) offset 852 sym_name __device_dts_ord_84 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:50.882,000] <inf> llext: writing relocation type 2 at 0x2400f874 with symbol __device_dts_ord_84 (0x8062144)
[00:00:50.893,000] <inf> llext: found symbol __device_dts_ord_84 at 0x8062144
[00:00:50.900,000] <dbg> elf: arch_elf_relocate: 2 2400f874 8062144 __device_dts_ord_84
[00:00:50.909,000] <inf> llext: found symbol __device_dts_ord_40 at 0x8062384
[00:00:50.916,000] <dbg> llext: llext_link: relocation 4:97 info 0x8202 (type 2, sym 130) offset 860 sym_name __device_dts_ord_40 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:50.931,000] <inf> llext: writing relocation type 2 at 0x2400f87c with symbol __device_dts_ord_40 (0x8062384)
[00:00:50.942,000] <inf> llext: found symbol __device_dts_ord_40 at 0x8062384
[00:00:50.949,000] <dbg> elf: arch_elf_relocate: 2 2400f87c 8062384 __device_dts_ord_40
[00:00:50.958,000] <inf> llext: found symbol __device_dts_ord_40 at 0x8062384
[00:00:50.965,000] <dbg> llext: llext_link: relocation 4:98 info 0x8202 (type 2, sym 130) offset 868 sym_name __device_dts_ord_40 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:50.980,000] <inf> llext: writing relocation type 2 at 0x2400f884 with symbol __device_dts_ord_40 (0x8062384)
[00:00:50.991,000] <inf> llext: found symbol __device_dts_ord_40 at 0x8062384
[00:00:50.999,000] <dbg> elf: arch_elf_relocate: 2 2400f884 8062384 __device_dts_ord_40
[00:00:51.007,000] <inf> llext: found symbol __device_dts_ord_40 at 0x8062384
[00:00:51.015,000] <dbg> llext: llext_link: relocation 4:99 info 0x8202 (type 2, sym 130) offset 876 sym_name __device_dts_ord_40 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:51.030,000] <inf> llext: writing relocation type 2 at 0x2400f88c with symbol __device_dts_ord_40 (0x8062384)
[00:00:51.040,000] <inf> llext: found symbol __device_dts_ord_40 at 0x8062384
[00:00:51.048,000] <dbg> elf: arch_elf_relocate: 2 2400f88c 8062384 __device_dts_ord_40
[00:00:51.056,000] <inf> llext: found symbol __device_dts_ord_40 at 0x8062384
[00:00:51.064,000] <dbg> llext: llext_link: relocation 4:100 info 0x8202 (type 2, sym 130) offset 884 sym_name __device_dts_ord_40 sym_type 0 sym_bind 1 sym_ndx 0
[00:00:51.079,000] <inf> llext: writing relocation type 2 at 0x2400f894 with symbol __device_dts_ord_40 (0x8062384)
[00:00:51.090,000] <inf> llext: found symbol __device_dts_ord_40 at 0x8062384
[00:00:51.097,000] <dbg> elf: arch_elf_relocate: 2 2400f894 8062384 __device_dts_ord_40
[00:00:51.106,000] <dbg> llext: llext_link: relocation 4:101 info 0xaf02 (type 2, sym 175) offset 900 sym_name _ZN7arduino12ZephyrSerial5writeEh sym_type 2 sym_bind 2 sym_ndx 1
[00:00:51.122,000] <inf> llext: writing relocation type 2 at 0x2400f8a4 with symbol _ZN7arduino12ZephyrSerial5writeEh (0x2400eff3)
[00:00:51.134,000] <dbg> elf: arch_elf_relocate: 2 2400f8a4 2400eff3 _ZN7arduino12ZephyrSerial5writeEh
[00:00:51.144,000] <dbg> llext: llext_link: relocation 4:102 info 0x8802 (type 2, sym 136) offset 904 sym_name _ZN7arduino12ZephyrSerial5writeEPKhj sym_type 2 sym_bind 1 sym_ndx 1
[00:00:51.160,000] <inf> llext: writing relocation type 2 at 0x2400f8a8 with symbol _ZN7arduino12ZephyrSerial5writeEPKhj (0x2400f30d)
[00:00:51.173,000] <dbg> elf: arch_elf_relocate: 2 2400f8a8 2400f30d _ZN7arduino12ZephyrSerial5writeEPKhj
[00:00:51.183,000] <dbg> llext: llext_link: relocation 4:103 info 0xbf02 (type 2, sym 191) offset 908 sym_name _ZN7arduino12ZephyrSerial17availableForWriteEv sym_type 2 sym_bind 1 sym_ndx 1
[00:00:51.200,000] <inf> llext: writing relocation type 2 at 0x2400f8ac with symbol _ZN7arduino12ZephyrSerial17availableForWriteEv (0x2400f1b9)
[00:00:51.213,000] <dbg> elf: arch_elf_relocate: 2 2400f8ac 2400f1b9 _ZN7arduino12ZephyrSerial17availableForWriteEv
[00:00:51.224,000] <dbg> llext: llext_link: relocation 4:104 info 0x8b02 (type 2, sym 139) offset 912 sym_name _ZN7arduino12ZephyrSerial5flushEv sym_type 2 sym_bind 1 sym_ndx 1
[00:00:51.240,000] <inf> llext: writing relocation type 2 at 0x2400f8b0 with symbol _ZN7arduino12ZephyrSerial5flushEv (0x2400f2e1)
[00:00:51.252,000] <dbg> elf: arch_elf_relocate: 2 2400f8b0 2400f2e1 _ZN7arduino12ZephyrSerial5flushEv
[00:00:51.262,000] <dbg> llext: llext_link: relocation 4:105 info 0xb202 (type 2, sym 178) offset 916 sym_name _ZN7arduino12ZephyrSerial9availableEv sym_type 2 sym_bind 1 sym_ndx 1
[00:00:51.278,000] <inf> llext: writing relocation type 2 at 0x2400f8b4 with symbol _ZN7arduino12ZephyrSerial9availableEv (0x2400f1f5)
[00:00:51.291,000] <dbg> elf: arch_elf_relocate: 2 2400f8b4 2400f1f5 _ZN7arduino12ZephyrSerial9availableEv
[00:00:51.301,000] <dbg> llext: llext_link: relocation 4:106 info 0xa702 (type 2, sym 167) offset 920 sym_name _ZN7arduino12ZephyrSerial4readEv sym_type 2 sym_bind 1 sym_ndx 1
[00:00:51.317,000] <inf> llext: writing relocation type 2 at 0x2400f8b8 with symbol _ZN7arduino12ZephyrSerial4readEv (0x2400f129)
[00:00:51.329,000] <dbg> elf: arch_elf_relocate: 2 2400f8b8 2400f129 _ZN7arduino12ZephyrSerial4readEv
[00:00:51.339,000] <dbg> llext: llext_link: relocation 4:107 info 0xbe02 (type 2, sym 190) offset 924 sym_name _ZN7arduino12ZephyrSerial4peekEv sym_type 2 sym_bind 1 sym_ndx 1
[00:00:51.355,000] <inf> llext: writing relocation type 2 at 0x2400f8bc with symbol _ZN7arduino12ZephyrSerial4peekEv (0x2400f171)
[00:00:51.367,000] <dbg> elf: arch_elf_relocate: 2 2400f8bc 2400f171 _ZN7arduino12ZephyrSerial4peekEv
[00:00:51.377,000] <dbg> llext: llext_link: relocation 4:108 info 0x9e02 (type 2, sym 158) offset 928 sym_name _ZN7arduino10SerialUSB_5beginEm sym_type 2 sym_bind 2 sym_ndx 1
[00:00:51.393,000] <inf> llext: writing relocation type 2 at 0x2400f8c0 with symbol _ZN7arduino10SerialUSB_5beginEm (0x2400f00b)
[00:00:51.405,000] <dbg> elf: arch_elf_relocate: 2 2400f8c0 2400f00b _ZN7arduino10SerialUSB_5beginEm
[00:00:51.414,000] <dbg> llext: llext_link: relocation 4:109 info 0xa402 (type 2, sym 164) offset 932 sym_name _ZN7arduino10SerialUSB_5beginEmt sym_type 2 sym_bind 1 sym_ndx 1
[00:00:51.430,000] <inf> llext: writing relocation type 2 at 0x2400f8c4 with symbol _ZN7arduino10SerialUSB_5beginEmt (0x2400f015)
[00:00:51.442,000] <dbg> elf: arch_elf_relocate: 2 2400f8c4 2400f015 _ZN7arduino10SerialUSB_5beginEmt
[00:00:51.452,000] <dbg> llext: llext_link: relocation 4:110 info 0x8a02 (type 2, sym 138) offset 936 sym_name _ZN7arduino12ZephyrSerial3endEv sym_type 2 sym_bind 2 sym_ndx 1
[00:00:51.468,000] <inf> llext: writing relocation type 2 at 0x2400f8c8 with symbol _ZN7arduino12ZephyrSerial3endEv (0x2400eff1)
[00:00:51.480,000] <dbg> elf: arch_elf_relocate: 2 2400f8c8 2400eff1 _ZN7arduino12ZephyrSerial3endEv
[00:00:51.489,000] <dbg> llext: llext_link: relocation 4:111 info 0xc002 (type 2, sym 192) offset 940 sym_name _ZN7arduino10SerialUSB_cvbEv sym_type 2 sym_bind 1 sym_ndx 1
[00:00:51.505,000] <inf> llext: writing relocation type 2 at 0x2400f8cc with symbol _ZN7arduino10SerialUSB_cvbEv (0x2400f055)
[00:00:51.517,000] <dbg> elf: arch_elf_relocate: 2 2400f8cc 2400f055 _ZN7arduino10SerialUSB_cvbEv
[00:00:51.526,000] <dbg> llext: llext_link: relocation 4:112 info 0xaf02 (type 2, sym 175) offset 952 sym_name _ZN7arduino12ZephyrSerial5writeEh sym_type 2 sym_bind 2 sym_ndx 1
[00:00:51.542,000] <inf> llext: writing relocation type 2 at 0x2400f8d8 with symbol _ZN7arduino12ZephyrSerial5writeEh (0x2400eff3)
[00:00:51.554,000] <dbg> elf: arch_elf_relocate: 2 2400f8d8 2400eff3 _ZN7arduino12ZephyrSerial5writeEh
[00:00:51.564,000] <dbg> llext: llext_link: relocation 4:113 info 0x8802 (type 2, sym 136) offset 956 sym_name _ZN7arduino12ZephyrSerial5writeEPKhj sym_type 2 sym_bind 1 sym_ndx 1
[00:00:51.581,000] <inf> llext: writing relocation type 2 at 0x2400f8dc with symbol _ZN7arduino12ZephyrSerial5writeEPKhj (0x2400f30d)
[00:00:51.593,000] <dbg> elf: arch_elf_relocate: 2 2400f8dc 2400f30d _ZN7arduino12ZephyrSerial5writeEPKhj
[00:00:51.603,000] <dbg> llext: llext_link: relocation 4:114 info 0xbf02 (type 2, sym 191) offset 960 sym_name _ZN7arduino12ZephyrSerial17availableForWriteEv sym_type 2 sym_bind 1 sym_ndx 1
[00:00:51.620,000] <inf> llext: writing relocation type 2 at 0x2400f8e0 with symbol _ZN7arduino12ZephyrSerial17availableForWriteEv (0x2400f1b9)
[00:00:51.634,000] <dbg> elf: arch_elf_relocate: 2 2400f8e0 2400f1b9 _ZN7arduino12ZephyrSerial17availableForWriteEv
[00:00:51.644,000] <dbg> llext: llext_link: relocation 4:115 info 0x8b02 (type 2, sym 139) offset 964 sym_name _ZN7arduino12ZephyrSerial5flushEv sym_type 2 sym_bind 1 sym_ndx 1
[00:00:51.661,000] <inf> llext: writing relocation type 2 at 0x2400f8e4 with symbol _ZN7arduino12ZephyrSerial5flushEv (0x2400f2e1)
[00:00:51.673,000] <dbg> elf: arch_elf_relocate: 2 2400f8e4 2400f2e1 _ZN7arduino12ZephyrSerial5flushEv
[00:00:51.682,000] <dbg> llext: llext_link: relocation 4:116 info 0xb202 (type 2, sym 178) offset 968 sym_name _ZN7arduino12ZephyrSerial9availableEv sym_type 2 sym_bind 1 sym_ndx 1
[00:00:51.699,000] <inf> llext: writing relocation type 2 at 0x2400f8e8 with symbol _ZN7arduino12ZephyrSerial9availableEv (0x2400f1f5)
[00:00:51.711,000] <dbg> elf: arch_elf_relocate: 2 2400f8e8 2400f1f5 _ZN7arduino12ZephyrSerial9availableEv
[00:00:51.722,000] <dbg> llext: llext_link: relocation 4:117 info 0xa702 (type 2, sym 167) offset 972 sym_name _ZN7arduino12ZephyrSerial4readEv sym_type 2 sym_bind 1 sym_ndx 1
[00:00:51.738,000] <inf> llext: writing relocation type 2 at 0x2400f8ec with symbol _ZN7arduino12ZephyrSerial4readEv (0x2400f129)
[00:00:51.750,000] <dbg> elf: arch_elf_relocate: 2 2400f8ec 2400f129 _ZN7arduino12ZephyrSerial4readEv
[00:00:51.759,000] <dbg> llext: llext_link: relocation 4:118 info 0xbe02 (type 2, sym 190) offset 976 sym_name _ZN7arduino12ZephyrSerial4peekEv sym_type 2 sym_bind 1 sym_ndx 1
[00:00:51.775,000] <inf> llext: writing relocation type 2 at 0x2400f8f0 with symbol _ZN7arduino12ZephyrSerial4peekEv (0x2400f171)
[00:00:51.787,000] <dbg> elf: arch_elf_relocate: 2 2400f8f0 2400f171 _ZN7arduino12ZephyrSerial4peekEv
[00:00:51.797,000] <dbg> llext: llext_link: relocation 4:119 info 0xb802 (type 2, sym 184) offset 980 sym_name _ZN7arduino12ZephyrSerial5beginEm sym_type 2 sym_bind 2 sym_ndx 1
[00:00:51.813,000] <inf> llext: writing relocation type 2 at 0x2400f8f4 with symbol _ZN7arduino12ZephyrSerial5beginEm (0x2400f10b)
[00:00:51.825,000] <dbg> elf: arch_elf_relocate: 2 2400f8f4 2400f10b _ZN7arduino12ZephyrSerial5beginEm
[00:00:51.835,000] <dbg> llext: llext_link: relocation 4:120 info 0xae02 (type 2, sym 174) offset 984 sym_name _ZN7arduino12ZephyrSerial5beginEmt sym_type 2 sym_bind 1 sym_ndx 1
[00:00:51.851,000] <inf> llext: writing relocation type 2 at 0x2400f8f8 with symbol _ZN7arduino12ZephyrSerial5beginEmt (0x2400f229)
[00:00:51.864,000] <dbg> elf: arch_elf_relocate: 2 2400f8f8 2400f229 _ZN7arduino12ZephyrSerial5beginEmt
[00:00:51.873,000] <dbg> llext: llext_link: relocation 4:121 info 0x8a02 (type 2, sym 138) offset 988 sym_name _ZN7arduino12ZephyrSerial3endEv sym_type 2 sym_bind 2 sym_ndx 1
[00:00:51.889,000] <inf> llext: writing relocation type 2 at 0x2400f8fc with symbol _ZN7arduino12ZephyrSerial3endEv (0x2400eff1)
[00:00:51.901,000] <dbg> elf: arch_elf_relocate: 2 2400f8fc 2400eff1 _ZN7arduino12ZephyrSerial3endEv
[00:00:51.911,000] <dbg> llext: llext_link: relocation 4:122 info 0x8e02 (type 2, sym 142) offset 992 sym_name _ZN7arduino12ZephyrSerialcvbEv sym_type 2 sym_bind 2 sym_ndx 1
[00:00:51.927,000] <inf> llext: writing relocation type 2 at 0x2400f900 with symbol _ZN7arduino12ZephyrSerialcvbEv (0x2400f115)
[00:00:51.939,000] <dbg> elf: arch_elf_relocate: 2 2400f900 2400f115 _ZN7arduino12ZephyrSerialcvbEv
[00:00:51.948,000] <dbg> llext: llext_link: relocation section .rel.exported_sym (7) acting on section 6 has 2 relocations
[00:00:51.960,000] <dbg> llext: llext_link: relocation 7:0 info 0x102 (type 2, sym 1) offset 0 sym_name .rodata sym_type 3 sym_bind 0 sym_ndx 3
[00:00:51.973,000] <inf> llext: writing relocation type 2 at 0x2400fe60 with symbol .rodata (0x2400f520)
[00:00:51.983,000] <dbg> elf: arch_elf_relocate: 2 2400fe60 2400f520 .rodata
[00:00:51.990,000] <dbg> llext: llext_link: relocation 7:1 info 0xb002 (type 2, sym 176) offset 4 sym_name main sym_type 2 sym_bind 2 sym_ndx 1
[00:00:52.004,000] <inf> llext: writing relocation type 2 at 0x2400fe64 with symbol main (0x2400ee6d)
[00:00:52.013,000] <dbg> elf: arch_elf_relocate: 2 2400fe64 2400ee6d main
[00:00:52.020,000] <dbg> llext: llext_link: relocation section .rel.init_array (9) acting on section 8 has 3 relocations
[00:00:52.032,000] <dbg> llext: llext_link: relocation 9:0 info 0x702 (type 2, sym 7) offset 0 sym_name _GLOBAL__sub_I_A8_PURE sym_type 2 sym_bind 0 sym_ndx 1
[00:00:52.046,000] <inf> llext: writing relocation type 2 at 0x24010ba0 with symbol _GLOBAL__sub_I_A8_PURE (0x2400ee0d)
[00:00:52.057,000] <dbg> elf: arch_elf_relocate: 2 24010ba0 2400ee0d _GLOBAL__sub_I_A8_PURE
[00:00:52.066,000] <dbg> llext: llext_link: relocation 9:1 info 0x3302 (type 2, sym 51) offset 4 sym_name _GLOBAL__sub_I__Z13usb_status_cb18usb_dc_status_codePKh sym_type 2 sym_bind 0 sym_ndx 1
[00:00:52.084,000] <inf> llext: writing relocation type 2 at 0x24010ba4 with symbol _GLOBAL__sub_I__Z13usb_status_cb18usb_dc_status_codePKh (0x2400f0b9)
[00:00:52.098,000] <dbg> elf: arch_elf_relocate: 2 24010ba4 2400f0b9 _GLOBAL__sub_I__Z13usb_status_cb18usb_dc_status_codePKh
[00:00:52.110,000] <dbg> llext: llext_link: relocation 9:2 info 0x5702 (type 2, sym 87) offset 8 sym_name _GLOBAL__sub_I__ZN7arduino12ZephyrSerial5beginEmt sym_type 2 sym_bind 0 sym_ndx 1
[00:00:52.127,000] <inf> llext: writing relocation type 2 at 0x24010ba8 with symbol _GLOBAL__sub_I__ZN7arduino12ZephyrSerial5beginEmt (0x2400f4a5)
[00:00:52.140,000] <dbg> elf: arch_elf_relocate: 2 24010ba8 2400f4a5 _GLOBAL__sub_I__ZN7arduino12ZephyrSerial5beginEmt
[00:00:52.151,000] <dbg> llext: llext_export_symbols: sym 0x2400ee6d name main
[00:00:52.159,000] <dbg> llext: do_llext_load: loaded module, .text at 0x2400edc0, .rodata at 0x2400f520
[00:00:52.169,000] <inf> llext: Loaded extension sketch
[00:00:52.175,000] <dbg> llext: call_fn_table: calling bringup function 0x2400ee0d()
[00:00:52.183,000] <dbg> llext: call_fn_table: calling bringup function 0x2400f0b9()
[00:00:52.191,000] <dbg> llext: call_fn_table: calling bringup function 0x2400f4a5()
[00:00:52.199,000] <dbg> llext: llext_bootstrap: calling entry function 0x2400ee6d(0)
[00:00:52.207,000] <inf> usb_dc_stm32: PWR not active yet
[00:00:52.329,000] <inf> usb_cdc_acm: Device suspended
[00:00:52.791,000] <inf> usb_cdc_acm: Device configured

So again, wonder what the difference is....
One possibility is the llext messages and the like are output to maybe no where as maybe the Serial1 port not started yet?

@mjs513
Copy link
Author

mjs513 commented Apr 12, 2025

@KurtE and others

I just re cloned and setup from the latest changes and included the USB Hot fixes.

After loading gigascanner still no serial (no comport) on serial1 all I see is

uart:~$

if I do the 10sec power off and power on I get the com port back and see

[00:00:01.057,000] <inf> usb_cdc_acm: Device suspended
[00:00:01.279,000] <inf> usb_cdc_acm: Device configured
uart:~$

If I back out the hot fixes and rebuild for the Giga same thing still happens

As you said something not getting set right or clear out.

UPDATE: Tried this on my second giga and exactly same things happen. Except can not even the 10sec power off trick - comport doesnt come back. Ready to throw in the towel - but thats just the frustration talking.

UPDATE2: At @KurtE's suggestion (on the second GIGA) where I don't get any life in the ide if I type 'sketch' on Serial1 I will see - not i am debug mode for this

uart:~$ sketch
[00:00:08.547,000] <inf> usb_dc_stm32: PWR not active yet
[00:00:08.669,000] <inf> usb_cdc_acm: Device suspended
[00:00:08.893,000] <inf> usb_cdc_acm: Device configured

then in the IDE the comport comes back to life and the sketch runs. This is the giga scanner sketch I am using as a test.

On the newer board if I load the same sketch in debug mode no life in USB or on Serial1. Only the 10sec power off/on trick get serial back.

Ok have other things to do now

@KurtE
Copy link

KurtE commented Apr 12, 2025

Also wondering if there might have been something different between older and newer batches of the GIGA?
The one that is working without typing sketch (I think newer bust dustier... I used canned air on the other
 
Image

The one I need to type sketch on:

Image

Maybe some timing issue? Difference in voltage regulators, which take longer or shorter to get to stable voltage?

Just drawing straws.

@mjs513
Copy link
Author

mjs513 commented Apr 12, 2025

@KurtE
Just for reference my old matches yours:
Image

My new one (bougth about the same time as your new one)
Image
has slightly different markings.

@mjs513
Copy link
Author

mjs513 commented Apr 12, 2025

@KurtE and others
Using my old board where I can at least get USB back in debug mode I tested with several sketches
k_create: works no issue in debug mode
k_define: Gives an imprecise data bus fault !!!!
SDRAM_test: Works
graphicsTestGigaDisplay: Works no issue

Now if I run the graphicstest sketch on the new board:

[00:00:02.162,000] <err> os: ***** BUS FAULT *****
[00:00:02.169,000] <err> os:   Imprecise data bus error
[00:00:02.177,000] <err> os: r0/a1:  0xc0000000  r1/a2:  0xc0000000  r2/a3:  0x34813080
[00:00:02.188,000] <err> os: r3/a4:  0xc0000000 r12/ip:  0x00000000 r14/lr:  0x24010085
[00:00:02.199,000] <err> os:  xpsr:  0x01000000
[00:00:02.206,000] <err> os: s[ 0]:  0x24012965  s[ 1]:  0x00000000  s[ 2]:  0x00000010  s[ 3]:  0x00000000
[00:00:02.219,000] <err> os: s[ 4]:  0x24020ae4  s[ 5]:  0x0805a3a1  s[ 6]:  0x00000000  s[ 7]:  0x00000000
[00:00:02.232,000] <err> os: s[ 8]:  0x2401316b  s[ 9]:  0x24036824  s[10]:  0x240381b8  s[11]:  0x0805a0ad
[00:00:02.244,000] <err> os: s[12]:  0x2401316b  s[13]:  0x24036824  s[14]:  0x00000320  s[15]:  0x24013080
[00:00:02.257,000] <err> os: fpscr:  0x24013080
[00:00:02.264,000] <err> os: Faulting instruction address (r15/pc): 0x2400ff3e
[00:00:02.274,000] <err> os: >>> ZEPHYR FATAL ERROR 26: Unknown error on CPU 0
[00:00:02.284,000] <err> os: Current thread: 0x24003220 (main)
[00:00:02.293,000] <err> os: Halting system

bus fault is back.

and occurs with k_define and sdram_test as well.

So now have 2 giga boards behaving totally different with same firmware loaded!!!!!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants